        :root {
            --primary: #1b5e20;
            /* Deep Forest Green */
            --secondary: #4caf50;
            /* Fresh Green */
            --accent: #c8e6c9;
            /* Light Leaf */
            --earth: #8d6e63;
            /* Soil tone */
            --text-main: #1a1a1a;
            --text-light: #5f6f65;
            --bg-light: #f4f8f5;
            --white-glass: rgba(255, 255, 255, 0.75);
            --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.08);
            --transition: all 0.4s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-main);
            line-height: 1.7;
            overflow-x: hidden;
        }


        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 0.5rem 0;
            transition: var(--transition);
        }

        .nav-container {
            width: 100%;
            padding: 0 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text .brand {
            font-size: 1.2rem;
            font-weight: 900;
            color: var(--primary);
            line-height: 1;
        }

        .logo-text .dept {
            font-size: 0.75rem;
            color: var(--text-light);
            font-weight: 600;
            letter-spacing: 1px;
        }


        .nav-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            /* Align to right */
            width: 100%;
            padding-left: 2rem;
            position: relative;
        }

        .nav-row {
            display: flex;
            list-style: none;
            gap: 1rem;
            margin-bottom: 0;
            width: 100%;
            justify-content: flex-end;

            align-items: center;
        }

        .nav-row.bottom {
            display: none;

            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            gap: 1.5rem;
            margin-top: 0.5rem;
        }

        .nav-row.bottom.active {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }


        @media (min-width: 1101px) {
            .nav-wrapper:has(.nav-row.top .nav-item:hover) .nav-row.bottom.active {
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
            }

        }


        .desktop-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(7, 74, 134, 0.1);
            color: var(--primary);
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            margin-left: 0.5rem;
            border: 1px solid rgba(7, 74, 134, 0.1);
        }

        .desktop-toggle:hover {
            background: var(--primary);
            color: white;
        }

        .desktop-toggle.active i {
            transform: rotate(180deg);
        }


        @media (max-width: 1100px) {
            .nav-container {
                padding: 0 1.5rem;
            }

            .mobile-toggle {
                display: flex !important;
                align-items: center;
                justify-content: center;
                z-index: 1001;
                width: 40px;
                height: 40px;
                border-radius: 8px;
                transition: var(--transition);
                color: var(--primary);
                font-size: 30px;

                line-height: 1;
            }

            .desktop-toggle {
                display: none;
            }

            .nav-wrapper {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                transition: right 0.3s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                padding: 80px 1rem 2rem;
                overflow-y: auto;
            }

            .nav-wrapper.active {
                right: 0;
            }

            .nav-row {
                display: grid !important;
                grid-template-columns: 1fr 1fr;
                gap: 0.75rem !important;
                width: 100% !important;
                margin-bottom: 0;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
            }

            .nav-row.bottom {
                margin-top: 0.75rem;
            }


            .nav-item {
                transition: opacity 0.2s ease;
            }


            .nav-wrapper:has(.nav-item:hover) .nav-item:not(:hover) {
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
            }

            .nav-item:hover {

                z-index: 10;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding: 0.5rem 0 0.5rem 1.5rem;
                display: none;
                min-width: auto;
                width: 100%;
                border: none;
                background: transparent;
            }


            .nav-item:hover .dropdown,
            .nav-item:focus-within .dropdown {
                display: block;
            }


            .nav-item:hover .nav-link {
                background: rgba(7, 74, 134, 0.08);
                color: var(--primary);
            }

            .nav-link {
                justify-content: center;
                width: 100%;
                text-align: center;
                background: rgba(7, 74, 134, 0.03);
            }
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--text-main);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            padding: 0.6rem 0.8rem;
            border-radius: 8px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-link:hover {
            background: rgba(7, 74, 134, 0.05);
            color: var(--primary);
        }

        /* Dropdown */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 240px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            padding: 0.75rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown a {
            display: block;
            padding: 0.6rem 1rem;
            color: var(--text-main);
            text-decoration: none;
            font-size: 0.85rem;
            border-radius: 6px;
            transition: var(--transition);
        }

        .dropdown a:hover {
            background: var(--bg-light);
            color: var(--primary);
            padding-left: 1.25rem;
        }

        .mobile-toggle {
            display: none;
            color: var(--primary);
            cursor: pointer;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: var(--transition);
        }

        .mobile-toggle:hover {
            background: rgba(7, 74, 134, 0.1);
        }


        .slider-controls {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .nav-btn {
            width: 45px;
            height: 45px;
            border: 1px solid #e2e8f0;
            background: white;
            border-radius: 4px;
            /* Square with slight radius */
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            color: var(--text-main);
        }

        .nav-btn:hover {
            border-color: var(--text-main);
            background: var(--bg-light);
        }

        .nav-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

        .progress-bar {
            flex-grow: 1;

            max-width: 200px;

            height: 2px;
            background: #e2e8f0;
            position: relative;
            border-radius: 1px;
        }

        .progress-fill {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            background: black;
            width: 33%;
            /* Start at 1/3 */
            transition: width 0.3s ease, left 0.3s ease;
        }


        @media (min-width: 1025px) {
            .slider-controls {
                display: none !important;
            }

            .programs-track {
                transform: none !important;

                justify-content: center;
                flex-wrap: wrap;
            }

            .program-card {
                flex: 0 0 calc(33.333% - 2rem);
            }
        }



        footer {
            background: #050505;
            color: white;
            padding: 5rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2.5rem;
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Advanced Premium Hero Section Styling */
        .hero {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 0 100px;
            /* Clean left alignment */
        }

        .hero-video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: subtleZoom 22s infinite alternate ease-in-out;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Cinematic left-to-right gradient with smoother transition stops */
            background: linear-gradient(to right,
                    rgba(0, 10, 0, 0.88) 0%,
                    rgba(0, 10, 0, 0.75) 25%,
                    rgba(0, 10, 0, 0.45) 50%,
                    rgba(0, 10, 0, 0.1) 75%,
                    transparent 100%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 750px;
            opacity: 0;
            transform: translateY(15px);
            /* Slower animation with a slight delay for a designed feel */
            animation: premiumFadeIn 2s 0.3s forwards cubic-bezier(0.22, 1, 0.36, 1);
        }

        .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(3rem, 7vw, 5rem);
            font-weight: 900;
            line-height: 1.05;
            color: #ffffff;
            margin-bottom: 2.2rem;
            /* Fine-tuned spacing */
            letter-spacing: -0.03em;
            /* Refined diffused shadow for a premium feel */
            text-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
        }

        .hero h1 span {
            /* Brighter, yet natural green accent */
            color: #dcedc8;
            display: block;
            /* Subtle soft highlight/glow effect */
            text-shadow: 0 0 20px rgba(220, 237, 200, 0.25), 0 4px 25px rgba(0, 0, 0, 0.35);
        }

        .hero p {
            font-size: clamp(1.1rem, 1.6vw, 1.3rem);
            color: rgba(255, 255, 255, 0.95);
            max-width: 600px;
            /* Optimal width for readability */
            margin-bottom: 3.8rem;
            line-height: 1.75;
            font-weight: 300;
            letter-spacing: 0.3px;
            /* Soft diffused depth for clarity over bright areas */
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.2rem;
            gap: 0.75rem;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 50px;
            /* Smoother transition timing */
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            cursor: pointer;
            letter-spacing: 0.8px;
        }

        .btn-primary {
            /* Richer, vibrant green with a very subtle gradient */
            background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
            color: white;
            border: none;
            /* Softer floating shadow effect */
            box-shadow: 0 6px 20px rgba(46, 125, 50, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 35px rgba(46, 125, 50, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            /* Increased border opacity for better contrast */
            border: 1px solid rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            /* Subtle light tint on hover */
            background: rgba(220, 237, 200, 0.08);
            border-color: #dcedc8;
            color: #dcedc8;
            transform: translateY(-4px);
        }

        @keyframes premiumFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes subtleZoom {
            from {
                transform: scale(1);
            }

            to {
                transform: scale(1.06);
            }
        }

        /* Mobile Adjustments for Hero */
        @media (max-width: 768px) {
            .hero {
                padding: 0 2rem;
                justify-content: center;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.1rem;
                margin-bottom: 2.5rem;
                max-width: 100%;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                gap: 1.2rem;
            }

            .btn {
                width: 100%;
            }
        }

        /* History, Vision & Mission Section */
        /* History, Vision & Mission Section */
        .history-vision-section {
            background: linear-gradient(135deg, #f1f8f1 0%, #ffffff 40%, #f7faf7 70%, #ffffff 100%);
            overflow: hidden;
            border-top: 1px solid rgba(165, 214, 167, 0.15);
        }

        .segment-padding {
            padding: 2rem 2rem 3rem 2rem;
        }

        .vm-segment {
            background: linear-gradient(to bottom, #ffffff 0%, #f9fbf9 100%);
            border-top: 1px solid rgba(165, 214, 167, 0.1);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.5rem, 5vw, 3.2rem);
            font-weight: 800;
            color: #1b5e20;
            margin-bottom: 1.2rem;
            position: relative;
            display: inline-block;
            letter-spacing: -0.02em;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3.5px;
            background: linear-gradient(to right, #a5d6a7, #81c784);
            border-radius: 10px;
        }

        .history-grid {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 7rem;
            align-items: flex-start;
        }

        .history-text {
            color: #1a1a1a;
            line-height: 2;
            font-size: 1.15rem;
            background: rgba(255, 255, 255, 0.5);
            padding: 1rem 0;
            border-radius: 20px;
            max-width: 650px;
        }

        .history-text p {
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .genesis-card {
            background: linear-gradient(145deg, rgba(232, 245, 233, 0.4) 0%, rgba(255, 255, 255, 0.7) 100%);
            padding: 3rem 3.5rem;
            border-radius: 24px;
            box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.6),
                0 20px 50px rgba(0, 0, 0, 0.05),
                0 1px 3px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(46, 125, 50, 0.15);
            /* Soft outer border */
            border-top: 4px solid #2e7d32;
            /* Deep green top accent by default */
            backdrop-filter: blur(12px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .genesis-card:hover {
            transform: translateY(-8px);
            box-shadow: inset 0 2px 15px rgba(255, 255, 255, 0.8),
                0 30px 60px rgba(0, 0, 0, 0.08);
            border-top-color: #2e7d32;
            /* Darker green on hover */
        }

        .genesis-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .genesis-title h3 {
            font-size: 1.8rem;
            color: #2e7d32;
            margin-bottom: 0.5rem;
            font-weight: 800;
            letter-spacing: -0.01em;
        }

        .genesis-title p {
            color: #6b7280;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .timeline {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 25px;
            top: 10px;
            bottom: 10px;
            width: 2.5px;
            background: linear-gradient(to bottom, #a5d6a7, #c8e6c9, #a5d6a7);
            border-radius: 10px;
        }

        .timeline-item {
            display: flex;
            gap: 2rem;
            position: relative;
            padding-left: 0;
            padding-bottom: 2.2rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        /* Premium Expansion Animation */
        .timeline-extra {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease,
                transform 0.5s ease;
        }

        .timeline-extra.active {
            max-height: 1200px;
            opacity: 1;
            transform: translateY(0);
            padding-top: 2.2rem;
        }

        .mission-extra {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transform: translateY(15px);
            transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease,
                transform 0.4s ease;
        }

        .mission-extra.active {
            max-height: 600px;
            opacity: 1;
            transform: translateY(0);
            padding-top: 1.5rem;
        }

        .timeline-icon {
            width: 52px;
            height: 52px;
            background: #2e7d32;
            border: 2px solid #2e7d32;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            z-index: 1;
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 6px 15px rgba(46, 125, 50, 0.2);
        }

        .timeline-item:hover .timeline-icon {
            transform: scale(1.18);
            box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
            background: #1b5e20;
            border-color: #1b5e20;
        }

        .milestone-year {
            display: inline-block;
            background: #e8f5e9;
            color: #1b5e20;
            padding: 0.25rem 0.9rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
            border: 1px solid rgba(165, 214, 167, 0.4);
        }

        .timeline-content h4 {
            font-size: 1.15rem;
            color: #1b5e20;
            margin-bottom: 0.3rem;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .timeline-content p {
            color: #374151;
            font-size: 1rem;
            line-height: 1.6;
        }

        .btn-toggle-wrapper {
            text-align: center;
            margin-top: 2rem;
        }

        .btn-toggle {
            background: rgba(232, 245, 233, 0.4);
            color: #1b5e20;
            border: 1.5px solid #a5d6a7;
            padding: 0.75rem 2.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            position: relative;
            overflow: hidden;
        }

        .btn-toggle:hover {
            background: #2e7d32;
            color: #ffffff;
            border-color: #2e7d32;
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(46, 125, 50, 0.15);
        }

        /* Vision & Mission Cards */
        .v-m-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .v-m-card {
            padding: 2.5rem 2rem;
            border-radius: 20px;
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.5),
                0 20px 50px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(46, 125, 50, 0.12);
            border-left: 5px solid #2e7d32;
            /* Deep green left accent by default */
        }

        .v-m-card.vision {
            background: linear-gradient(145deg, rgba(200, 230, 201, 0.4) 0%, rgba(255, 255, 255, 0.7) 100%);
        }

        .v-m-card.mission {
            background: linear-gradient(145deg, rgba(243, 244, 246, 0.5) 0%, rgba(255, 255, 255, 0.7) 100%);
        }

        .v-m-card:hover {
            transform: translateY(-10px);
            box-shadow: inset 0 2px 15px rgba(255, 255, 255, 0.7),
                0 35px 70px rgba(0, 0, 0, 0.1);
            border-left-color: #2e7d32;
            border-color: rgba(46, 125, 50, 0.25);
        }

        .v-m-icon-box {
            width: 56px;
            height: 56px;
            background: #2e7d32;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: #ffffff;
            box-shadow: 0 10px 25px rgba(46, 125, 50, 0.2);
            transition: all 0.4s ease;
        }

        .v-m-card:hover .v-m-icon-box {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 15px 35px rgba(46, 125, 50, 0.25);
            background: #1b5e20;
        }

        .v-m-card h3 {
            font-size: 1.6rem;
            color: #1b5e20;
            margin-bottom: 1rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .v-m-card p,
        .v-m-card li {
            color: #1a1a1a;
            line-height: 1.85;
            font-size: 1.05rem;
            font-weight: 400;
        }

        .v-m-card ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .v-m-card li {
            position: relative;
            padding-left: 2rem;
        }

        .v-m-card li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #2e7d32;
            font-weight: 900;
            opacity: 0.8;
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 1024px) {

            .history-grid,
            .v-m-grid {
                grid-template-columns: 1fr !important;
                gap: 2.5rem;
            }

            .segment-padding {
                padding: 30px 1.5rem 40px 1.5rem !important;
                /* Added 40px bottom padding for breathing room */
            }

            .section-header {
                margin-bottom: 2.5rem;
            }

            .history-text {
                padding: 1rem 0 0 0;
                max-width: 100%;
            }

            .history-text p:last-child {
                margin-bottom: 0;
            }

            .v-m-card {
                padding: 3rem 2rem;
            }

            .genesis-card {
                padding: 2.5rem 1.8rem;
            }

            .history-grid {
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .genesis-card {
                padding: 2rem 1.5rem;
            }
        }

        /* About / Why Choose Us Section */
        .about-section {
            background: linear-gradient(135deg, #f9fbf9 0%, #ffffff 100%);
            overflow: hidden;
            border-top: 1px solid rgba(165, 214, 167, 0.1);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 7rem;
            align-items: center;
        }

        .visual-composition {
            position: relative;
            padding: 40px 0;
        }

        .main-image-wrapper {
            width: 88%;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .main-image-wrapper img {
            width: 100%;
            height: 680px;
            /* Increased height for better alignment */
            object-fit: cover;
            display: block;
        }

        .overlap-image-wrapper {
            position: absolute;
            bottom: -20px;
            right: -30px;
            width: 58%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
            z-index: 2;
        }

        .overlap-image-wrapper img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            display: block;
        }

        .visual-badge {
            position: absolute;
            top: 20px;
            left: -20px;
            background: #1b5e20;
            color: white;
            padding: 1.2rem 1.5rem;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(27, 94, 32, 0.3);
            z-index: 3;
            text-align: center;
            animation: floatBadge 6s ease-in-out infinite;
        }

        @keyframes floatBadge {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .visual-badge span {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            opacity: 0.9;
        }

        .visual-badge strong {
            display: block;
            font-size: 1.5rem;
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
        }

        .content-label {
            display: inline-block;
            color: #2e7d32;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.2rem;
            position: relative;
            padding-left: 45px;
        }

        .content-label::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 35px;
            height: 2px;
            background: #2e7d32;
        }

        .about-heading {
            font-size: clamp(2rem, 4vw, 2.8rem);
            line-height: 1.15;
            color: #1a1a1a;
            margin-bottom: 2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .about-intro {
            font-size: 1.15rem;
            line-height: 1.8;
            color: #374151;
            margin-bottom: 1.8rem;
        }

        .about-intro mark {
            background: transparent;
            color: #1b5e20;
            font-weight: 700;
        }

        .about-secondary-text {
            color: #6b7280;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            font-size: 1.05rem;
        }

        .feature-cards-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .feature-card {
            background: linear-gradient(145deg, rgba(232, 245, 233, 0.4) 0%, rgba(255, 255, 255, 0.7) 100%);
            padding: 2rem;
            border-radius: 20px;
            border-left: 5px solid #2e7d32;
            box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.5), 0 15px 35px rgba(0, 0, 0, 0.03);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: inset 0 2px 15px rgba(255, 255, 255, 0.7), 0 25px 50px rgba(0, 0, 0, 0.06);
            border-left-color: #1b5e20;
        }

        .feature-icon-box {
            width: 48px;
            height: 48px;
            background: #2e7d32;
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon-box {
            transform: rotate(10deg) scale(1.1);
        }

        .feature-card h4 {
            font-size: 1.15rem;
            color: #1b5e20;
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .feature-card p {
            font-size: 0.95rem;
            color: #4b5563;
            line-height: 1.6;
        }

        .about-bullets {
            list-style: none;
            display: grid;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .about-bullet {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            color: #374151;
            font-weight: 500;
            font-size: 1.05rem;
        }

        .about-bullet::before {
            content: '';
            width: 8px;
            /* Small square */
            height: 8px;
            /* Small square */
            background: #1b5e20;
            margin-top: 10px;
            /* Aligned with text */
            flex-shrink: 0;
            border-radius: 2px;
            /* Slight roundness for premium feel */
        }

        .about-cta-row {
            display: flex;
            align-items: center;
            gap: 3rem;
        }



        /* Why Join Section */
        .why-join-segment {
            padding: 1rem 0 6rem 0;
            background: #ffffff;
            position: relative;
        }

        .why-join-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .why-join-header h3 {
            font-size: 2.2rem;
            color: #1b5e20;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .why-join-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .join-mini-card {
            background: #1b5e20;
            /* Deep green */
            padding: 2.5rem;
            border-radius: 24px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .join-mini-card:hover {
            transform: translateY(-12px);
            background: #1b5e20;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.25);
        }

        /* Text colors for join cards (handled below in specific blocks to avoid overrides) */

        .join-icon-circle {
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, 0.15);
            /* Semi-transparent white bg for icon */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.8rem auto;
            color: #ffffff;
            /* White icon */
            transition: all 0.4s ease;
        }

        .join-mini-card:hover .join-icon-circle {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            transform: scale(1.1) rotateY(180deg);
        }

        .join-mini-card h4 {
            font-size: 1.3rem;
            color: #ffffff;
            /* Forced white for readability */
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .join-mini-card p {
            font-size: 1rem;
            line-height: 1.65;
            color: #ffffff;
            /* Forced white for readability */
            opacity: 0.9;
        }

        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 5rem;
            }

            .main-image-wrapper {
                width: 100%;
                transform: none;
            }

            .about-cta-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 2rem;
            }

            .why-join-grid {
                grid-template-columns: 1fr;
            }

            .visual-composition {
                padding-bottom: 60px;
            }

            .overlap-image-wrapper {
                right: 0;
                bottom: 0;
            }
        }

        /* Excellence Section with Curved Background */
        .excellence-section {
            position: relative;
            background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
            color: white;
            overflow: hidden;
            padding-bottom: 120px;
            /* Space for wave */
        }

        .excellence-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .excellence-heading {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.2rem, 4.5vw, 3.2rem);
            font-weight: 800;
            margin-bottom: 3.5rem;
            line-height: 1.15;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

        .excellence-text-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            /* Center-align text with image */
            font-size: 1.15rem;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.92);
        }

        .excellence-text-grid p {
            margin-bottom: 2rem;
            font-weight: 400;
        }

        /* Vertical Image Styling */
        .excellence-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .vertical-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 450px;
            height: 650px;
            /* Vertical view */
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .vertical-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .vertical-image-wrapper:hover img {
            transform: scale(1.05);
        }

        .image-label {
            position: absolute;
            bottom: 30px;
            left: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            padding: 1.5rem;
            border-radius: 20px;
            color: white;
            font-weight: 700;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 2;
        }

        .image-label span {
            display: block;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.8;
            margin-bottom: 4px;
        }

        .excellence-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 160px;
            line-height: 0;
            z-index: 3;
        }


        .excellence-wave svg {
            width: 100%;
            height: 100%;
        }

        .blob-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .blob-bg::before,
        .blob-bg::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.04);
            filter: blur(100px);
            border-radius: 50%;
            animation: floatBlob 25s infinite alternate ease-in-out;
        }

        .blob-bg::before {
            top: -150px;
            right: -100px;
        }

        .blob-bg::after {
            bottom: 0;
            left: -150px;
            animation-delay: -7s;
            width: 600px;
            height: 600px;
            background: rgba(165, 214, 167, 0.06);
        }

        @keyframes floatBlob {
            0% {
                transform: translate(0, 0) scale(1) rotate(0deg);
            }

            100% {
                transform: translate(80px, 60px) scale(1.15) rotate(15deg);
            }
        }

        @media (max-width: 1100px) {
            .excellence-text-grid {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .excellence-heading {
                margin-bottom: 2.5rem;
            }
        }

        /* Research & Innovation Section */
        .research-section {
            position: relative;
            background: linear-gradient(180deg, #f1f8f3 0%, #ffffff 100%);
            padding: 40px 0;
            overflow: hidden;
        }

        .research-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1.2fr 0.9fr 0.9fr;
            gap: 2.5rem;
            align-items: start;
        }

        .research-header {
            margin-bottom: 3rem;
        }

        .research-header .content-label {
            color: #2e7d32;
            margin-bottom: 1.5rem;
            display: inline-block;
            background: rgba(46, 125, 50, 0.1);
            padding: 0.5rem 1.2rem 0.5rem 3.2rem;
            /* Increased left padding for the line */
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-left: 0;
        }

        .research-header h2 {
            font-size: 2.7rem;
            line-height: 1.2;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .research-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #1b5e20;
            color: white;
            padding: 1.1rem 2.2rem;
            border-radius: 100px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            box-shadow: 0 10px 25px rgba(27, 94, 32, 0.15);
        }

        .research-cta:hover {
            background: #123e15;
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(27, 94, 32, 0.25);
        }

        .research-card {
            background: linear-gradient(145deg, #ffffff 0%, #f4f9f4 100%);
            padding: 3rem 2.5rem;
            border-radius: 80px 0 80px 80px;
            /* Refined Petal shape */
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            border: 1px solid rgba(0, 0, 0, 0.02);
            position: relative;
            margin-bottom: 2.5rem;
        }

        .research-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
        }

        .research-card.highlight-card {
            background: #1b5e20;
            color: white;
            z-index: 2;
            box-shadow: 0 25px 60px rgba(27, 94, 32, 0.25);
            border: none;
            padding: 3.5rem 2.5rem;
        }

        .research-card.highlight-card:hover {
            transform: scale(1.03) translateY(-12px);
        }

        /* No icon styling as icons are removed */
        .research-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            font-weight: 700;
            line-height: 1.3;
        }

        .highlight-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
        }

        .research-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #4b5563;
        }

        .highlight-card p {
            color: rgba(255, 255, 255, 0.9);
        }

        .highlight-card ul {
            list-style: none;
            padding: 0;
            margin-top: 1.5rem;
        }

        .highlight-card li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 0.8rem;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .highlight-card li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #c8e6c9;
            font-size: 1.5rem;
            line-height: 1;
        }

        /* 3-Column Staggered Alignment */
        .research-column:nth-child(2) {
            margin-top: 120px;
        }

        .research-column:nth-child(3) {
            margin-top: 40px;
        }

        /* Collaborators */
        .collaborators-section {
            margin-top: 40px;
            padding-bottom: 0px;
            text-align: center;
        }

        .collaborators-title {
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #4b4d50;
            margin-bottom: 2.5rem;
            font-weight: 600;
        }

        .partner-pills {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .partner-pill {
            background: #ffffff;
            padding: 0.7rem 1.8rem;
            border-radius: 100px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #1b5e20;
            box-shadow: 0 4px 12px rgba(27, 94, 32, 0.05);
            border: 1px solid #2e7d32;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .partner-pill:hover {
            transform: scale(1.05) translateY(-3px);
            box-shadow: 0 8px 20px rgba(27, 94, 32, 0.15);
        }

        @media (max-width: 1200px) {
            .research-container {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .research-column:nth-child(n) {
                margin-top: 0;
            }
        }

        @media (max-width: 768px) {
            .research-container {
                grid-template-columns: 1fr;


            }

            .research-header h2 {
                font-size: 2.2rem;
            }

            .collaborators-title {
                font-size: 1rem;
            }
        }

        /* Advanced Laboratories & Facilities Section */
        .labs-section {
            padding: 40px 0;
            background-color: #fafdfb;
            position: relative;
            overflow: hidden;
        }

        .labs-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 6rem;
            align-items: start;
        }

        .labs-text {
            color: #1a1a1a;
            line-height: 1.9;
            font-size: 1.1rem;
            max-width: 600px;
        }

        .labs-section .section-header h2 {
            font-size: 2.7rem !important;
            line-height: 1.2 !important;
            color: #1a1a1a !important;
            margin-top: 0.5rem !important;
            margin-bottom: 1.5rem !important;
            font-weight: 700 !important;
            display: block;
        }

        .labs-section .section-header h2::after {
            display: none;
        }

        .labs-text p {
            margin-bottom: 2rem;
            color: #4b5563;
        }

        .labs-card {
            background: white;
            padding: 3.5rem 4rem;
            border-radius: 30px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(46, 125, 50, 0.08);
            border-top: 5px solid #2e7d32;
            position: relative;
            transition: all 0.4s ease;
        }

        .labs-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 35px 80px rgba(0, 0, 0, 0.08);
        }

        .labs-card-title {
            margin-bottom: 3rem;
            text-align: center;
        }

        .labs-card-title h3 {
            font-size: 1.8rem;
            color: #1b5e20;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .labs-card-title p {
            font-size: 0.85rem;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .labs-list {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
        }

        .lab-item {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            padding: 1.2rem;
            border-radius: 18px;
            background: rgba(241, 248, 243, 0.5);
            border: 1px solid rgba(46, 125, 50, 0.05);
            transition: all 0.3s ease;
        }

        .lab-item:hover {
            background: #ffffff;
            border-color: #2e7d32;
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(27, 94, 32, 0.06);
        }

        .lab-icon {
            width: 50px;
            height: 50px;
            background: #2e7d32;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 8px 15px rgba(46, 125, 50, 0.2);
        }

        .lab-content h4 {
            font-size: 1.05rem;
            color: #1a1a1a;
            margin-bottom: 0.2rem;
            font-weight: 700;
        }

        .lab-content p {
            font-size: 0.9rem;
            color: #6b7280;
            line-height: 1.4;
        }

        .labs-extra {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s ease,
                transform 0.6s ease;
        }

        .labs-extra.active {
            max-height: 2000px;
            /* High enough to contain all 7 labs */
            opacity: 1;
            transform: translateY(0);
            padding-top: 1.8rem;
        }

        @media (max-width: 1200px) {
            .labs-grid {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .labs-text {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .labs-card {
                padding: 2.5rem 2rem;
            }

            .labs-section {
                padding: 80px 0;
            }
        }

        /* Career Opportunities Section */
        .career-section {
            padding: 80px 0 20px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
            overflow: hidden;
        }

        .career-accordion {
            display: flex;
            gap: 1.5rem;
            height: 650px;
            margin-top: 5rem;
            width: 100%;
        }

        .career-card {
            flex: 1;
            position: relative;
            border-radius: 35px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
            background-size: cover;
            background-position: center;
        }

        .career-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
            z-index: 1;
            transition: opacity 0.5s ease;
        }

        .career-card:hover {
            flex: 4;
        }

        .career-card:hover::before {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
        }

        .career-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 3rem;
            z-index: 2;
            color: white;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
            pointer-events: none;
        }

        .career-card:hover .career-card-content {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .career-card-label {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            writing-mode: vertical-rl;
            text-orientation: mixed;
            color: white;
            font-weight: 800;
            font-size: 1.4rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            white-space: nowrap;
            z-index: 2;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .career-card:hover .career-card-label {
            opacity: 0;
        }

        .career-card h3 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            color: #ffffff;
            line-height: 1.2;
        }

        .career-card p {
            font-size: 1.1rem;
            opacity: 0.95;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .career-points {
            list-style: none;
            display: grid;
            gap: 1rem;
        }

        .career-point {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
            font-weight: 500;
        }

        .career-point span {
            width: 10px;
            height: 10px;
            background: #a5d6a7;
            border-radius: 2px;
            flex-shrink: 0;
        }

        .career-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .career-card:hover .career-image {
            transform: scale(1.1);
        }

        @media (max-width: 1024px) {
            .career-accordion {
                height: auto !important;
                flex-direction: column;
                gap: 1.5rem;
                display: flex;
            }

            .career-card {
                height: 200px !important;
                flex: none !important;
                width: 100% !important;
                transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
            }

            .career-card-label {
                writing-mode: horizontal-tb;
                bottom: auto;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                font-size: 1.2rem;
            }

            .career-card:hover,
            .career-card:active {
                height: 500px !important;
                flex: none !important;
            }

            .career-image {
                transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
            }
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 20px 0 100px 0;
            background: linear-gradient(180deg, #f8fbf9 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials-section::before {
            content: '“';
            position: absolute;
            top: 50px;
            right: 50px;
            font-size: 20rem;
            color: rgba(27, 94, 32, 0.03);
            font-family: serif;
            line-height: 1;
            z-index: 0;
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-carousel {
            margin-top: 4rem;
            overflow: hidden;
            position: relative;
            padding: 20px 0 40px;
        }

        .testimonial-track {
            display: flex;
            gap: 2rem;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .testimonial-card {
            flex: 0 0 calc(33.333% - 1.35rem);
            background: rgba(27, 94, 32, 0.04);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 24px;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            min-height: 380px;
        }

        .testimonial-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 50px rgba(27, 94, 32, 0.1);
            background: #ffffff;
            border-color: rgba(76, 175, 80, 0.2);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }

        .student-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #ffffff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            flex-shrink: 0;
        }

        .student-info h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.25rem;
            color: #1b5e20;
            margin-bottom: 2px;
            font-weight: 700;
        }

        .student-info p {
            font-size: 0.85rem;
            color: #66bb6a;
            font-weight: 600;
            line-height: 1.3;
        }

        .testimonial-content {
            position: relative;
            flex-grow: 1;
        }

        .testimonial-text {
            color: #4b5563;
            font-size: 1.05rem;
            line-height: 1.7;
            font-style: italic;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-footer {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding-top: 1rem;
        }

        .stars {
            display: none;
        }

        .quote-icon {
            color: rgba(27, 94, 32, 0.8);
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .control-btn {
            width: 50px;
            height: 50px;
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            color: #1b5e20;
        }

        .control-btn:hover {
            background: #1b5e20;
            color: white;
            transform: scale(1.1);
        }

        .carousel-dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 8px;
            height: 8px;
            background: #cbd5e1;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            width: 24px;
            background: #1b5e20;
            border-radius: 10px;
        }

        @media (max-width: 1024px) {
            .testimonial-card {
                flex: 0 0 calc(50% - 1rem);
                padding: 2rem;
            }
        }

        @media (max-width: 640px) {
            .testimonial-card {
                flex: 0 0 100%;
            }

            .testimonials-section {
                padding: 80px 0;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }
        }

        /* FAQ Section Styling */
        .faq-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fbf8 0%, #ffffff 50%, #f1f8f1 100%);
            position: relative;
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(27, 94, 32, 0.1), transparent);
        }

        .faq-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 5rem;
            align-items: flex-start;
        }

        .faq-left {
            position: sticky;
            top: 120px;
        }

        .faq-label {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            background: rgba(27, 94, 32, 0.08);
            color: #1b5e20;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .faq-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .faq-subtitle {
            font-size: 1.15rem;
            color: #5f6f65;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            max-width: 500px;
        }

        .faq-illustration {
            width: 100%;
            height: 300px;
            background: rgba(27, 94, 32, 0.03);
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(27, 94, 32, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .faq-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: white;
            border-radius: 16px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
        }

        .faq-item:hover {
            border-color: rgba(27, 94, 32, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
        }

        .faq-item.active {
            border-color: rgba(27, 94, 32, 0.3);
            box-shadow: 0 20px 40px rgba(27, 94, 32, 0.08);
        }

        .faq-header {
            width: 100%;
            padding: 1.8rem 2rem;
            background: transparent;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            text-align: left;
            gap: 1.5rem;
        }

        .faq-header span {
            font-size: 1.15rem;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.4;
            transition: color 0.3s ease;
        }

        .faq-item.active .faq-header span {
            color: #1b5e20;
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            background: rgba(27, 94, 32, 0.05);
            color: #1b5e20;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-icon {
            background: #1b5e20;
            color: white;
            transform: rotate(135deg);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
        }

        .faq-item.active .faq-content {
            max-height: 1000px;
            opacity: 1;
        }

        .faq-content-inner {
            padding: 0 2rem 2rem 2rem;
            color: #5f6f65;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        @media (max-width: 1024px) {
            .faq-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .faq-left {
                position: static;
                text-align: center;
            }

            .faq-subtitle {
                margin: 0 auto 2.5rem;
            }

            .faq-illustration {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .faq-title {
                font-size: 2.2rem;
            }

            .faq-header {
                padding: 1.5rem;
            }

            .faq-content-inner {
                padding: 0 1.5rem 1.5rem 1.5rem;
            }
        }
