
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Libre Baskerville-Bold';
        }

        /* Global Styles */
        body {

            background-color: hwb(0 4% 96%);
            overflow-x: hidden;
        }

        /* Header Styles */
        .header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 10;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
        }

        .logo img {
            max-width: 180px;
        }

        .menu-icon {
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .menu-icon img {
            width: 40px;
            /* Adjust size as needed */
            height: 40px;
            transition: transform 0.3s ease-in-out;
        }

        /* .menu-icon.active img {
            transform: rotate(90deg);
        } */

        .menu-icon img:hover {
            transform: scale(1.1);
            transform: rotate(90deg);
            /* Slight zoom effect on hover */
        }


        .menu-icon {
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 5px;
            z-index: 20;
        }

        .menu-icon span {
            background-color: rgb(182, 46, 46);
            height: 3px;
            width: 30px;
            transition: all 0.3s ease-in-out;
            border-radius: 5px;
        }

        .menu-icon.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-icon.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-icon.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
            /* font-family: 'Libre Baskerville-Bold'; */
        }

        .menu.active {
            opacity: 1;
            visibility: visible;
        }

        .menu ul {
            list-style: none;
            text-align: center;
        }

        .menu ul li {
            margin: 20px 0;
        }

        .menu ul a {
            text-decoration: none;
            color: white;
            font-size: 2rem;
            font-weight: 600;
            transition: color 0.3s ease-in-out;
            text-transform: uppercase;
        }

        .menu ul a:hover {
            color: #00d4ff;
            letter-spacing: 1px;
        }



        /* Footer Styles */
        .footer {
            background-color: #ffffff;
            color: black;
            padding: 40px 20px;
            /* font-family: 'Libre Baskerville-Bold'; */
        }

        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
        }

        .footer-logo img {
            max-width: 220px;
        }

        .footer-resources h4,
        .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .footer-resources ul {
            list-style: none;

        }

        .footer-resources ul li {
            margin-bottom: 10px;
            list-style-type: none;
        }

        .footer-resources ul a {
            color: black;
            text-decoration: none;
            transition: color 0.3s ease-in-out;
        }

        .footer-resources ul a:hover {
            color: #00d4ff;
        }

        .footer-contact p {
            margin-bottom: 5px;
            font-size: 0.8rem;
        }

        .footer-social {

            font-size: 30px;
            margin-right: 10px;
            transition: color 0.3s ease-in-out;
        }

        .footer-social a:hover {
            color: #00d4ff;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 20px;
            font-size: 0.9rem;
        }

        .email {
            text-transform: lowercase;
            text-decoration: none;

            color: inherit;

        }



        /* Add media query for responsiveness */
        @media (max-width: 767px) {
            .footer-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-logo img {
                max-width: 180px;
                margin-bottom: 20px;
            }

            .footer-resources,
            .footer-contact {
                margin-bottom: 20px;
            }

            .footer-resources ul {
                padding: 0;
                text-decoration: none;
            }

            .footer-social {
                font-size: 24px;

            }

            .footer-bottom {
                font-size: 0.8rem;
            }

            .footer-contact p {
                font-size: 0.7rem;
            }

            .footer-container h4 {
                font-size: 1rem;
            }
        }

        .foot-heading {
            /* font-family: 'Libre Baskerville-Bold'; */
            font-size: 18px;
            font-weight: 600
        }

        body {
            color: #fff;
        }

        /* Custom styling for the nav */
        .nav-tabs {
            border-bottom: 1px solid #fff;
        }

        .nav-tabs .nav-link {
            color: #fff;
            font-size: 1.2rem;
            border: none;
            margin: 0 15px;
            transition: color 0.3s;
        }

        .nav-tabs .nav-link.active {
            color: #6f42c1;
            /* Purple active state */
            border-bottom: 2px solid #6f42c1;
        }

        .nav-tabs .nav-link:hover {
            color: #6f42c1;
        }

        .tab-content {
            margin-top: 20px;
        }

        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: scale(1.05);
        }

        .card img {
            height: 250px;
            object-fit: cover;
        }

        /* Lightbox Container */
        /* .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            overflow: hidden;
        } */

        .lightbox {
            display: none;
            /* Ensure it is hidden by default */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            /* Dark background */
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            overflow: hidden;
        }


        /* Lightbox Image */
        #lightbox-image {
            max-width: 80%;
            max-height: 80%;
            border-radius: 10px;
            position: relative;
        }


        /* Close Button */
        .close-btn {
            position: absolute;
            top: 20px;
            /* Adjust spacing from the top */
            left: 20px;
            /* Adjust spacing from the left */
            background: #111827;
            /* Background color */
            color: #fff;
            /* Text color */
            border: none;
            padding: 10px 15px;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
            /* Optional shadow */
            transition: color 0.3s ease;
            /* Transition applies only to text color */
        }

        .close-btn:hover {
            color: #9b59b6;
            /* Text color changes on hover */
            background: #111827;
            /* Background remains constant */
        }

        /* Navigation Buttons */
        .prev-btn,
        .next-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            /* Transparent black background */
            background: #020202;
            /* Button background */
            color: #fffbfb;
            /* Text color */
            border: none;
            padding: 10px 15px;
            font-size: 15px;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
            transition: background 0.3s ease;
            /* Transition applies only to text color */
            z-index: 10;
        }

        .prev-btn {
            left: 20%;
            /* Position the left arrow on the image */
        }

        .next-btn {
            right: 20%;
            /* Position the right arrow on the image */
        }

        .prev-btn:hover,
        .next-btn:hover {
            color: #9b59b6;
            /* Text color changes on hover */
            background: black;
            /* Background remains constant */
        }

        .prev-btn:hover,
        .next-btn:hover {
            background: #111827;
        }

        /* Lightbox Image */
        #lightbox-image {
            max-width: 80%;
            max-height: 80%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
            border-radius: 10px;
        }

        .logo a {
            color: rgb(242, 236, 236);
            /* Initial color */
            text-decoration: none;
            /* Remove underline */
            transition: color 0.3s ease;
            /* Smooth transition for color */
        }

        .logo a:hover {
            color: #6f42c1;
            /* Change color on hover */
        }

        /* Adjust Font Size for Arrow */
        .logo i {
            font-size: 40px;
        }




        .header-title {
            flex-grow: 1;
            text-align: center;
            color: white;
            /* font-family: 'Libre Baskerville-Bold', serif; */
            font-size: 1.8rem;
           z-index: 1000;
        }

        @media (max-width: 767px) {
            .header-title {
                font-size: 1.2rem;
            }
        }
    