
        /* CSS Variables for consistent theming */
        :root {
            --navy-blue: #212A45;
            --teal: #008C96;
            --turquoise: #3DCCC7;
            --light-gray: #F5F7FA;
            --white: #FFFFFF;
            --text-dark: #334155;
            --text-light: #64748b;
            --border-color: #e2e8f0;
        }

        /* Basic Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
            /* Ensure footer stays at bottom if content is short */
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        main {
            flex: 1;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* Header and Navigation */
        #header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 50;
            transition: all 0.3s ease-in-out;
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
        }
        .logo img {
            height: 2.5rem; /* 40px */
        }
        .nav-menu {
            display: none;
            gap: 2rem;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--teal);
        }
        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
        }
        .mobile-menu-btn svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--navy-blue);
        }

        /* --- DROPDOWN CSS --- */
        .nav-menu {
            display: none;
            gap: 2rem;
            list-style: none;
        }
        .nav-menu > li {
            position: relative;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 0;
        }
        .nav-link .dropdown-arrow {
            width: 0.8rem;
            height: 0.8rem;
            stroke: #9ca3af;
            stroke-width: 2;
            transition: transform 0.3s ease;
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: -1rem;
            background-color: var(--white);
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            min-width: 220px;
            z-index: 60;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            padding: 0.5rem 0;
        }
        .nav-menu > li:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-menu > li:hover > .nav-link {
            color: var(--teal);
        }
        .nav-menu > li:hover > .nav-link .dropdown-arrow {
            transform: rotate(180deg);
            stroke: var(--teal);
        }
        .dropdown-menu li a {
            display: block;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .dropdown-menu li a:hover {
            background-color: var(--light-gray);
            color: var(--teal);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            background-color: white;
            border-top: 1px solid var(--border-color);
            position: fixed;
            top: 70px; /* Adjust based on header height */
            width: 100%;
            z-index: 40;
            max-height: calc(100vh - 70px);
            overflow-y: auto;
        }
        .mobile-menu.active {
            display: block;
        }
        .mobile-menu ul {
            list-style: none;
        }
        .mobile-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
        }
        .mobile-menu a:hover {
            background-color: #f8fafc;
        }
        .mobile-menu .btn-wrapper {
            padding: 1rem;
        }

        /* Mobile Dropdown Styles */
        .mobile-dropdown-toggle {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1.5rem;
            background: none;
            border: none;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-dark);
            cursor: pointer;
            text-align: left;
        }
        .mobile-dropdown-toggle:hover {
            background-color: #f8fafc;
        }
        .mobile-dropdown-menu {
            display: none;
            background-color: var(--light-gray);
            padding-left: 1rem;
        }
        .mobile-dropdown-menu.active {
            display: block;
        }
        .mobile-dropdown-toggle .dropdown-arrow {
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s ease;
        }
        .mobile-dropdown-toggle .dropdown-arrow.rotate-180 {
            transform: rotate(180deg);
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            text-align: center;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.10);
        }
        .btn:active {
            transform: scale(0.97);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn-teal { background-color: var(--teal); color: white; }
        .btn-teal:hover { background-color: #00737a; }
        .btn-white { background-color: var(--white); color: var(--text-dark); border-color: var(--border-color); }
        .btn-white:hover { background-color: #f8fafc; }
        .btn-navy { background-color: var(--navy-blue); color: var(--white); }
        .btn-navy:hover { background-color: #1a2238; }

        /* General Section Styling */
        .section {
            padding: 8rem 0 6rem 0; /* Increased top padding to clear fixed header */
        }
        .section-light {
            background-color: var(--light-gray);
        }
        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--navy-blue);
        }
        .section-subtitle {
            margin-top: 1rem;
            color: var(--text-light);
        }
        .section-header {
            margin-bottom: 4rem;
        }
        .section-header .divider {
            width: 6rem;
            height: 4px;
            background-color: var(--teal);
            margin-top: 0.5rem;
            border-radius: 2px;
        }

        /* Overview Messages (Chairman & Rector) */
         /* Basic Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        main {
            flex: 1;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* Header and Navigation */
        #header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 50;
            transition: all 0.3s ease-in-out;
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
        }
        .logo img {
            height: 2.5rem; /* 40px */
        }
        .nav-menu {
            display: none;
            gap: 2rem;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--teal);
        }
        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
        }
        .mobile-menu-btn svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--navy-blue);
        }

        /* --- DROPDOWN CSS --- */
        .nav-menu {
            display: none;
            gap: 2rem;
            list-style: none;
        }
        .nav-menu > li {
            position: relative;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 0;
        }
        .nav-link .dropdown-arrow {
            width: 0.8rem;
            height: 0.8rem;
            stroke: #9ca3af;
            stroke-width: 2;
            transition: transform 0.3s ease;
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: -1rem;
            background-color: var(--white);
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            min-width: 220px;
            z-index: 60;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            padding: 0.5rem 0;
        }
        .nav-menu > li:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-menu > li:hover > .nav-link {
            color: var(--teal);
        }
        .nav-menu > li:hover > .nav-link .dropdown-arrow {
            transform: rotate(180deg);
            stroke: var(--teal);
        }
        .dropdown-menu li a {
            display: block;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .dropdown-menu li a:hover {
            background-color: var(--light-gray);
            color: var(--teal);
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            background-color: white;
            border-top: 1px solid var(--border-color);
            position: fixed;
            top: 70px; /* Adjust based on header height */
            width: 100%;
            z-index: 40;
            max-height: calc(100vh - 70px);
            overflow-y: auto;
        }
        .mobile-menu.active {
            display: block;
        }
        .mobile-menu ul {
            list-style: none;
        }
        .mobile-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
        }
        .mobile-menu a:hover {
            background-color: #f8fafc;
        }
        .mobile-menu .btn-wrapper {
            padding: 1rem;
        }

        /* Mobile Dropdown Styles */
        .mobile-dropdown-toggle {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1.5rem;
            background: none;
            border: none;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-dark);
            cursor: pointer;
            text-align: left;
        }
        .mobile-dropdown-toggle:hover {
            background-color: #f8fafc;
        }
        .mobile-dropdown-menu {
            display: none;
            background-color: var(--light-gray);
            padding-left: 1rem;
        }
        .mobile-dropdown-menu.active {
            display: block;
        }
        .mobile-dropdown-toggle .dropdown-arrow {
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s ease;
        }
        .mobile-dropdown-toggle .dropdown-arrow.rotate-180 {
            transform: rotate(180deg);
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            text-align: center;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.10);
        }
        .btn:active {
            transform: scale(0.97);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn-teal { background-color: var(--teal); color: white; }
        .btn-teal:hover { background-color: #00737a; }
        .btn-white { background-color: var(--white); color: var(--text-dark); border-color: var(--border-color); }
        .btn-white:hover { background-color: #f8fafc; }
        .btn-navy { background-color: var(--navy-blue); color: var(--white); }
        .btn-navy:hover { background-color: #1a2238; }

        /* General Section Styling */
        .section {
            padding: 8rem 0 6rem 0; /* Increased top padding to clear fixed header */
        }
        .section-light {
            background-color: var(--light-gray);
        }
        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--navy-blue);
        }
        .section-subtitle {
            margin-top: 1rem;
            color: var(--text-light);
        }
        .section-header {
            margin-bottom: 4rem;
        }
        .section-header .divider {
            width: 6rem;
            height: 4px;
            background-color: var(--teal);
            margin-top: 0.5rem;
            border-radius: 2px;
        }

        /* Overview Messages (Chairman & Rector) */
        .message-block {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 5rem;
            align-items: center;
            background-color: var(--white);
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }
        
        .message-image-container {
            position: relative;
            width: 100%;
            max-width: 400px;
        }
        
        .message-image-container img {
            width: 100%;
            height: auto;
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            aspect-ratio: 3/4;
            object-fit: cover;
        }

        .message-content {
            flex: 1;
            padding: 1rem;
        }

        .message-content h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--navy-blue);
            margin-bottom: 0.5rem;
        }
        
        .message-role {
            font-size: 1rem;
            color: var(--teal);
            font-weight: 600;
            margin-bottom: 1.5rem;
            display: block;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .message-content p {
            color: var(--text-dark);
            margin-bottom: 1rem;
            text-align: justify;
            font-size: 1rem;
            line-height: 1.8;
        }
        
        .signature {
            margin-top: 2rem;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--navy-blue);
        }

        /* --- TESTIMONIALS SLIDER STYLES (Redesigned) --- */
        .testimonial-section {
            padding: 4rem 0 6rem;
            background-color: var(--light-gray);
            margin-top: 3rem;
            border-radius: 1rem;
            position: relative;
        }
        
        .testimonial-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .testimonial-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--navy-blue);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .testimonial-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--teal);
            margin: 0.5rem auto 0;
            border-radius: 2px;
        }

        /* Swiper Container */
        .testimonialSwiper {
            width: 100%;
            padding: 2rem 1rem 4rem; /* Extra bottom padding for pagination */
            overflow: hidden;
        }

        .testimonial-card {
            background: var(--white);
            padding: 2rem 1.5rem;
            border-radius: 1rem;
            text-align: center;
            height: auto;
            min-height: 380px; /* Fixed height for uniformity */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            
            /* Standard Shadow */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            margin-top: 2rem; /* Space for the floating image */
            border: 1px solid transparent; /* Placeholder to prevent jump */
            /* Removed opacity/scale for 2-column equal display */
            opacity: 1;
            transform: scale(1);
        }

        /* Hover effect for all cards */
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 140, 150, 0.15); /* Teal hint on hover */
            border-color: rgba(0, 140, 150, 0.2);
        }

        .testimonial-img-wrapper {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            overflow: hidden;
            margin-top: -3.5rem; /* Pull image up out of the card */
            margin-bottom: 1rem;
            border: 4px solid var(--white);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            background-color: var(--white);
            z-index: 2;
        }

        .testimonial-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-quote-icon {
            font-size: 2.5rem;
            color: var(--teal);
            opacity: 0.3;
            line-height: 1;
            margin-bottom: 1rem;
            font-family: serif;
        }

        .testimonial-text {
            font-size: 0.95rem;
            color: var(--text-dark);
            font-style: italic;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            line-height: 1.6;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--navy-blue);
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }

        .testimonial-role {
            font-size: 0.85rem;
            color: var(--teal);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .testimonialSwiper .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background-color: #cbd5e1;
            opacity: 1;
        }
        
        .testimonialSwiper .swiper-pagination-bullet-active {
            background-color: var(--teal);
            width: 24px;
            border-radius: 5px;
        }

        /* Footer */
        .footer {
            background-color: var(--navy-blue);
            color: var(--white);
            margin-top: auto;
            padding-top: 4rem;
            padding-bottom: 2rem;
        }
        
        /* Footer Top Section (Text & Contact) */
        .footer-top-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 2rem;
        }
        
        .footer-info-text {
            flex: 1;
            font-size: 0.9rem;
            color: #d1d5db; /* gray-300 */
        }
        
        .footer-contact-info {
            text-align: left;
        }
        .footer-contact-info p {
            margin-bottom: 0.5rem;
            font-size: 1rem;
            font-weight: 500;
            color: var(--white);
        }

        /* Partner Logos Section */
        .partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .partners-grid img {
            height: 3rem; /* 48px */
            width: auto;
            /* Invert brightness to make logos white/light gray to match theme */
            filter: brightness(0) invert(1);
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        .partners-grid img:hover {
            opacity: 1;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: none; 
            padding-top: 1rem;
            text-align: center;
            font-size: 0.875rem;
            color: #9ca3af; /* gray-400 */
        }

        /* On-Scroll Animation */
        .animate-on-scroll {
            opacity: 0;
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in-up { transform: translateY(2rem); }
        .is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Media Queries */
        @media (min-width: 768px) {
            .nav-menu { display: flex; }
            .mobile-menu-btn { display: none; }
            .header-btn { display: block; }
            
            /* Footer Desktop Layout */
            .footer-top-content {
                flex-direction: row;
                justify-content: space-between;
                align-items: flex-start;
                text-align: left;
            }
            .footer-info-text {
                max-width: 60%;
            }
            .footer-contact-info {
                text-align: right;
            }
            
            /* Message Block Desktop */
            .message-block {
                flex-direction: row;
                gap: 4rem;
                align-items: flex-start;
                padding: 2rem;
                border: none;
            }
            .message-block.reverse {
                flex-direction: row-reverse;
            }
            .message-image-container {
                flex: 0 0 320px;
            }
        }

        /* --- Sponsorship Page Styles --- */

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }
        @media (min-width: 768px) {
            .benefits-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        .benefit-card {
            text-align: center;
        }
        .benefit-card .icon {
            width: 4rem;
            height: 4rem;
            margin: 0 auto 1.5rem;
            color: var(--teal);
        }
        .benefit-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--navy-blue);
            margin-bottom: 0.5rem;
        }
        .benefit-card p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Pricing/Packages Table */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
            align-items: flex-start; /* Aligns cards from the top */
        }
        @media (min-width: 768px) {
             .packages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1100px) {
            .packages-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        .package-card {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        /* Light Up Hover Effect */
        .package-card:hover {
            transform: translateY(-5px);
            border-color: var(--teal);
            box-shadow: 0 0 30px rgba(0, 140, 150, 0.3), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .package-card-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .package-card-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy-blue);
            margin-bottom: 0.5rem;
        }
        .package-card-header .price {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--teal);
        }
        .package-card-body {
            padding: 1.5rem;
        }
        .package-card-body ul {
            list-style: none;
            padding: 0;
        }
        .package-card-body li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }
        .package-card-body li svg {
            width: 1rem;
            height: 1rem;
            color: var(--turquoise);
            margin-top: 0.25rem;
            flex-shrink: 0;
        }
        .package-card-footer {
            padding: 1.5rem;
            background-color: var(--light-gray);
            border-top: 1px solid var(--border-color);
        }
        .package-card-footer .btn {
            width: 100%;
        }

        /* Highlighted Package */
        .package-card.highlight {
            border-color: var(--teal);
            border-width: 2px;
            box-shadow: 0 10px 15px -3px rgba(0, 140, 150, 0.1), 0 4px 6px -4px rgba(0, 140, 150, 0.1);
        }
        .package-card.highlight:hover {
             box-shadow: 0 0 40px rgba(0, 140, 150, 0.4), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .package-card.highlight .package-card-header h3 {
            color: var(--teal);
        }
        .package-card.highlight .package-card-footer .btn {
            background-color: var(--teal);
            color: var(--white);
        }
        .package-card.highlight .package-card-footer .btn:hover {
            background-color: #00737a;
        }

        /* Audience Section */
        .audience-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }
        @media (min-width: 768px) {
            .audience-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        .audience-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--navy-blue);
            margin-bottom: 1rem;
        }
        .audience-content p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }
        .audience-content ul {
            list-style: none;
            padding: 0;
        }
        .audience-content li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }
        .audience-content li svg {
            width: 1rem;
            height: 1rem;
            color: var(--teal);
            margin-top: 0.25rem;
            flex-shrink: 0;
        }
        .audience-image img {
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--navy-blue);
            color: var(--white);
            padding: 4rem 0;
            text-align: center;
        }
        .cta-container-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }
        .cta-text h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .cta-text p {
            color: #d1d5db;
            margin-bottom: 2rem;
        }
        /* PDF Viewer Styles */
        .pdf-viewer-wrapper {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 10px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 400px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .pdf-viewer-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 4px;
            background: white;
        }
        @media (min-width: 992px) {
            .cta-container-grid {
                grid-template-columns: 1fr 1fr;
                text-align: left;
            }
            .cta-section {
                text-align: left;
            }
            .cta-text p {
                margin-left: 0;
                margin-right: 0;
            }
        }

        
        /* Footer */
        .footer {
            background-color: var(--navy-blue);
            color: var(--white);
            padding-top: 3rem;
        }
        .footer-content {
            display: grid;
            gap: 2rem;
            align-items: flex-start; /* Align to top */
            padding-bottom: 2rem;
        }
        
        /* Left side text */
        .footer-info {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #e2e8f0;
            max-width: 600px;
        }

        /* Right side contact */
        .footer-contact {
            text-align: left;
        }
        .footer-contact a {
            display: block;
            color: #e2e8f0;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-contact a:hover {
            color: var(--turquoise);
       
        }
        
               /* Partner Logos Section */
        .partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .partners-grid img {
            height: 3rem; /* 48px */
            width: auto;
            /* Invert brightness to make logos white/light gray to match theme */
            filter: brightness(0) invert(1);
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        .partners-grid img:hover {
            opacity: 1;
        }

        /* On-Scroll Animation */
        .animate-on-scroll {
            opacity: 0;
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in-up { transform: translateY(2rem); }
        .is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Media Queries */
        @media (min-width: 768px) {
            .nav-menu { display: flex; }
            .mobile-menu-btn { display: none; }
            .header-btn { display: block; }
            .footer-content { grid-template-columns: 1fr 1fr; }
            .footer-contact { text-align: right; }
             /* Footer Contact alignment */
            .footer-contact { 
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                justify-content: center;
                height: 100%;
            }
        }
        
        /* --- Committee Grid (Retained) --- */
        .committee-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
        }
        @media (min-width: 576px) {
            .committee-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 768px) {
            .committee-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (min-width: 992px) {
            .committee-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .committee-card {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease; /* Made transition smoother */
            overflow: hidden; /* To keep image corners rounded */
        }
        .committee-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
        }
        .committee-card img {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            transition: transform 0.4s ease; /* Added transition for image */
        }
        .committee-card:hover img {
            transform: scale(1.08) rotate(1deg); /* Added zoom/pan effect on hover */
        }
        .committee-card-content {
            padding: 1.25rem;
        }
        .committee-card-content h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--navy-blue);
            margin-bottom: 0.25rem;
        }
        .committee-card-content .title {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--teal);
            margin-bottom: 0.5rem;
        }
        .committee-card-content .affiliation {
            font-size: 0.85rem;
            color: var(--text-light);
        }

    


        /* CSS Variables for consistent theming */
        :root {
            --navy-blue: #212A45;
            --teal: #008C96;
            --turquoise: #3DCCC7;
            --light-gray: #F5F7FA;
            --white: #FFFFFF;
            --text-dark: #334155;
            --text-light: #64748b;
            --border-color: #e2e8f0;
        }

        /* Basic Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* --- NEW HEADER STYLES (From your code) --- */
        #header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 50;
            transition: all 0.3s ease-in-out;
            border-bottom: 1px solid transparent;
        }
        #header.scrolled {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid var(--border-color);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
        }
        .logo img {
            height: 2.5rem; /* 40px */
        }
        .nav-menu {
            display: none;
            gap: 2rem;
            list-style: none;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 0;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--teal);
        }
        .nav-menu > li {
            position: relative;
        }
        .nav-link .dropdown-arrow {
            width: 0.8rem;
            height: 0.8rem;
            stroke: #9ca3af;
            stroke-width: 2;
            transition: transform 0.3s ease;
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: -1rem;
            background-color: var(--white);
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            min-width: 220px;
            z-index: 60;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            padding: 0.5rem 0;
        }
        .nav-menu > li:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-menu > li:hover > .nav-link .dropdown-arrow {
            transform: rotate(180deg);
            stroke: var(--teal);
        }
        .dropdown-menu li a {
            display: block;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .dropdown-menu li a:hover {
            background-color: var(--light-gray);
            color: var(--teal);
        }

        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
        }
        .mobile-menu-btn svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--navy-blue);
        }
        .mobile-menu {
            display: none;
            background-color: white;
            border-top: 1px solid var(--border-color);
            position: absolute;
            width: 100%;
            left: 0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .mobile-menu.active {
            display: block;
        }
        .mobile-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            color: var(--text-dark);
        }
        .mobile-menu a:hover {
            background-color: #f8fafc;
            color: var(--teal);
        }
        .mobile-menu .btn-wrapper {
            padding: 1rem;
        }
        
        /* New Mobile Dropdown Styles */
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            text-align: left;
            cursor: pointer;
            color: var(--text-dark);
            font-family: inherit;
        }
        .mobile-dropdown-toggle:hover {
            background-color: #f8fafc;
            color: var(--teal);
        }
        .mobile-dropdown-toggle .dropdown-arrow {
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s ease;
        }
        .mobile-dropdown-menu {
            display: none;
            background-color: #f1f5f9;
            padding: 0.5rem 0;
        }
        .mobile-dropdown-menu.active {
            display: block;
        }
        .mobile-dropdown-menu li a {
            padding-left: 2.5rem;
            font-size: 0.85rem;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            text-align: center;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.10);
        }
        .btn:active {
            transform: scale(0.97);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn-teal { background-color: var(--teal); color: white; }
        .btn-teal:hover { background-color: #00737a; }
        .btn-white { background-color: var(--white); color: var(--text-dark); border-color: var(--border-color); }
        .btn-white:hover { background-color: #f8fafc; }
        .btn-navy { background-color: var(--navy-blue); color: var(--white); }
        .btn-navy:hover { background-color: #1a2238; }

        /* General Section Styling */
        .section {
            padding: 6rem 0;
        }
        .section-light {
            background-color: var(--light-gray);
        }
        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--navy-blue);
            text-align: center;
        }
        .section-subtitle {
            margin-top: 1rem;
            color: var(--text-light);
            max-width: 650px;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }
        .section-header {
            margin-bottom: 4rem;
        }
        .section-header .divider {
            width: 6rem;
            height: 4px;
            background-color: var(--teal);
            margin-top: 0.5rem;
            border-radius: 2px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Page Header */
        .page-header {
            padding-top: 8rem; /* 6rem padding + 2rem for header */
            padding-bottom: 4rem;
            background-color: var(--light-gray);
            border-bottom: 1px solid var(--border-color);
        }
        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy-blue);
            text-align: center;
        }
        .page-header p {
            max-width: 600px;
            margin: 1rem auto 0;
            text-align: center;
            color: var(--text-light);
            font-size: 1.1rem;
        }

        /* --- Contact Page Styles (Preserved) --- */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        .contact-details h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--navy-blue);
            margin-bottom: 1rem;
        }
        .contact-details ul {
            list-style: none;
            padding: 0;
        }
        .contact-details li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        .contact-details .icon {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--teal);
            flex-shrink: 0;
            margin-top: 0.25rem;
        }
        .contact-details li p {
            margin: 0;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        .contact-details li p strong {
            color: var(--text-dark);
            font-weight: 500;
            display: block;
        }

        .map-container {
            border-radius: 0.5rem;
            overflow: hidden;
            border: 1px solid var(--border-color);
            height: 300px;
            margin-top: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
        }
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .contact-form h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--navy-blue);
            margin-bottom: 1.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--teal);
            box-shadow: 0 0 0 3px rgba(0, 140, 150, 0.2);
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* --- Footer Styles (Specific to your image request) --- */
        .footer {
            background-color: #1a2035; /* Darker navy from image */
            color: var(--white);
            padding: 3rem 0;
            font-size: 0.9rem;
        }
        
        .footer-top {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-inquiry-text {
            color: #e2e8f0;
            line-height: 1.6;
            flex: 1;
        }
        
        .footer-contact-info {
            text-align: left;
            flex-shrink: 0;
        }
        
        .footer-contact-info p {
            margin-bottom: 0.25rem;
            color: #e2e8f0;
            font-size: 1rem;
        }
        
        .footer-divider {
            height: 1px;
            background-color: rgba(255, 255, 255, 0.1);
            width: 100%;
            margin-bottom: 2rem;
        }
        
        .footer-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
         /* Partner Logos Section */
        .partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .partners-grid img {
            height: 3rem; /* 48px */
            width: auto;
            /* Invert brightness to make logos white/light gray to match theme */
            filter: brightness(0) invert(1);
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        .partners-grid img:hover {
            opacity: 1;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: none; 
            padding-top: 1rem;
            text-align: center;
            font-size: 0.875rem;
            color: #9ca3af; /* gray-400 */
        }


        /* On-Scroll Animation */
        .animate-on-scroll {
            opacity: 0;
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in-up { transform: translateY(2rem); }
        .is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Media Queries */
        @media (min-width: 768px) {
            .contact-grid { grid-template-columns: 1fr 1fr; }
            .nav-menu { display: flex; }
            .mobile-menu-btn { display: none; }
            .header-btn { display: block; }
            
            .footer-top {
                flex-direction: row;
                align-items: center; 
            }
            .footer-inquiry-text {
                max-width: 60%;
            }
            .footer-contact-info {
                text-align: right;
            }
        }
        @media (min-width: 1024px) {
            .footer-logos {
                justify-content: space-between;
                padding: 0 2rem;
            }
        }

    


        /* CSS Variables for consistent theming */
        :root {
            --navy-blue: #212A45;
            --teal: #008C96;
            --turquoise: #3DCCC7;
            --light-gray: #F5F7FA;
            --white: #FFFFFF;
            --text-dark: #334155;
            --text-light: #64748b;
            --border-color: #e2e8f0;
        }

        /* Basic Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* Header and Navigation */
        #header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 50;
            transition: all 0.3s ease-in-out;
            border-bottom: 1px solid transparent;
        }
        #header.scrolled {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid var(--border-color);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
        }
        .logo img {
            height: 2.5rem; /* 40px */
        }
        .nav-menu {
            display: none;
            gap: 2rem;
            list-style: none;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 0;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--teal);
        }
        .nav-menu > li {
            position: relative;
        }
        .nav-link .dropdown-arrow {
            width: 0.8rem;
            height: 0.8rem;
            stroke: #9ca3af;
            stroke-width: 2;
            transition: transform 0.3s ease;
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: -1rem;
            background-color: var(--white);
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            min-width: 220px;
            z-index: 60;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            padding: 0.5rem 0;
        }
        .nav-menu > li:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-menu > li:hover > .nav-link .dropdown-arrow {
            transform: rotate(180deg);
            stroke: var(--teal);
        }
        .dropdown-menu li a {
            display: block;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .dropdown-menu li a:hover {
            background-color: var(--light-gray);
            color: var(--teal);
        }

        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
        }
        .mobile-menu-btn svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--navy-blue);
        }
        .mobile-menu {
            display: none;
            background-color: white;
            border-top: 1px solid var(--border-color);
            position: absolute;
            width: 100%;
            left: 0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .mobile-menu.active {
            display: block;
        }
        .mobile-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            color: var(--text-dark);
        }
        .mobile-menu a:hover {
            background-color: #f8fafc;
            color: var(--teal);
        }
        .mobile-menu .btn-wrapper {
            padding: 1rem;
        }
        
        /* New Mobile Dropdown Styles */
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            text-align: left;
            cursor: pointer;
            color: var(--text-dark);
            font-family: inherit;
        }
        .mobile-dropdown-toggle:hover {
            background-color: #f8fafc;
            color: var(--teal);
        }
        .mobile-dropdown-toggle .dropdown-arrow {
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s ease;
        }
        .mobile-dropdown-menu {
            display: none;
            background-color: #f1f5f9;
            padding: 0.5rem 0;
        }
        .mobile-dropdown-menu.active {
            display: block;
        }
        .mobile-dropdown-menu li a {
            padding-left: 2.5rem;
            font-size: 0.85rem;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            text-align: center;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.10);
        }
        .btn:active {
            transform: scale(0.97);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn-teal { background-color: var(--teal); color: white; }
        .btn-teal:hover { background-color: #00737a; }
        .btn-white { background-color: var(--white); color: var(--text-dark); border-color: var(--border-color); }
        .btn-white:hover { background-color: #f8fafc; }
        .btn-navy { background-color: var(--navy-blue); color: var(--white); }
        .btn-navy:hover { background-color: #1a2238; }
        
        /* General Section Styling */
        .section {
            padding: 6rem 0;
        }
        .section-light {
            background-color: var(--light-gray);
        }
        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--navy-blue);
            text-align: center;
        }
        .section-subtitle {
            margin-top: 1rem;
            color: var(--text-light);
            max-width: 650px;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }
        .section-header {
            margin-bottom: 4rem;
        }
        .section-header .divider {
            width: 6rem;
            height: 4px;
            background-color: var(--teal);
            margin-top: 0.5rem;
            border-radius: 2px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Page Header */
        .page-header {
            padding-top: 8rem; /* 6rem padding + 2rem for header */
            padding-bottom: 4rem;
            background-color: var(--light-gray);
            border-bottom: 1px solid var(--border-color);
        }
        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy-blue);
            text-align: center;
        }
        .page-header p {
            max-width: 600px;
            margin: 1rem auto 0;
            text-align: center;
            color: var(--text-light);
            font-size: 1.1rem;
        }

        /* --- Page Specific Styles (Important Dates) --- */

        /* Key Deadlines List */
        .deadlines-list {
            list-style: none;
            margin-top: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .deadline-item {
            display: flex;
            align-items: center;
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        .deadline-item:first-child {
            padding-top: 0;
        }
        .deadline-date {
            flex-shrink: 0;
            text-align: center;
            margin-right: 2rem;
            background-color: var(--teal);
            color: var(--white);
            border-radius: 0.5rem;
            padding: 0.75rem 1rem;
            width: 120px;
        }
        .deadline-date span {
            display: block;
            font-size: 1.75rem;
            font-weight: 700;
            line-height: 1.2;
        }
        .deadline-date small {
            font-size: 0.9rem;
            font-weight: 500;
            opacity: 0.9;
        }
        .deadline-info h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--navy-blue);
        }
        .deadline-info p {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Schedule Tabs */
        .schedule-tabs {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 2rem;
            border-bottom: 2px solid var(--border-color);
            justify-content: center;
        }
        .tab-link {
            padding: 0.75rem 1.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            background: none;
            color: var(--text-light);
            border-bottom: 3px solid transparent;
            transform: translateY(2px);
            transition: all 0.3s ease;
        }
        .tab-link.active {
            color: var(--teal);
            border-bottom-color: var(--teal);
        }
        .tab-link:hover {
            color: var(--navy-blue);
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }

        /* Schedule Timeline */
        .schedule-timeline {
            position: relative;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .timeline-item {
            position: relative;
            padding-left: 3rem;
            padding-bottom: 2.5rem;
        }
        .timeline-item:last-child {
            padding-bottom: 0;
        }
        /* The vertical line */
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0.875rem; /* 14px */
            top: 0.5rem;
            height: 100%;
            width: 2px;
            background-color: var(--border-color);
        }
        .timeline-time {
            position: absolute;
            left: 0;
            top: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2rem; /* 32px */
            height: 2rem;
            border-radius: 50%;
            background-color: var(--light-gray);
            border: 2px solid var(--border-color);
            z-index: 1;
        }
        .timeline-time svg {
            width: 1rem;
            height: 1rem;
            color: var(--text-light);
        }
        .session-card {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .session-card:hover {
            border-color: var(--teal);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
        }
        .session-header {
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .session-header h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--navy-blue);
        }
        .session-time {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--teal);
            margin-bottom: 0.25rem;
        }
        .session-body {
            padding: 1.5rem;
        }
        .session-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .session-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-light);
        }
        .session-meta-item svg {
            width: 1.1rem;
            height: 1.1rem;
            flex-shrink: 0;
            color: var(--text-light);
        }
        .session-meta-item strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        
        /* Footer */
        .footer {
            background-color: var(--navy-blue);
            color: var(--white);
            padding-top: 3rem;
        }
        .footer-content {
            display: grid;
            gap: 2rem;
            align-items: flex-start; /* Align to top */
            padding-bottom: 2rem;
        }
        
        /* Left side text */
        .footer-info {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #e2e8f0;
            max-width: 600px;
        }

        /* Right side contact */
        .footer-contact {
            text-align: left;
        }
        .footer-contact a {
            display: block;
            color: #e2e8f0;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-contact a:hover {
            color: var(--turquoise);
        }
        
        
        /* Partner Logos Section */
        .partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .partners-grid img {
            height: 3rem; /* 48px */
            width: auto;
            /* Invert brightness to make logos white/light gray to match theme */
            filter: brightness(0) invert(1);
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        .partners-grid img:hover {
            opacity: 1;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: none; 
            padding-top: 1rem;
            text-align: center;
            font-size: 0.875rem;
            color: #9ca3af; /* gray-400 */
        }

        /* On-Scroll Animation */
        .animate-on-scroll {
            opacity: 0;
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in-up { transform: translateY(2rem); }
        .is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Media Queries */
        @media (min-width: 768px) {
            .nav-menu { display: flex; }
            .mobile-menu-btn { display: none; }
            .header-btn { display: block; }
            
            /* Footer Grid: Text Left, Contact Right */
            .footer-content { 
                grid-template-columns: 2fr 1fr; 
            }
            .footer-contact { 
                text-align: right; 
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                justify-content: center;
                height: 100%;
            }
            
            /* Specific footer classes for layout alignment */
            .footer-top {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }
            .footer-inquiry-text {
                flex: 1;
                max-width: 60%;
            }
            .footer-contact-info {
                text-align: right;
            }
        }
        @media (min-width: 1024px) {
            .footer-logos {
                justify-content: space-between;
                padding: 0 2rem;
            }
        }
        
        /* Additional helper classes for footer structure */
        .footer-top {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-inquiry-text {
            color: #e2e8f0;
            line-height: 1.6;
        }
        .footer-contact-info p {
            margin-bottom: 0.25rem;
            color: #e2e8f0;
            font-size: 1rem;
        }

    


        /* CSS Variables for consistent theming */
        :root {
            --navy-blue: #212A45;
            --teal: #008C96;
            --turquoise: #3DCCC7;
            --light-gray: #F5F7FA;
            --white: #FFFFFF;
            --text-dark: #334155;
            --text-light: #64748b;
            --border-color: #e2e8f0;
        }

        /* Basic Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* --- UPDATED HEADER STYLES --- */
        #header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 50;
            transition: all 0.3s ease-in-out;
            border-bottom: 1px solid transparent;
        }
        #header.scrolled {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid var(--border-color);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
        }
        .logo img {
            height: 2.5rem; /* 40px */
        }
        .nav-menu {
            display: none;
            gap: 2rem;
            list-style: none;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 0;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--teal);
        }
        .nav-menu > li {
            position: relative;
        }
        .nav-link .dropdown-arrow {
            width: 0.8rem;
            height: 0.8rem;
            stroke: #9ca3af;
            stroke-width: 2;
            transition: transform 0.3s ease;
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: -1rem;
            background-color: var(--white);
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            min-width: 220px;
            z-index: 60;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            padding: 0.5rem 0;
        }
        .nav-menu > li:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-menu > li:hover > .nav-link .dropdown-arrow {
            transform: rotate(180deg);
            stroke: var(--teal);
        }
        .dropdown-menu li a {
            display: block;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .dropdown-menu li a:hover {
            background-color: var(--light-gray);
            color: var(--teal);
        }

        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
        }
        .mobile-menu-btn svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--navy-blue);
        }
        .mobile-menu {
            display: none;
            background-color: white;
            border-top: 1px solid var(--border-color);
            position: absolute;
            width: 100%;
            left: 0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .mobile-menu.active {
            display: block;
        }
        .mobile-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            color: var(--text-dark);
        }
        .mobile-menu a:hover {
            background-color: #f8fafc;
            color: var(--teal);
        }
        .mobile-menu .btn-wrapper {
            padding: 1rem;
        }
        
        /* New Mobile Dropdown Styles */
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            text-align: left;
            cursor: pointer;
            color: var(--text-dark);
            font-family: inherit;
        }
        .mobile-dropdown-toggle:hover {
            background-color: #f8fafc;
            color: var(--teal);
        }
        .mobile-dropdown-toggle .dropdown-arrow {
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s ease;
        }
        .mobile-dropdown-menu {
            display: none;
            background-color: #f1f5f9;
            padding: 0.5rem 0;
        }
        .mobile-dropdown-menu.active {
            display: block;
        }
        .mobile-dropdown-menu li a {
            padding-left: 2.5rem;
            font-size: 0.85rem;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            text-align: center;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.10);
        }
        .btn:active {
            transform: scale(0.97);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn-teal { background-color: var(--teal); color: white; }
        .btn-teal:hover { background-color: #00737a; }
        .btn-white { background-color: var(--white); color: var(--text-dark); border-color: var(--border-color); }
        .btn-white:hover { background-color: #f8fafc; }
        .btn-navy { background-color: var(--navy-blue); color: var(--white); }
        .btn-navy:hover { background-color: #1a2238; }

        /* --- EXISTING INDEX CONTENT STYLES --- */
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 6rem;
            padding-bottom: 4rem;
            background-image: linear-gradient(90deg, rgba(33, 42, 69, 0.85) 0%, rgba(33, 42, 69, 0.4) 100%), url('./Image/hero bg.jpg');
            background-size: cover;
            background-position: center;
            animation: slow-pan 20s infinite alternate ease-in-out;
        }
        @keyframes slow-pan {
            0% { background-position: 50% 50%; }
            100% { background-position: 60% 60%; }
        }
        .hero-content {
            display: grid;
            gap: 3rem;
            align-items: center;
        }
        .hero-text h1 {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
        }
        .hero-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            color: #d1d5db;
            margin: 2rem 0;
        }
        .hero-details-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .hero-details-item svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--turquoise);
        }
        .hero-buttons {
            display: flex;
            gap: 1rem;
        }
        
        /* Updated Hero Card Styles for Carousel */
        .hero-card {
            width: 100%;
            max-width: 450px; /* Constrain width to look like a card */
            margin: 0 auto;
        }
        
        .hero-carousel-card {
            background-color: #F1F5F9; /* Very light gray/white background */
            padding: 1rem;
            border-radius: 0.75rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            height: auto;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .card-image {
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            width: 100%;
            height: 240px; /* Fixed height for consistency */
            object-fit: cover;
        }

        .card-text {
            font-size: 0.9rem;
            color: #334155; /* Slate-700 */
            margin-bottom: 1.5rem;
            line-height: 1.5;
            flex-grow: 1;
        }

        .btn-full-dark {
            display: block;
            width: 100%;
            text-align: center;
            padding: 0.75rem;
            background-color: #1e293b; /* Dark slate/navy */
            border-radius: 0.5rem;
            color: white;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        .btn-full-dark:hover {
            background-color: #0f172a;
        }
        
        /* General Section Styling */
        .section {
            padding: 6rem 0;
        }
        .section-light {
            background-color: var(--light-gray);
        }
        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--navy-blue);
            text-align: center;
        }
        .section-subtitle {
            margin-top: 1rem;
            color: var(--text-light);
        }
        .section-header {
            margin-bottom: 4rem;
        }
        .section-header .divider {
            width: 6rem;
            height: 4px;
            background-color: var(--teal);
            margin-top: 0.5rem;
            border-radius: 2px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Information Section */
        .info-section-grid {
            display: grid;
            gap: 4rem;
        }
        .info-content .block {
            margin-top: 3rem;
        }
        .info-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy-blue);
        }
        .info-content p, .info-content ul {
            margin-top: 0.5rem;
            color: var(--text-light);
        }
        .info-content ul {
            list-style: decimal;
            padding-left: 1.5rem;
            color: var(--text-dark);
            space: 0.75rem;
        }
        
        /* Important Dates */
        .dates-column h3 {
             font-size: 1.5rem;
             font-weight: 700;
             color: var(--navy-blue);
             margin-bottom: 1.5rem;
        }
        .date-item {
            display: flex;
            align-items: center;
            background: var(--white);
            padding: 1rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
            margin-bottom: 1rem;
        }
        .date-item-day {
            text-align: center;
            border-right: 1px solid var(--border-color);
            padding-right: 1rem;
            margin-right: 1rem;
        }
        .date-item-day .month {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--teal);
        }
        .date-item-day .day {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--navy-blue);
            line-height: 1;
        }
        .date-item-title {
            font-weight: 600;
            color: var(--text-dark);
        }
        .dates-column .btn-white {
            width: 100%;
            margin-top: 1.5rem;
            padding: 0.625rem;
        }

        /* Recap Section */
        .recap-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        .swiper-navigation {
            display: none;
        }

        /* Swiper custom styles */
        .swiper-slide img {
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: 18rem; /* 288px */
            object-fit: cover;
            background-color: var(--light-gray);
        }
        .swiper-button-next, .swiper-button-prev {
            color: var(--navy-blue);
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            width: 44px;
            height: 44px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .swiper-button-next:hover, .swiper-button-prev:hover {
            background-color: white;
            transform: scale(1.1);
        }
        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 1.25rem;
            font-weight: 800;
        }

        /* --- UPDATED FOOTER STYLES --- */
        .footer {
            background-color: #1a2035; /* Darker navy from image */
            color: var(--white);
            padding: 3rem 0;
            font-size: 0.9rem;
        }
        
        .footer-top {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-inquiry-text {
            color: #e2e8f0;
            line-height: 1.6;
            flex: 1;
        }
        
        .footer-contact-info {
            text-align: left;
            flex-shrink: 0;
        }
        
        .footer-contact-info p {
            margin-bottom: 0.25rem;
            color: #e2e8f0;
            font-size: 1rem;
        }
        
        .footer-divider {
            height: 1px;
            background-color: rgba(255, 255, 255, 0.1);
            width: 100%;
            margin-bottom: 2rem;
        }
        
        .footer-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
             /* Partner Logos Section */
        .partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .partners-grid img {
            height: 3rem; /* 48px */
            width: auto;
            /* Invert brightness to make logos white/light gray to match theme */
            filter: brightness(0) invert(1);
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        .partners-grid img:hover {
            opacity: 1;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: none; 
            padding-top: 1rem;
            text-align: center;
            font-size: 0.875rem;
            color: #9ca3af; /* gray-400 */
        }
        
        /* On-Scroll Animation */
        .animate-on-scroll {
            opacity: 0;
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in-up { transform: translateY(2rem); }
        .is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Media Queries */
        @media (min-width: 768px) {
            .nav-menu { display: flex; }
            .mobile-menu-btn { display: none; }
            .header-btn { display: block; }
            
            .hero-content { grid-template-columns: repeat(12, 1fr); }
            .hero-text { grid-column: span 7; }
            .hero-card { grid-column: span 5; }
            .hero-text h1 { font-size: 3.75rem; }
            .hero-details { flex-direction: row; }

            .info-section-grid { grid-template-columns: repeat(12, 1fr); }
            .info-content { grid-column: span 7; }
            .dates-column { grid-column: span 5; }

            .recap-header .swiper-navigation { display: flex; gap: 0.5rem; }
            .swiper-navigation .swiper-button-next, .swiper-navigation .swiper-button-prev {
                position: static;
                width: 44px;
                height: 44px;
            }
            
            /* Footer Grid: Text Left, Contact Right */
            .footer-top {
                flex-direction: row;
                align-items: center; 
            }
            .footer-inquiry-text {
                max-width: 60%;
            }
            .footer-contact-info {
                text-align: right;
            }
        }
        @media (min-width: 1024px) {
            .footer-logos {
                justify-content: space-between;
                padding: 0 2rem;
            }
        }
    


        /* CSS Variables for consistent theming */
        :root {
            --navy-blue: #212A45;
            --teal: #008C96;
            --turquoise: #3DCCC7;
            --light-gray: #F5F7FA;
            --white: #FFFFFF;
            --text-dark: #334155;
            --text-light: #64748b;
            --border-color: #e2e8f0;
        }

        /* Basic Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* Header and Navigation */
        #header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 50;
            transition: all 0.3s ease-in-out;
            border-bottom: 1px solid transparent;
        }
        #header.scrolled {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid var(--border-color);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
        }
        .logo img {
            height: 2.5rem; /* 40px */
        }
        .nav-menu {
            display: none;
            gap: 2rem;
            list-style: none;
        }
        .nav-menu > li {
            position: relative;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 0;
        }
        .nav-link .dropdown-arrow {
            width: 0.8rem;
            height: 0.8rem;
            stroke: #9ca3af;
            stroke-width: 2;
            transition: transform 0.3s ease;
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: -1rem;
            background-color: var(--white);
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            min-width: 220px;
            z-index: 60;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            padding: 0.5rem 0;
        }
        .nav-menu > li:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-menu > li:hover > .nav-link {
            color: var(--teal);
        }
        .nav-menu > li:hover > .nav-link .dropdown-arrow {
            transform: rotate(180deg);
            stroke: var(--teal);
        }
        .dropdown-menu li a {
            display: block;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .dropdown-menu li a:hover {
            background-color: var(--light-gray);
            color: var(--teal);
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
        }
        .mobile-menu-btn svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--navy-blue);
        }
        .mobile-menu {
            display: none;
            background-color: white;
            border-top: 1px solid var(--border-color);
            padding-bottom: 1rem;
            max-height: 80vh; /* Prevent it from being too tall */
            overflow-y: auto;
        }
        .mobile-menu.active {
            display: block;
            animation: slideDown 0.3s ease-out;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .mobile-menu ul {
            list-style: none;
        }
        .mobile-menu li {
            border-bottom: 1px solid #f1f5f9;
        }
        
        /* Mobile Dropdown Styling */
        .mobile-dropdown-toggle {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 1.5rem;
            background: none;
            border: none;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-dark);
            cursor: pointer;
            font-family: inherit;
        }
        .mobile-dropdown-toggle .dropdown-arrow {
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s;
        }
        .mobile-dropdown-toggle.active .dropdown-arrow {
            transform: rotate(180deg);
        }
        .mobile-dropdown-menu {
            display: none;
            background-color: var(--light-gray);
            padding-left: 1rem;
        }
        .mobile-dropdown-menu.active {
            display: block;
        }
        .mobile-dropdown-menu li {
            border-bottom: none; /* Remove border for sub-items */
        }
        .mobile-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            color: var(--text-dark);
        }
        .mobile-menu a:hover {
            color: var(--teal);
            background-color: #f8fafc;
        }
        .mobile-menu .btn-wrapper {
            padding: 1rem 1.5rem;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            text-align: center;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            font-size: 0.9rem;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:active {
            transform: scale(0.97);
        }
        .btn-teal { background-color: var(--teal); color: white; }
        .btn-teal:hover { background-color: #00737a; }
        .btn-navy { background-color: var(--navy-blue); color: var(--white); }
        .btn-navy:hover { background-color: #1a2238; }
        
        /* Speaker Details Button */
        .btn-details {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.5rem 1.25rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--teal);
            border: 1px solid var(--teal);
            border-radius: 0.375rem;
            transition: all 0.3s ease;
            text-align: center;
        }
        .btn-details:hover {
            background-color: var(--teal);
            color: var(--white);
            box-shadow: 0 4px 6px -1px rgba(0, 140, 150, 0.2);
        }
        
        /* General Section Styling */
        .section {
            padding: 6rem 0;
        }
        .section-light {
            background-color: var(--light-gray);
        }
        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--navy-blue);
        }
        .section-subtitle {
            margin-top: 1rem;
            color: var(--text-light);
        }
        .section-header {
            margin-bottom: 4rem;
        }
        .section-header .divider {
            width: 6rem;
            height: 4px;
            background-color: var(--teal);
            margin-top: 0.5rem;
            border-radius: 2px;
        }

        /* --- Page Header --- */
        .page-header {
            padding-top: 8rem; /* 6rem padding + 2rem for header */
            padding-bottom: 4rem;
            background-color: var(--light-gray);
            border-bottom: 1px solid var(--border-color);
        }
        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy-blue);
        }

        /* --- Speaker Grid --- */
        .speaker-card {
            background-color: var(--white);
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .speaker-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
        }
        .speaker-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            object-position: top;
            background-color: var(--light-gray);
        }
        .speaker-info {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .speaker-info h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--navy-blue);
        }
        .speaker-affiliation {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--teal);
            margin-bottom: 0.75rem;
            display: block;
        }
        .speaker-bio {
            font-size: 0.875rem;
            color: var(--text-light);
            line-height: 1.5;
            margin-bottom: auto; /* Pushes button to bottom */
        }

        /* --- Speaker Carousel --- */
        .speaker-carousel-wrapper {
            position: relative;
            padding: 4rem 0; 
        }
        .mySpeakerSwiper {
            width: 100%;
            overflow: visible; 
            padding-bottom: 3rem; 
        }
        .mySpeakerSwiper .swiper-slide {
            height: auto; 
        }
        
        .mySpeakerSwiper .swiper-button-next,
        .mySpeakerSwiper .swiper-button-prev {
            color: var(--navy-blue);
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .mySpeakerSwiper .swiper-button-next:after,
        .mySpeakerSwiper .swiper-button-prev:after {
            font-size: 1.25rem;
            font-weight: 800;
        }
        .mySpeakerSwiper .swiper-button-prev { left: 0; }
        .mySpeakerSwiper .swiper-button-next { right: 0; }
        
        .mySpeakerSwiper .swiper-pagination {
            bottom: 0;
        }
        .mySpeakerSwiper .swiper-pagination-bullet {
            background-color: var(--text-light);
            opacity: 0.7;
            width: 10px;
            height: 10px;
            transition: all 0.3s ease;
        }
        .mySpeakerSwiper .swiper-pagination-bullet-active {
            background-color: var(--teal);
            opacity: 1;
            transform: scale(1.2);
        }

        /* --- Invited Guests Grid --- */
        .invited-guests-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        /* --- Updated Footer Styles --- */
        .footer {
            background-color: var(--navy-blue);
            color: var(--white);
            padding-top: 3rem;
        }
        .footer-content {
            display: grid;
            gap: 2rem;
            align-items: flex-start; /* Align to top */
            padding-bottom: 2rem;
        }
        
        /* Left side text */
        .footer-info {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #e2e8f0;
            max-width: 600px;
        }

        /* Right side contact */
        .footer-contact {
            text-align: left;
        }
        .footer-contact a {
            display: block;
            color: #e2e8f0;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-contact a:hover {
            color: var(--turquoise);
        }
        .footer-contact p {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

         /* Partner Logos Section */
        .partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .partners-grid img {
            height: 3rem; /* 48px */
            width: auto;
            /* Invert brightness to make logos white/light gray to match theme */
            filter: brightness(0) invert(1);
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        .partners-grid img:hover {
            opacity: 1;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: none; 
            padding-top: 1rem;
            text-align: center;
            font-size: 0.875rem;
            color: #9ca3af; /* gray-400 */
        }

        .footer-bottom {
            padding: 1.5rem 0;
            text-align: center;
            font-size: 0.875rem;
            color: #94a3b8;
            background-color: rgba(0,0,0,0.1); /* Slightly darker bottom */
        }
        
        .footer-logo-img-main {
            height: 2.5rem; 
            margin-bottom: 1rem; 
            filter: brightness(0) invert(1);
        }

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in-up { transform: translateY(2rem); }
        .is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Media Queries */
        @media (max-width: 767px) {
            .mySpeakerSwiper .swiper-button-next,
            .mySpeakerSwiper .swiper-button-prev {
                display: none;
            }
        }

        @media (min-width: 768px) {
            .nav-menu { display: flex; }
            .mobile-menu-btn { display: none; }
            .header-btn { display: block; }

            .invited-guests-grid {
                grid-template-columns: 1fr 1fr;
            }

            /* Footer Desktop Layout */
            .footer-content { 
                grid-template-columns: 2fr 1fr; 
            }
            .footer-contact { 
                text-align: right; 
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                justify-content: center;
                height: 100%;
            }
        }

    


        /* =========================================
           1. CORE STYLES (From your provided code)
           ========================================= */
        
        /* CSS Variables */
        :root {
            --navy-blue: #212A45;
            --teal: #008C96;
            --turquoise: #3DCCC7;
            --light-gray: #F5F7FA;
            --white: #FFFFFF;
            --text-dark: #334155;
            --text-light: #64748b;
            --border-color: #e2e8f0;
        }

        /* Basic Resets */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            /* Note: Recap page uses a dark background/image, but we keep base styles consistent */
            background-color: var(--white); 
            line-height: 1.6;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* --- Header and Navigation (New Style) --- */
        #header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 50;
            transition: all 0.3s ease-in-out;
            border-bottom: 1px solid transparent;
        }
        #header.scrolled {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid var(--border-color);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
        }
        .logo img {
            height: 2.5rem; /* 40px */
        }
        .nav-menu {
            display: none;
            gap: 2rem;
            list-style: none;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 0;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--teal);
        }
        .nav-menu > li {
            position: relative;
        }
        .nav-link .dropdown-arrow {
            width: 0.8rem;
            height: 0.8rem;
            stroke: #9ca3af;
            stroke-width: 2;
            transition: transform 0.3s ease;
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: -1rem;
            background-color: var(--white);
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            min-width: 220px;
            z-index: 60;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            padding: 0.5rem 0;
        }
        .nav-menu > li:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-menu > li:hover > .nav-link .dropdown-arrow {
            transform: rotate(180deg);
            stroke: var(--teal);
        }
        .dropdown-menu li a {
            display: block;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .dropdown-menu li a:hover {
            background-color: var(--light-gray);
            color: var(--teal);
        }

        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
        }
        .mobile-menu-btn svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--navy-blue);
        }
        .mobile-menu {
            display: none;
            background-color: white;
            border-top: 1px solid var(--border-color);
            position: absolute;
            width: 100%;
            left: 0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .mobile-menu.active {
            display: block;
        }
        .mobile-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            color: var(--text-dark);
        }
        .mobile-menu a:hover {
            background-color: #f8fafc;
            color: var(--teal);
        }
        .mobile-menu .btn-wrapper {
            padding: 1rem;
        }
        
        /* Mobile Dropdown Styles */
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            text-align: left;
            cursor: pointer;
            color: var(--text-dark);
            font-family: inherit;
        }
        .mobile-dropdown-toggle:hover {
            background-color: #f8fafc;
            color: var(--teal);
        }
        .mobile-dropdown-toggle .dropdown-arrow {
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s ease;
        }
        .mobile-dropdown-menu {
            display: none;
            background-color: #f1f5f9;
            padding: 0.5rem 0;
        }
        .mobile-dropdown-menu.active {
            display: block;
        }
        .mobile-dropdown-menu li a {
            padding-left: 2.5rem;
            font-size: 0.85rem;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            text-align: center;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.10);
        }
        .btn:active {
            transform: scale(0.97);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn-teal { background-color: var(--teal); color: white; }
        .btn-teal:hover { background-color: #00737a; }
        .btn-white { background-color: var(--white); color: var(--text-dark); border-color: var(--border-color); }
        .btn-white:hover { background-color: #f8fafc; }
        .btn-navy { background-color: var(--navy-blue); color: var(--white); }
        .btn-navy:hover { background-color: #1a2238; }

        /* --- Footer (New Style) --- */
        .footer {
            background-color: var(--navy-blue);
            color: var(--white);
            padding-top: 3rem;
            position: relative;
            z-index: 10;
        }
        .footer-content {
            display: grid;
            gap: 2rem;
            align-items: flex-start;
            padding-bottom: 2rem;
        }
        .footer-info {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #e2e8f0;
            max-width: 600px;
        }
        .footer-contact {
            text-align: left;
        }
        .footer-contact a, .footer-contact p {
            display: block;
            color: #e2e8f0;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-contact a:hover {
            color: var(--turquoise);
        }
            /* Partner Logos Section */
        .partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .partners-grid img {
            height: 3rem; /* 48px */
            width: auto;
            /* Invert brightness to make logos white/light gray to match theme */
            filter: brightness(0) invert(1);
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        .partners-grid img:hover {
            opacity: 1;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: none; 
            padding-top: 1rem;
            text-align: center;
            font-size: 0.875rem;
            color: #9ca3af; /* gray-400 */
        }


        @media (min-width: 768px) {
            .nav-menu { display: flex; }
            .mobile-menu-btn { display: none; }
            .header-btn { display: block; }
            
            .footer-content { grid-template-columns: 2fr 1fr; }
            .footer-contact { 
                text-align: right; 
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                justify-content: center;
                height: 100%;
            }
        }

        /* Background Image Wrappers */
        .memmory_section-bg-image-wrap {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
        .memory_item-bg-wrap {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        .memory_item-bg-wrap.is-active {
            opacity: 1;
            z-index: 1;
        }
        .memory_item-bg-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(33, 42, 69, 0.85), rgba(15, 23, 42, 0.95));
            z-index: 2;
        }
        .memory_bg-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 1;
        }

        /* Page Hero */
        .page-header {
            padding-top: 10rem;
            padding-bottom: 6rem;
            background-color: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid var(--border-color);
            text-align: center;
            position: relative;
            z-index: 1;
        }
        .page-header h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--navy-blue);
            margin-bottom: 1rem;
        }
        .page-header p {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* Timeline Section */
        .timeline-section {
            padding: 4rem 0;
            min-height: 100vh;
            position: relative;
        }
        .timeline {
            margin: 0 auto;
            max-width: 1000px;
            padding: 25px;
            display: grid;
            grid-template-columns: 1fr 4px 1fr;
            font-family: "Fira Sans", sans-serif;
            color: #ffffff; /* Explicitly set to white for dark timeline */
            gap: 0;
        }
        .timeline__component {
            margin: 0 30px 120px 30px;
            position: relative;
            opacity: 0; 
            transform: translateY(50px) scale(0.95);
            transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .timeline__component.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        .timeline__component--bg {
            padding: 2em;
            background: rgba(15, 23, 42, 0.6); 
            backdrop-filter: blur(12px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
        }
        .timeline__component--bg:hover {
            transform: translateY(-10px) !important;
            background: rgba(15, 23, 42, 0.8);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }
        .timeline__component--bottom {
            margin-bottom: 0;
        }
        .timeline__middle {
            position: relative;
            background: rgba(255, 255, 255, 0.2);
            width: 4px;
        }
        .timeline__point {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--navy-blue);
            border-radius: 50%;
            border: 3px solid var(--white);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 2;
        }
        .timeline__point.active-point {
            background: var(--turquoise);
            border-color: var(--teal);
            box-shadow: 0 0 0 6px rgba(61, 204, 199, 0.3);
            transform: translateX(-50%) scale(1.2);
        }
        .timeline__point--bottom {
            top: initial;
            bottom: 0;
        }
        .timeline__date {
            font-weight: 700;
            color: var(--turquoise);
            font-size: 1.5rem;
            padding-top: 15px;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .timeline__date--right {
            text-align: right;
        }
        .timeline__title {
            margin: 0 0 0.75rem 0;
            font-size: 1.5em;
            font-weight: 700;
            color: var(--white);
        }
        .timeline__paragraph {
            line-height: 1.7;
            color: #d1d5db;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        .img-wrapper {
            width: 100%;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            position: relative;
        }
        .timeline__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.5s ease;
        }
        .timeline__component--bg:hover .timeline__img {
            transform: scale(1.15);
        }
        .btn-explore {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background: transparent;
            color: var(--turquoise);
            border: 2px solid var(--turquoise);
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .btn-explore:hover {
            background: var(--turquoise);
            color: var(--navy-blue);
            box-shadow: 0 0 20px var(--turquoise), 0 0 40px rgba(61, 204, 199, 0.4);
            transform: translateY(-2px);
            border-color: transparent;
        }

        @media (max-width: 768px) {
            .timeline {
                display: flex;
                flex-direction: column;
                padding: 10px;
            }
            .timeline__middle { display: none; }
            .timeline__component { margin: 0 0 4rem 0; }
            .timeline__date--right, .timeline__date { text-align: left; margin-bottom: 0.5rem; }
            .timeline__component--bg { margin: 0; }
            .mobile-marker {
                display: block;
                width: 15px;
                height: 15px;
                background: var(--turquoise);
                border-radius: 50%;
                margin-bottom: 10px;
                box-shadow: 0 0 10px var(--turquoise);
            }
        }
        @media (min-width: 769px) {
            .mobile-marker { display: none; }
        }
    


        /* CSS Variables for consistent theming */
        :root {
            --navy-blue: #212A45;
            --teal: #008C96;
            --turquoise: #3DCCC7;
            --light-gray: #F5F7FA;
            --white: #FFFFFF;
            --text-dark: #334155;
            --text-light: #64748b;
            --border-color: #e2e8f0;
        }

        /* Basic Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* Header and Navigation */
        #header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 50;
            transition: all 0.3s ease-in-out;
            border-bottom: 1px solid transparent;
        }
        #header.scrolled {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid var(--border-color);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
        }
        .logo img {
            height: 2.5rem; /* 40px */
        }
        .nav-menu {
            display: none;
            gap: 2rem;
            list-style: none;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 0;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--teal);
        }
        .nav-menu > li {
            position: relative;
        }
        .nav-link .dropdown-arrow {
            width: 0.8rem;
            height: 0.8rem;
            stroke: #9ca3af;
            stroke-width: 2;
            transition: transform 0.3s ease;
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: -1rem;
            background-color: var(--white);
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            min-width: 220px;
            z-index: 60;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            padding: 0.5rem 0;
        }
        .nav-menu > li:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-menu > li:hover > .nav-link .dropdown-arrow {
            transform: rotate(180deg);
            stroke: var(--teal);
        }
        .dropdown-menu li a {
            display: block;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .dropdown-menu li a:hover {
            background-color: var(--light-gray);
            color: var(--teal);
        }

        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
        }
        .mobile-menu-btn svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--navy-blue);
        }
        .mobile-menu {
            display: none;
            background-color: white;
            border-top: 1px solid var(--border-color);
            position: absolute;
            width: 100%;
            left: 0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .mobile-menu.active {
            display: block;
        }
        .mobile-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            color: var(--text-dark);
        }
        .mobile-menu a:hover {
            background-color: #f8fafc;
            color: var(--teal);
        }
        .mobile-menu .btn-wrapper {
            padding: 1rem;
        }
        
        /* New Mobile Dropdown Styles */
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            text-align: left;
            cursor: pointer;
            color: var(--text-dark);
            font-family: inherit;
        }
        .mobile-dropdown-toggle:hover {
            background-color: #f8fafc;
            color: var(--teal);
        }
        .mobile-dropdown-toggle .dropdown-arrow {
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s ease;
        }
        .mobile-dropdown-menu {
            display: none;
            background-color: #f1f5f9;
            padding: 0.5rem 0;
        }
        .mobile-dropdown-menu.active {
            display: block;
        }
        .mobile-dropdown-menu li a {
            padding-left: 2.5rem;
            font-size: 0.85rem;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            text-align: center;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.10);
        }
        .btn:active {
            transform: scale(0.97);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn-teal { background-color: var(--teal); color: white; }
        .btn-teal:hover { background-color: #00737a; }
        .btn-white { background-color: var(--white); color: var(--text-dark); border-color: var(--border-color); }
        .btn-white:hover { background-color: #f8fafc; }
        .btn-navy { background-color: var(--navy-blue); color: var(--white); }
        .btn-navy:hover { background-color: #1a2238; }
        
        /* General Section Styling */
        .section {
            padding: 6rem 0;
        }
        .section-light {
            background-color: var(--light-gray);
        }
        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--navy-blue);
            text-align: center;
        }
        .section-subtitle {
            margin-top: 1rem;
            color: var(--text-light);
            max-width: 650px;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }
        .section-header {
            margin-bottom: 4rem;
        }
        .section-header .divider {
            width: 6rem;
            height: 4px;
            background-color: var(--teal);
            margin-top: 0.5rem;
            border-radius: 2px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Page Header */
        .page-header {
            padding-top: 8rem; /* 6rem padding + 2rem for header */
            padding-bottom: 4rem;
            background-color: var(--light-gray);
            border-bottom: 1px solid var(--border-color);
        }
        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy-blue);
            text-align: center;
        }
        .page-header p {
            max-width: 600px;
            margin: 1rem auto 0;
            text-align: center;
            color: var(--text-light);
            font-size: 1.1rem;
        }

        /* --- Sponsorship Page Styles --- */

        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }
        @media (min-width: 768px) {
            .benefits-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        .benefit-card {
            text-align: center;
        }
        .benefit-card .icon {
            width: 4rem;
            height: 4rem;
            margin: 0 auto 1.5rem;
            color: var(--teal);
        }
        .benefit-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--navy-blue);
            margin-bottom: 0.5rem;
        }
        .benefit-card p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Pricing/Packages Table */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
            align-items: flex-start; /* Aligns cards from the top */
        }
        @media (min-width: 768px) {
             .packages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1100px) {
            .packages-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        .package-card {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        /* Light Up Hover Effect */
        .package-card:hover {
            transform: translateY(-5px);
            border-color: var(--teal);
            box-shadow: 0 0 30px rgba(0, 140, 150, 0.3), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .package-card-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .package-card-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy-blue);
            margin-bottom: 0.5rem;
        }
        .package-card-header .price {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--teal);
        }
        .package-card-body {
            padding: 1.5rem;
        }
        .package-card-body ul {
            list-style: none;
            padding: 0;
        }
        .package-card-body li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }
        .package-card-body li svg {
            width: 1rem;
            height: 1rem;
            color: var(--turquoise);
            margin-top: 0.25rem;
            flex-shrink: 0;
        }
        .package-card-footer {
            padding: 1.5rem;
            background-color: var(--light-gray);
            border-top: 1px solid var(--border-color);
        }
        .package-card-footer .btn {
            width: 100%;
        }

        /* Highlighted Package */
        .package-card.highlight {
            border-color: var(--teal);
            border-width: 2px;
            box-shadow: 0 10px 15px -3px rgba(0, 140, 150, 0.1), 0 4px 6px -4px rgba(0, 140, 150, 0.1);
        }
        .package-card.highlight:hover {
             box-shadow: 0 0 40px rgba(0, 140, 150, 0.4), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .package-card.highlight .package-card-header h3 {
            color: var(--teal);
        }
        .package-card.highlight .package-card-footer .btn {
            background-color: var(--teal);
            color: var(--white);
        }
        .package-card.highlight .package-card-footer .btn:hover {
            background-color: #00737a;
        }

        /* Audience Section */
        .audience-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }
        @media (min-width: 768px) {
            .audience-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        .audience-content h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--navy-blue);
            margin-bottom: 1rem;
        }
        .audience-content p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }
        .audience-content ul {
            list-style: none;
            padding: 0;
        }
        .audience-content li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 0.75rem;
        }
        .audience-content li svg {
            width: 1rem;
            height: 1rem;
            color: var(--teal);
            margin-top: 0.25rem;
            flex-shrink: 0;
        }
        .audience-image img {
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--navy-blue);
            color: var(--white);
            padding: 4rem 0;
            text-align: center;
        }
        .cta-container-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }
        .cta-text h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .cta-text p {
            color: #d1d5db;
            margin-bottom: 2rem;
        }
        /* PDF Viewer Styles */
        .pdf-viewer-wrapper {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 10px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            height: 400px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .pdf-viewer-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 4px;
            background: white;
        }
        @media (min-width: 992px) {
            .cta-container-grid {
                grid-template-columns: 1fr 1fr;
                text-align: left;
            }
            .cta-section {
                text-align: left;
            }
            .cta-text p {
                margin-left: 0;
                margin-right: 0;
            }
        }

        
        /* Footer */
        .footer {
            background-color: var(--navy-blue);
            color: var(--white);
            padding-top: 3rem;
        }
        .footer-content {
            display: grid;
            gap: 2rem;
            align-items: flex-start; /* Align to top */
            padding-bottom: 2rem;
        }
        
        /* Left side text */
        .footer-info {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #e2e8f0;
            max-width: 600px;
        }

        /* Right side contact */
        .footer-contact {
            text-align: left;
        }
        .footer-contact a {
            display: block;
            color: #e2e8f0;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-contact a:hover {
            color: var(--turquoise);
        }
        
              /* Partner Logos Section */
        .partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .partners-grid img {
            height: 3rem; /* 48px */
            width: auto;
            /* Invert brightness to make logos white/light gray to match theme */
            filter: brightness(0) invert(1);
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        .partners-grid img:hover {
            opacity: 1;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: none; 
            padding-top: 1rem;
            text-align: center;
            font-size: 0.875rem;
            color: #9ca3af; /* gray-400 */
        }

        

        /* Responsive Media Queries */
        @media (min-width: 768px) {
            .nav-menu { display: flex; }
            .mobile-menu-btn { display: none; }
            .header-btn { display: block; }
            
            /* Footer Grid: Text Left, Contact Right */
            .footer-content { 
                grid-template-columns: 2fr 1fr; 
            }
            .footer-contact { 
                text-align: right; 
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                justify-content: center;
                height: 100%;
            }
        }
        .footer-content {
            display: grid;
            gap: 2rem;
            align-items: center;
            padding: 2.5rem 0;
        }
        .footer-logo img {
            height: 2.5rem;
            margin-bottom: 1rem;
            filter: brightness(0) invert(1);
        }
        .footer-text, .footer-contact p {
            color: #9ca3af;
            font-size: 0.875rem;
        }
        .footer-contact {
            text-align: left;
        }
        
        /* New Footer Partners Section */
        .footer-partners {
            grid-column: 1 / -1;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            align-items: center;
            margin-top: 1rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .footer-partners img {
            height: 3.5rem; /* Slightly larger for partner logos */
            width: auto;
            max-width: 150px;
            object-fit: contain;
            filter: brightness(0) invert(1);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .footer-partners img:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        .footer-bottom {
            border-top: 1px solid #4b5563;
            padding: 1rem 0;
            text-align: center;
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* On-Scroll Animation */
        .animate-on-scroll {
            opacity: 0;
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in-up { transform: translateY(2rem); }
        .is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Media Queries */
        @media (min-width: 768px) {
            .nav-menu { display: flex; }
            .mobile-menu-btn { display: none; }
            .header-btn { display: block; }
            .footer-content { grid-template-columns: 1fr 1fr; }
            .footer-contact { text-align: right; }
        }

    


        /* CSS Variables for consistent theming */
        :root {
            --navy-blue: #212A45;
            --teal: #008C96;
            --turquoise: #3DCCC7;
            --light-gray: #F5F7FA;
            --white: #FFFFFF;
            --text-dark: #334155;
            --text-light: #64748b;
            --border-color: #e2e8f0;
        }

        /* Basic Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* --- NEW HEADER STYLES (From your code) --- */
        #header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 50;
            transition: all 0.3s ease-in-out;
            border-bottom: 1px solid transparent;
        }
        #header.scrolled {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid var(--border-color);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
        }
        .logo img {
            height: 2.5rem; /* 40px */
        }
        .nav-menu {
            display: none;
            gap: 2rem;
            list-style: none;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 0;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--teal);
        }
        .nav-menu > li {
            position: relative;
        }
        .nav-link .dropdown-arrow {
            width: 0.8rem;
            height: 0.8rem;
            stroke: #9ca3af;
            stroke-width: 2;
            transition: transform 0.3s ease;
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: -1rem;
            background-color: var(--white);
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            min-width: 220px;
            z-index: 60;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            padding: 0.5rem 0;
        }
        .nav-menu > li:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-menu > li:hover > .nav-link .dropdown-arrow {
            transform: rotate(180deg);
            stroke: var(--teal);
        }
        .dropdown-menu li a {
            display: block;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .dropdown-menu li a:hover {
            background-color: var(--light-gray);
            color: var(--teal);
        }

        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
        }
        .mobile-menu-btn svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--navy-blue);
        }
        .mobile-menu {
            display: none;
            background-color: white;
            border-top: 1px solid var(--border-color);
            position: absolute;
            width: 100%;
            left: 0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .mobile-menu.active {
            display: block;
        }
        .mobile-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            color: var(--text-dark);
        }
        .mobile-menu a:hover {
            background-color: #f8fafc;
            color: var(--teal);
        }
        .mobile-menu .btn-wrapper {
            padding: 1rem;
        }
        
        /* New Mobile Dropdown Styles */
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            text-align: left;
            cursor: pointer;
            color: var(--text-dark);
            font-family: inherit;
        }
        .mobile-dropdown-toggle:hover {
            background-color: #f8fafc;
            color: var(--teal);
        }
        .mobile-dropdown-toggle .dropdown-arrow {
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s ease;
        }
        .mobile-dropdown-menu {
            display: none;
            background-color: #f1f5f9;
            padding: 0.5rem 0;
        }
        .mobile-dropdown-menu.active {
            display: block;
        }
        .mobile-dropdown-menu li a {
            padding-left: 2.5rem;
            font-size: 0.85rem;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            text-align: center;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.10);
        }
        .btn:active {
            transform: scale(0.97);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn-teal { background-color: var(--teal); color: white; }
        .btn-teal:hover { background-color: #00737a; }
        .btn-white { background-color: var(--white); color: var(--text-dark); border-color: var(--border-color); }
        .btn-white:hover { background-color: #f8fafc; }
        .btn-navy { background-color: var(--navy-blue); color: var(--white); }
        .btn-navy:hover { background-color: #1a2238; }

        /* General Section Styling */
        .section {
            padding: 6rem 0;
        }
        .section-light {
            background-color: var(--light-gray);
        }
        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--navy-blue);
            text-align: center;
        }
        .section-subtitle {
            margin-top: 1rem;
            color: var(--text-light);
            max-width: 650px;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }
        .section-header {
            margin-bottom: 4rem;
        }
        .section-header .divider {
            width: 6rem;
            height: 4px;
            background-color: var(--teal);
            margin-top: 0.5rem;
            border-radius: 2px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- Page Specific Styles --- */
        
        /* Submission Hero */
        .submission-hero {
            padding-top: 10rem;
            padding-bottom: 6rem;
            background-color: var(--light-gray);
            border-bottom: 1px solid var(--border-color);
            text-align: center;
        }
        .submission-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--navy-blue);
            line-height: 1.2;
        }
        .submission-hero p {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 1.5rem auto 2rem;
        }

        /* Content Wrapper */
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        /* Main Content Area */
        .content-main h2, .content-main h3 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--navy-blue);
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--border-color);
        }
        .content-main p, .content-main li {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        .content-main ul {
            list-style: disc;
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .content-main section {
            margin-bottom: 3rem;
        }

        /* Sidebar Card */
        .sidebar {
            position: sticky;
            top: 7rem; /* Header height + buffer */
        }
        .sidebar-card {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }
        .sidebar-card-header {
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .sidebar-card-header h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--navy-blue);
            margin: 0;
            padding: 0;
            border: none;
        }
        .sidebar-card-body {
            padding: 1.5rem;
        }
        .sidebar-card-body p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }
        .sidebar-card-body .btn {
            width: 100%;
        }
        /* Sidebar Deadlines List */
        .deadlines-list-sidebar {
            list-style: none;
            padding: 0;
        }
        .deadlines-list-sidebar li {
            display: flex;
            flex-direction: column;
            padding: 0.75rem 0;
            border-bottom: 1px dashed var(--border-color);
        }
        .deadlines-list-sidebar li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .deadlines-list-sidebar strong {
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
        }
        .deadlines-list-sidebar span {
            color: var(--teal);
            font-weight: 500;
            font-size: 0.9rem;
        }

        /* Step-by-step list */
        .step-list {
            list-style: none;
            padding-left: 0;
            counter-reset: step-counter;
        }
        .step-list li {
            position: relative;
            padding-left: 3rem;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            color: var(--text-dark);
        }
        .step-list li::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: -0.25rem;
            width: 2.25rem;
            height: 2.25rem;
            background-color: var(--teal);
            color: var(--white);
            font-weight: 700;
            font-size: 1.25rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }
        .step-list li strong {
            display: block;
            font-weight: 600;
            color: var(--navy-blue);
        }
        
        /* Why Submit Grid */
        .why-submit-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .why-card {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }
        .why-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
        }
        .why-card .icon-wrapper {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            background-color: var(--light-gray);
            color: var(--teal);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        .why-card .icon-wrapper svg {
            width: 2rem;
            height: 2rem;
        }
        .why-card h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--navy-blue);
            margin-bottom: 0.5rem;
        }
        .why-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 0;
        }
        
        /* Accordion Styles */
        .accordion-item {
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .accordion-item:last-child {
            margin-bottom: 0;
        }
        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            background-color: var(--white);
            border-bottom: 1px solid var(--border-color);
        }
        .accordion-item.active .accordion-header {
            background-color: #fdfdfd;
        }
        .accordion-header h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--navy-blue);
            margin: 0;
        }
        .accordion-toggle {
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s ease;
            color: var(--teal);
            stroke-width: 3;
        }
        .accordion-item.active .accordion-toggle {
            transform: rotate(180deg);
        }
        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            background-color: var(--white);
        }
        .accordion-body-content {
            padding: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        .accordion-body-content p {
            margin-bottom: 0;
        }

        /* --- UPDATED FOOTER STYLES --- */
        .footer {
            background-color: #1a2035; /* Darker navy from image */
            color: var(--white);
            padding: 3rem 0;
            font-size: 0.9rem;
        }
        
        .footer-top {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-inquiry-text {
            color: #e2e8f0;
            line-height: 1.6;
            flex: 1;
        }
        
        .footer-contact-info {
            text-align: left;
            flex-shrink: 0;
        }
        
        .footer-contact-info p {
            margin-bottom: 0.25rem;
            color: #e2e8f0;
            font-size: 1rem;
        }
        
        .footer-divider {
            height: 1px;
            background-color: rgba(255, 255, 255, 0.1);
            width: 100%;
            margin-bottom: 2rem;
        }
        
        .footer-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        
       
        /* Partner Logos Section */
        .partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .partners-grid img {
            height: 3rem; /* 48px */
            width: auto;
            /* Invert brightness to make logos white/light gray to match theme */
            filter: brightness(0) invert(1);
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        .partners-grid img:hover {
            opacity: 1;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: none; 
            padding-top: 1rem;
            text-align: center;
            font-size: 0.875rem;
            color: #9ca3af; /* gray-400 */
        }

        /* On-Scroll Animation */
        .animate-on-scroll {
            opacity: 0;
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .fade-in-up { transform: translateY(2rem); }
        .is-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Media Queries */
        @media (min-width: 768px) {
            .nav-menu { display: flex; }
            .mobile-menu-btn { display: none; }
            .header-btn { display: block; }
            .content-wrapper { grid-template-columns: 2fr 1fr; }
            .why-submit-grid { grid-template-columns: repeat(3, 1fr); }
            
            /* Footer Grid */
            .footer-top {
                flex-direction: row;
                align-items: center; 
            }
            .footer-inquiry-text {
                max-width: 60%;
            }
            .footer-contact-info {
                text-align: right;
            }
        }
        @media (min-width: 1024px) {
            .footer-logos {
                justify-content: space-between;
                padding: 0 2rem;
            }
        }

    


               /* CSS Variables for consistent theming */
        :root {
            --navy-blue: #212A45;
            --teal: #008C96;
            --turquoise: #3DCCC7;
            --light-gray: #F5F7FA;
            --white: #FFFFFF;
            --text-dark: #334155;
            --text-light: #64748b;
            --border-color: #e2e8f0;
        }

        /* Basic Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        /* Header and Navigation */
        #header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 50;
            transition: all 0.3s ease-in-out;
            border-bottom: 1px solid transparent;
        }
        #header.scrolled {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid var(--border-color);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
        }
        .logo img {
            height: 2.5rem; /* 40px */
        }
        .nav-menu {
            display: none;
            gap: 2rem;
            list-style: none;
        }
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.5rem 0;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--teal);
        }
        .nav-menu > li {
            position: relative;
        }
        .nav-link .dropdown-arrow {
            width: 0.8rem;
            height: 0.8rem;
            stroke: #9ca3af;
            stroke-width: 2;
            transition: transform 0.3s ease;
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: -1rem;
            background-color: var(--white);
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            min-width: 220px;
            z-index: 60;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            padding: 0.5rem 0;
        }
        .nav-menu > li:hover > .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .nav-menu > li:hover > .nav-link .dropdown-arrow {
            transform: rotate(180deg);
            stroke: var(--teal);
        }
        .dropdown-menu li a {
            display: block;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .dropdown-menu li a:hover {
            background-color: var(--light-gray);
            color: var(--teal);
        }

        /* Mobile Menu Styles */
        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
        }
        .mobile-menu-btn svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--navy-blue);
        }
        .mobile-menu {
            display: none;
            background-color: white;
            border-top: 1px solid var(--border-color);
            position: absolute;
            width: 100%;
            left: 0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .mobile-menu.active {
            display: block;
        }
        .mobile-menu a {
            display: block;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            color: var(--text-dark);
        }
        .mobile-menu a:hover {
            background-color: #f8fafc;
            color: var(--teal);
        }
        .mobile-menu .btn-wrapper {
            padding: 1rem;
        }
        
        /* New Mobile Dropdown Styles */
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            background: none;
            border: none;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            text-align: left;
            cursor: pointer;
            color: var(--text-dark);
            font-family: inherit;
        }
        .mobile-dropdown-toggle:hover {
            background-color: #f8fafc;
            color: var(--teal);
        }
        .mobile-dropdown-toggle .dropdown-arrow {
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s ease;
        }
        .mobile-dropdown-menu {
            display: none;
            background-color: #f1f5f9;
            padding: 0.5rem 0;
        }
        .mobile-dropdown-menu.active {
            display: block;
        }
        .mobile-dropdown-menu li a {
            padding-left: 2.5rem;
            font-size: 0.85rem;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 500;
            text-align: center;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15), 0 3px 6px rgba(0,0,0,0.10);
        }
        .btn:active {
            transform: scale(0.97);
            box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
        }
        .btn-teal { background-color: var(--teal); color: white; }
        .btn-teal:hover { background-color: #00737a; }
        .btn-white { background-color: var(--white); color: var(--text-dark); border-color: var(--border-color); }
        .btn-white:hover { background-color: #f8fafc; }
        .btn-navy { background-color: var(--navy-blue); color: var(--white); }
        .btn-navy:hover { background-color: #1a2238; }

        /* Footer Styles from provided CSS */
        .footer {
            background-color: var(--navy-blue);
            color: var(--white);
            padding-top: 3rem;
        }
        .footer-content {
            display: grid;
            gap: 2rem;
            align-items: flex-start; /* Align to top */
            padding-bottom: 2rem;
        }
        
        /* Left side text */
        .footer-info {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #e2e8f0;
            max-width: 600px;
        }

        /* Right side contact */
        .footer-contact {
            text-align: left;
        }
        .footer-contact a, .footer-contact p {
            display: block;
            color: #e2e8f0;
            font-size: 1rem;
            margin-bottom: 0.5rem;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-contact a:hover {
            color: var(--turquoise);
        }
        
        /* Partner Logos Section */
        .partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .partners-grid img {
            height: 3rem; /* 48px */
            width: auto;
            /* Invert brightness to make logos white/light gray to match theme */
            filter: brightness(0) invert(1);
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        .partners-grid img:hover {
            opacity: 1;
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: none; 
            padding-top: 1rem;
            text-align: center;
            font-size: 0.875rem;
            color: #9ca3af; /* gray-400 */
        }


        /* Responsive Media Queries */
        @media (min-width: 768px) {
            .nav-menu { display: flex; }
            .mobile-menu-btn { display: none; }
            .header-btn { display: block; }
            
            /* Footer Grid: Text Left, Contact Right */
            .footer-content { 
                grid-template-columns: 2fr 1fr; 
            }
            .footer-contact { 
                text-align: right; 
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                justify-content: center;
                height: 100%;
            }
            
            .hero-content { grid-template-columns: repeat(12, 1fr); }
            .hero-text { grid-column: span 7; }
            .hero-card { grid-column: span 5; }
            .hero-text h1 { font-size: 3.75rem; }
            .hero-details { flex-direction: row; }

            .info-section-grid { grid-template-columns: repeat(12, 1fr); }
            .info-content { grid-column: span 7; }
            .dates-column { grid-column: span 5; }

            .recap-header .swiper-navigation { display: flex; gap: 0.5rem; }
            .swiper-navigation .swiper-button-next, .swiper-navigation .swiper-button-prev {
                position: static;
                width: 44px;
                height: 44px;
            }

            .footer-content { grid-template-columns: 1fr 1fr; }
            .footer-contact { text-align: right; }
        }

        /* --- Animation Keyframes --- */

        /* Float/Breathe animation */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        /* Slide-in-from-bottom animation */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Fade-in animation */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* --- Animation Classes --- */

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        /* Class to hide elements before animation */
        .hidden-for-animation {
            opacity: 0;
        }

        /* Class to apply the slide-in animation */
        .animate-slide-in {
            animation: slideInUp 1s ease-out forwards;
        }
        
        .animate-fade-in {
            animation: fadeIn 1.5s ease-out forwards;
        }

        /* --- Image Pan/Zoom on Hover --- */
        
        /* Container to clip the image */
        .image-pan-container {
            overflow: hidden;
            border-radius: 0.5rem; /* rounded-lg */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
        }

        /* The image itself */
        .image-pan-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform-origin: center;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
        }

        /* Apply zoom (scale) on hover */
        .image-pan-container:hover img {
            transform: scale(1.1);
        }

        /* --- Transparent Header on Scroll --- */
        .header-transparent {
            background-color: rgba(255, 255, 255, 0);
            backdrop-filter: blur(0);
            transition: background-color 0.3s ease-out, backdrop-filter 0.3s ease-out;
        }
        
        .header-scrolled {
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }
        
        /* Custom underline animation for nav links */
        .nav-link {
            position: relative;
            text-decoration: none;
            color: #374151; /* gray-700 */
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: #111827; /* gray-900 */
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: #0d9488; /* teal-600 */
            transform-origin: bottom right;
            transition: transform 0.3s ease-out;
        }

        .nav-link:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }
            