        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: #f8fbfa;
            overflow-x: hidden;
        }

        p {
            color: var(--text-dark);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--primary-green);
        }

        :root {
            --primary-green: #a8d5ba;
            --light-green: #d4f1d4;
            --light-blue: #c8e5f5;
            --soft-blue: #b8dff0;
            --warm-accent: #f0d4b8;
            --pale-blue: #e8f4f8;
            --white: #ffffff;
            --light-bg: #f5faf8;
            --text-dark: #4a5f6b;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            box-shadow: 0 2px 15px rgba(168, 213, 186, 0.2);
            padding: 1rem 0;
            border-bottom: 2px solid var(--light-green);
            background: white;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary-green) !important;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: bounce 2s ease-in-out infinite;
        }

        .navbar-brand i {
            color: var(--primary-green);
            font-size: 1.8rem;
            animation: spin 3s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 600;
            margin: 0 8px;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-green) !important;
            transform: translateY(-2px);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(90deg, var(--primary-green), var(--soft-blue));
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            background: linear-gradient(135deg, #e8f4f8 0%, #f0faf8 50%, #e8f5f0 100%);
            color: var(--text-dark);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(168, 213, 186, 0.15), transparent);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(200, 229, 245, 0.15), transparent);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(30px);
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            color: var(--primary-green);
            animation: slideInDown 0.8s ease-out;
            background: linear-gradient(135deg, var(--primary-green), var(--soft-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.85;
            animation: slideInUp 0.8s ease-out 0.2s both;
            color: var(--text-dark);
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn-primary-custom {
            background: var(--soft-blue);
            border: 2px solid var(--primary-green);
            color: white;
            font-weight: 700;
            padding: 15px 35px;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(168, 213, 186, 0.2);
            animation: slideInUp 0.8s ease-out 0.4s both, pulse 2.5s ease-in-out infinite 1s;
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 4px 15px rgba(168, 213, 186, 0.2);
            }

            50% {
                box-shadow: 0 4px 25px rgba(168, 213, 186, 0.35);
            }
        }

        .btn-primary-custom:hover {
            background: var(--primary-green);
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(168, 213, 186, 0.35);
            color: var(--white);
            border-color: var(--soft-blue);
        }

        .hero-image {
            animation: slideInRight 0.8s ease-out 0.3s both;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ===== SECTION STYLES ===== */
        .section {
            padding: 80px 0;
            position: relative;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 15px;
            text-align: center;
            animation: fadeInScale 0.8s ease-out;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-dark);
            text-align: center;
            margin-bottom: 50px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeIn 0.8s ease-out 0.2s both;
        }

        .section-divider {
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-green), var(--soft-blue));
            margin: 0 auto 30px;
            border-radius: 10px;
            animation: expandWidth 0.8s ease-out;
        }

        @keyframes expandWidth {
            from {
                width: 0;
                opacity: 0;
            }

            to {
                width: 80px;
                opacity: 1;
            }
        }

        /* ===== SHARED PAGE + FORM STYLES ===== */
        .text-navy {
            color: #163a5c !important;
        }

        .text-primary-custom {
            color: var(--primary-green) !important;
        }

        .page-hero {
            position: relative;
            padding: 110px 0 0;
            min-height: 340px;
            background-image: var(--hero-bg, linear-gradient(135deg, #e8f4f8 0%, #d9f0ed 100%));
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }

        .page-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(11, 31, 59, 0.75), rgba(11, 31, 59, 0.35) 48%, rgba(11, 31, 59, 0.15));
        }

        .page-hero .container {
            position: relative;
            z-index: 1;
            padding-bottom: 40px;
        }

        .page-hero h1 {
            color: #ffffff;
            font-size: clamp(2.2rem, 4vw, 4rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 18px;
            text-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
        }

        .page-hero p {
            max-width: 700px;
            color: rgba(255, 255, 255, 0.92);
            font-size: clamp(1rem, 1.55vw, 1.2rem);
            line-height: 1.8;
            margin: 0;
        }

        .hero-divider {
            position: relative;
            width: 100%;
            height: 100px;
            margin-top: -2px;
        }

        .hero-divider svg {
            display: block;
            width: 100%;
            height: 100%;
        }

        .content-section {
            padding: 90px 0;
            background: linear-gradient(180deg, #f8fbfa 0%, #f6fbfa 100%);
        }

        .section-card {
            background: rgba(255, 255, 255, 0.96);
            border: 1px solid rgba(168, 213, 186, 0.22);
            border-radius: 24px;
            box-shadow: 0 18px 42px rgba(13, 45, 66, 0.08);
            padding: 30px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 7px 14px;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(168, 213, 186, 0.22), rgba(200, 229, 245, 0.35));
            border: 1px solid rgba(168, 213, 186, 0.35);
            color: #1d7a6a;
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px dashed rgba(48, 77, 96, 0.15);
        }

        .contact-info-item:last-child {
            border-bottom: none;
        }

        .ci-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            box-shadow: 0 8px 20px rgba(22, 58, 92, 0.12);
            flex-shrink: 0;
        }

        .ci-icon.green {
            background: linear-gradient(135deg, #a8d5ba, #7eca9e);
        }

        .ci-icon.red {
            background: linear-gradient(135deg, #fb9d98, #f26a66);
        }

        .ci-icon.blue {
            background: linear-gradient(135deg, #7cc3f7, #4d8df8);
        }

        .ci-icon.yellow {
            background: linear-gradient(135deg, #ffd166, #f7b733);
        }

        .ci-label {
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(22, 58, 92, 0.72);
            margin-bottom: 4px;
        }

        .ci-value {
            color: #23405d;
            font-weight: 600;
            line-height: 1.7;
        }

        .form-feedback {
            min-height: 0;
            margin-bottom: 18px;
        }

        .form-feedback .alert {
            margin-bottom: 0;
            border-radius: 14px;
            font-weight: 600;
        }

        .form-label {
            color: #21405d;
            font-size: 0.92rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .form-control,
        .form-select {
            border: 1.5px solid rgba(168, 213, 186, 0.5);
            background: rgba(248, 251, 250, 0.9);
            border-radius: 14px;
            padding: 0.85rem 1rem;
            color: #21405d;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .form-control::placeholder {
            color: rgba(51, 79, 102, 0.55);
        }

        .form-control:focus,
        .form-select:focus {
            border-color: rgba(124, 195, 247, 0.9);
            background: #ffffff;
            box-shadow: 0 0 0 0.2rem rgba(124, 195, 247, 0.18);
            outline: none;
        }

        .btn-yellow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: auto;
            min-height: 52px;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, #ffd166, #ffbf47, #f5a623);
            color: #173452;
            font-weight: 800;
            letter-spacing: 0.02em;
            box-shadow: 0 12px 25px rgba(255, 193, 64, 0.28);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .btn-yellow:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 30px rgba(255, 193, 64, 0.35);
            color: #173452;
        }

        .btn-outline-primary-custom {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
            border: 1.5px solid rgba(28, 123, 154, 0.35);
            background: rgba(255, 255, 255, 0.6);
            color: #163a5c;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        .btn-outline-primary-custom:hover {
            background: rgba(168, 213, 186, 0.12);
            border-color: rgba(28, 123, 154, 0.55);
            transform: translateY(-2px);
            color: #163a5c;
        }

        .step-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 12px;
        }

        .step-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #183d5b;
            font-weight: 600;
            line-height: 1.6;
        }

        .step-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7cc3f7, #50af9e);
            color: #fff;
            font-size: 1rem;
            box-shadow: 0 8px 18px rgba(80, 175, 158, 0.2);
        }

        .map-wrap {
            overflow: hidden;
            border-radius: 24px;
            border: 1px solid rgba(168, 213, 186, 0.2);
            box-shadow: 0 18px 42px rgba(13, 45, 66, 0.08);
        }

        .map-wrap iframe {
            display: block;
            width: 100%;
            min-height: 440px;
            border: 0;
        }

        .register-journey {
            margin-top: 24px;
        }

        .register-journey-steps {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 20px;
        }

        .register-journey-step {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(168, 213, 186, 0.25);
            border-radius: 22px;
            padding: 24px 20px;
            box-shadow: 0 12px 32px rgba(13, 45, 66, 0.06);
        }

        .register-journey-badge {
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }

        .register-journey-badge--1 { background: linear-gradient(135deg, #7cc3f7, #3f8ef7); }
        .register-journey-badge--2 { background: linear-gradient(135deg, #a8d5ba, #6ec9a7); }
        .register-journey-badge--3 { background: linear-gradient(135deg, #ffd166, #f7b733); color: #1d3042; }
        .register-journey-badge--4 { background: linear-gradient(135deg, #92c7b6, #4aa67d); }

        .register-journey-step h5 {
            margin-bottom: 10px;
            color: #1c3d5d;
            font-weight: 700;
        }

        .register-journey-step p {
            margin: 0;
            color: rgba(48, 77, 96, 0.85);
            line-height: 1.7;
        }

        .auth-shell {
            position: relative;
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(232, 244, 248, 0.9), rgba(244, 251, 248, 0.95));
        }

        .auth-card {
            max-width: 520px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.96);
            border: 1px solid rgba(168, 213, 186, 0.3);
            border-radius: 26px;
            box-shadow: 0 22px 50px rgba(14, 33, 55, 0.08);
            padding: 32px 28px;
        }

        .auth-card h2 {
            color: #173a5b;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .auth-card p {
            color: rgba(48, 77, 96, 0.82);
        }

        @media (max-width: 991px) {
            .register-journey-steps {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 767px) {
            .page-hero {
                padding-top: 90px;
                min-height: 280px;
            }

            .section-card {
                padding: 22px 18px;
            }

            .hero-divider {
                height: 72px;
            }

            .register-journey-steps {
                grid-template-columns: 1fr;
            }
        }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            background: linear-gradient(135deg, #f5faf8 0%, #f0f8f6 100%);
        }

        .about-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 244, 248, 0.5));
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            border-left: 5px solid var(--soft-blue);
            box-shadow: 0 5px 20px rgba(168, 213, 186, 0.1);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform: translateY(0);
            backdrop-filter: blur(10px);
            border-top: 2px solid var(--light-green);
        }

        .about-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(168, 213, 186, 0.2);
            background: linear-gradient(135deg, rgba(232, 244, 248, 0.7), rgba(200, 229, 245, 0.3));
            border-left-color: var(--primary-green);
        }

        .about-card i {
            font-size: 2.5rem;
            color: var(--soft-blue);
            margin-bottom: 20px;
            animation: iconBounce 2s ease-in-out infinite;
        }

        @keyframes iconBounce {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            25% {
                transform: translateY(-8px) rotate(5deg);
            }

            75% {
                transform: translateY(8px) rotate(-5deg);
            }
        }

        .about-card h3 {
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 15px;
        }

        /* ===== PROGRAMS SECTION - SCREENSHOT STYLE ===== */
        .programs-section {
            background: #fff;
            overflow: hidden;
            position: relative;
        }

        .program-slider-wrap {
            position: relative;
            padding: 10px 0 95px;
        }

        .program-slider-viewport {
            width: 100%;
            overflow: hidden;
            cursor: grab;
            touch-action: pan-y;
            padding: 20px 0 30px;
            user-select: none;
        }

        .program-slider-viewport.dragging {
            cursor: grabbing;
        }

        .program-slider-track {
            display: flex;
            gap: 32px;
            width: max-content;
            will-change: transform;
            padding-left: max(24px, calc((100vw - 1660px) / 2));
            padding-right: max(24px, calc((100vw - 1660px) / 2));
        }

        .program-slide {
            flex: 0 0 520px;
            width: 520px;
        }

        .program-card-modern {
            position: relative;
            min-height: 610px;
            border: 0;
            border-radius: 42px;
            padding: 52px 42px 42px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(70, 75, 110, .05);
            transition: transform .45s ease, box-shadow .45s ease;
        }

        .program-slide:nth-child(3n + 1) .program-card-modern {
            background: #f7f9e5;
        }

        .program-slide:nth-child(3n + 2) .program-card-modern {
            background: #ffdfe6;
        }

        .program-slide:nth-child(3n) .program-card-modern {
            background: #e0e6ff;
        }

        .program-card-modern::before,
        .program-card-modern::after {
            content: '';
            position: absolute;
            width: 170px;
            height: 170px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .22);
            pointer-events: none;
        }

        .program-card-modern::before {
            top: -105px;
            left: -55px;
        }

        .program-card-modern::after {
            right: -65px;
            bottom: -90px;
        }

        .program-card-modern:hover {
            transform: translateY(-10px);
            box-shadow: 0 22px 45px rgba(70, 75, 110, .12);
        }

        .program-icon-modern {
            position: relative;
            z-index: 1;
            width: 150px;
            height: 150px;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, .55);
            border-radius: 42% 58% 50% 50% / 48% 45% 55% 52%;
            box-shadow: 0 10px 24px rgba(80, 80, 120, .08);
        }

        .program-icon-modern i {
            font-size: 4.5rem;
            color: #7257e8;
            filter: drop-shadow(0 5px 5px rgba(60, 45, 110, .12));
            animation: programIconFloat 3s ease-in-out infinite;
        }

        .program-slide:nth-child(3n + 2) .program-icon-modern i {
            color: #ff6b32;
        }

        .program-slide:nth-child(3n) .program-icon-modern i {
            color: #566ce8;
        }

        @keyframes programIconFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .program-card-modern h3 {
            position: relative;
            z-index: 1;
            margin: 0 0 10px;
            color: #080b19;
            font-size: 2.05rem;
            line-height: 1.2;
            font-weight: 700;
        }

        .program-age {
            position: relative;
            z-index: 1;
            color: #5c6674;
            font-size: 1.05rem;
            margin-bottom: 28px;
        }

        .program-card-modern p {
            position: relative;
            z-index: 1;
            max-width: 420px;
            margin: 0 auto 28px;
            color: #536071;
            font-size: 1rem;
            line-height: 1.75;
        }

        .program-learn-more {
            position: relative;
            z-index: 1;
            margin-top: auto;
            color: #f2642b;
            font-size: 1.08rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            transition: gap .25s ease, transform .25s ease;
        }

        .program-learn-more:hover {
            color: #dc4e18;
            gap: 18px;
            transform: translateY(-2px);
        }

        .program-slider-controls {
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            gap: 195px;
            z-index: 5;
        }

        .program-slider-btn {
            width: 70px;
            height: 70px;
            border: 0;
            border-radius: 18px;
            background: #6752e9;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            box-shadow: 0 10px 25px rgba(103, 82, 233, .22);
            transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
        }

        .program-slider-btn:hover {
            transform: translateY(-4px);
            background: #5943d8;
            box-shadow: 0 14px 30px rgba(103, 82, 233, .3);
        }

        .program-slider-btn:active {
            transform: scale(.95);
        }

        .program-slider-dots {
            display: none;
        }

        @media (max-width: 1200px) {
            .program-slide {
                flex-basis: 430px;
                width: 430px;
            }

            .program-card-modern {
                min-height: 560px;
            }

            .program-slider-controls {
                gap: 150px;
            }
        }

        @media (max-width: 767px) {
            .program-slider-wrap {
                padding-bottom: 85px;
            }

            .program-slider-track {
                gap: 18px;
                padding-left: 18px;
                padding-right: 18px;
            }

            .program-slide {
                flex-basis: calc(100vw - 50px);
                width: calc(100vw - 50px);
            }

            .program-card-modern {
                min-height: 525px;
                border-radius: 30px;
                padding: 38px 24px 30px;
            }

            .program-icon-modern {
                width: 125px;
                height: 125px;
                margin-bottom: 23px;
            }

            .program-icon-modern i {
                font-size: 3.7rem;
            }

            .program-card-modern h3 {
                font-size: 1.75rem;
            }

            .program-slider-controls {
                gap: 105px;
            }

            .program-slider-btn {
                width: 58px;
                height: 58px;
                border-radius: 16px;
                font-size: 1.1rem;
            }
        }

        /* ===== GALLERY SECTION ===== */
        .gallery-section {
            background: linear-gradient(135deg, #f5faf8 0%, #f0f8f6 100%);
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(168, 213, 186, 0.12);
            aspect-ratio: 1;
            cursor: pointer;
            border: 2px solid rgba(200, 229, 245, 0.3);
            animation: slideIn 0.6s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .gallery-item svg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover svg {
            transform: scale(1.08) rotate(1deg);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(168, 213, 186, 0.7);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 10;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            font-size: 2.5rem;
            color: var(--white);
            animation: zoomIn 0.4s ease-out;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.5);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* ===== TESTIMONIALS SECTION ===== */
        .testimonial-section {
            background: linear-gradient(135deg, #f8fbf9 0%, #f5faf8 100%);
        }

        .testimonial-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 244, 248, 0.4));
            border-radius: 20px;
            padding: 35px;
            margin-bottom: 30px;
            border-left: 5px solid var(--soft-blue);
            position: relative;
            box-shadow: 0 5px 20px rgba(168, 213, 186, 0.08);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            backdrop-filter: blur(10px);
            border-top: 2px solid var(--light-green);
            animation: slideIn 0.6s ease-out;
        }

        .testimonial-card:hover {
            transform: translateX(8px) translateY(-5px);
            box-shadow: 0 10px 30px rgba(168, 213, 186, 0.15);
            background: linear-gradient(135deg, rgba(232, 244, 248, 0.6), rgba(200, 229, 245, 0.3));
            border-left-color: var(--primary-green);
        }

        .testimonial-quote {
            font-size: 2rem;
            color: var(--soft-blue);
            opacity: 0.25;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: Georgia, serif;
            animation: fadeInScale 0.8s ease-out;
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--text-dark);
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--primary-green);
            margin-bottom: 5px;
        }

        .testimonial-role {
            font-size: 0.85rem;
            color: #a0a0a0;
        }

        .stars {
            color: var(--warm-accent);
            font-size: 0.9rem;
            margin-bottom: 15px;
            animation: twinkle 2s ease-in-out infinite;
        }

        @keyframes twinkle {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.7;
            }
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, #e8f4f8 0%, #d8ecf4 50%, #e8f5f0 100%);
            color: var(--primary-green);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(168, 213, 186, 0.1), transparent);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: float 6s ease-in-out infinite;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(200, 229, 245, 0.1), transparent);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
            animation: float 8s ease-in-out infinite reverse;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            animation: fadeIn 0.8s ease-out;
        }

        .cta-section h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--primary-green);
            animation: slideInDown 0.8s ease-out;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: var(--text-dark);
            animation: slideInUp 0.8s ease-out 0.2s both;
        }

        /* ===== FOOTER ===== */
        footer {
            background: linear-gradient(135deg, #d8ecf4 0%, #e8f0f6 100%);
            color: var(--text-dark);
            padding: 60px 0 20px;
        }

        .footer-content h5 {
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-green);
            animation: slideInDown 0.6s ease-out;
        }

        .footer-content ul {
            list-style: none;
            padding: 0;
        }

        .footer-content a {
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            margin-bottom: 10px;
            opacity: 0.8;
        }

        .footer-content a:hover {
            color: var(--soft-blue);
            transform: translateX(5px);
            opacity: 1;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            margin: 0;
            box-shadow: 0 4px 12px rgba(168, 213, 186, 0.2);
            animation: popIn 0.6s ease-out;
        }

        @keyframes popIn {
            from {
                transform: scale(0);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .social-links a:hover {
            background: var(--soft-blue);
            color: white;
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 8px 20px rgba(168, 213, 186, 0.35);
        }

        .footer-bottom {
            border-top: 2px solid rgba(168, 213, 186, 0.2);
            margin-top: 40px;
            padding-top: 30px;
            text-align: center;
            color: var(--text-dark);
            opacity: 0.7;
        }

        /* ===== ANIMATIONS ===== */
        .fade-in {
            animation: fadeIn 0.8s ease-out forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .scroll-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ===== FLOATING LEAVES ===== */
        .floating-leaves {
            position: fixed;
            pointer-events: none;
            z-index: -1;
        }

        .leaf {
            position: absolute;
            font-size: 2rem;
            opacity: 0.1;
            animation: sway 6s ease-in-out infinite;
        }

        @keyframes sway {

            0%,
            100% {
                transform: translateX(0) rotate(0deg);
            }

            50% {
                transform: translateX(20px) rotate(20deg);
            }
        }

        /* ===== STAGGER ANIMATION ===== */
        .about-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .about-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .about-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .about-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .program-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .program-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .program-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .program-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .gallery-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .gallery-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .gallery-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .gallery-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .gallery-item:nth-child(5) {
            animation-delay: 0.5s;
        }

        .gallery-item:nth-child(6) {
            animation-delay: 0.6s;
        }

        .testimonial-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .testimonial-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .testimonial-card:nth-child(3) {
            animation-delay: 0.3s;
        }


        /* ===== PREMIUM HERO MEDIA CAROUSEL ===== */
        .hero-media-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            background: #eef8f4;
        }

        .hero-carousel,
        .hero-carousel .carousel-inner,
        .hero-carousel .carousel-item {
            height: min(78vh, 760px);
            min-height: 520px;
        }

        .hero-carousel .carousel-item {
            position: relative;
            overflow: hidden;
        }

        .hero-carousel .carousel-media,
        .hero-carousel video.carousel-media {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transform: scale(1.06);
            transition: transform 7s cubic-bezier(.2, .65, .2, 1);
        }

        .hero-carousel .carousel-item.active .carousel-media {
            transform: scale(1);
        }

        .hero-carousel .carousel-overlay {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(31, 63, 53, .78) 0%, rgba(31, 63, 53, .38) 45%, rgba(31, 63, 53, .08) 100%),
                linear-gradient(0deg, rgba(0, 0, 0, .35), transparent 45%);
            z-index: 1;
        }

        .hero-carousel .carousel-caption {
            z-index: 2;
            left: 8%;
            right: auto;
            bottom: 50%;
            transform: translateY(50%);
            text-align: left;
            max-width: 650px;
        }

        .hero-carousel .carousel-caption .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 50px;
            background: rgba(255, 255, 255, .18);
            border: 1px solid rgba(255, 255, 255, .35);
            backdrop-filter: blur(10px);
            color: #fff;
            font-size: .85rem;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .hero-carousel .carousel-caption h1 {
            color: #fff;
            font-size: clamp(2.5rem, 5vw, 5rem);
            line-height: 1.05;
            font-weight: 800;
            margin-bottom: 18px;
            text-shadow: 0 5px 25px rgba(0, 0, 0, .22);
        }

        .hero-carousel .carousel-caption p {
            color: rgba(255, 255, 255, .94);
            font-size: clamp(1rem, 1.6vw, 1.3rem);
            line-height: 1.7;
            max-width: 600px;
            margin-bottom: 28px;
        }

        .hero-carousel .carousel-caption .btn {
            opacity: 0;
            transform: translateY(25px);
        }

        .hero-carousel .carousel-item.active .carousel-caption .eyebrow {
            animation: carouselFadeDown .7s .1s both;
        }

        .hero-carousel .carousel-item.active .carousel-caption h1 {
            animation: carouselRevealUp .8s .22s both;
        }

        .hero-carousel .carousel-item.active .carousel-caption p {
            animation: carouselRevealUp .8s .38s both;
        }

        .hero-carousel .carousel-item.active .carousel-caption .btn {
            animation: carouselRevealUp .8s .54s both;
        }

        @keyframes carouselRevealUp {
            from {
                opacity: 0;
                transform: translateY(35px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes carouselFadeDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .carousel-progress {
            position: absolute;
            left: 8%;
            bottom: 28px;
            width: min(420px, 55%);
            height: 4px;
            background: rgba(255, 255, 255, .25);
            border-radius: 20px;
            overflow: hidden;
            z-index: 5;
        }

        .carousel-progress-bar {
            width: 0;
            height: 100%;
            background: #fff;
            border-radius: inherit;
        }

        .hero-carousel .carousel-item.active .carousel-progress-bar {
            animation: carouselProgress 6s linear forwards;
        }

        @keyframes carouselProgress {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        .hero-carousel .carousel-indicators {
            z-index: 5;
            justify-content: flex-start;
            left: 8%;
            right: auto;
            bottom: 40px;
            margin: 0;
            gap: 8px;
        }

        .hero-carousel .carousel-indicators [data-bs-target] {
            width: 34px;
            height: 4px;
            margin: 0;
            border: 0;
            border-radius: 10px;
            opacity: .45;
        }

        .hero-carousel .carousel-indicators .active {
            opacity: 1;
        }

        .hero-carousel .carousel-control-prev,
        .hero-carousel .carousel-control-next {
            z-index: 5;
            width: 70px;
            opacity: .8;
        }

        .hero-carousel .carousel-control-prev-icon,
        .hero-carousel .carousel-control-next-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, .18);
            background-size: 45%;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, .35);
            transition: transform .3s ease, background-color .3s ease;
        }

        .hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
        .hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
            transform: scale(1.1);
            background-color: rgba(255, 255, 255, .32);
        }

        .media-badge {
            position: absolute;
            top: 28px;
            right: 8%;
            z-index: 5;
            padding: 9px 15px;
            border-radius: 50px;
            background: rgba(255, 255, 255, .16);
            border: 1px solid rgba(255, 255, 255, .3);
            color: #fff;
            backdrop-filter: blur(10px);
            font-size: .8rem;
            font-weight: 700;
        }

        /* ===== EXTRA SCROLL REVEAL EFFECTS ===== */
        .reveal-left,
        .reveal-right,
        .reveal-scale {
            opacity: 0;
            transition: opacity .9s ease, transform .9s cubic-bezier(.2, .7, .2, 1);
        }

        .reveal-left {
            transform: translateX(-55px);
        }

        .reveal-right {
            transform: translateX(55px);
        }

        .reveal-scale {
            transform: scale(.88);
        }

        .reveal-left.visible,
        .reveal-right.visible,
        .reveal-scale.visible {
            opacity: 1;
            transform: none;
        }

        .section-title {
            transition: letter-spacing .6s ease, transform .6s ease;
        }

        .section-title.visible {
            letter-spacing: .02em;
        }

        .program-card,
        .about-card,
        .testimonial-card,
        .gallery-item {
            will-change: transform;
        }

        /* Image tilt / shine */
        .gallery-item::after,
        .program-card::after,
        .about-card::after {
            content: "";
            position: absolute;
            top: 0;
            left: -120%;
            width: 55%;
            height: 100%;
            transform: skewX(-20deg);
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
            transition: left .75s ease;
            pointer-events: none;
        }

        .gallery-item:hover::after,
        .program-card:hover::after,
        .about-card:hover::after {
            left: 140%;
        }

        .about-card,
        .program-card,
        .gallery-item {
            position: relative;
        }

        @media (max-width: 768px) {

            .hero-carousel,
            .hero-carousel .carousel-inner,
            .hero-carousel .carousel-item {
                height: 72vh;
                min-height: 520px;
            }

            .hero-carousel .carousel-caption {
                left: 7%;
                right: 7%;
                bottom: 46%;
                max-width: none;
            }

            .hero-carousel .carousel-caption h1 {
                font-size: 2.35rem;
            }

            .hero-carousel .carousel-caption p {
                font-size: 1rem;
                line-height: 1.55;
            }

            .hero-carousel .carousel-control-prev,
            .hero-carousel .carousel-control-next {
                width: 48px;
            }

            .hero-carousel .carousel-control-prev-icon,
            .hero-carousel .carousel-control-next-icon {
                width: 38px;
                height: 38px;
            }

            .carousel-progress {
                left: 7%;
                width: 60%;
                bottom: 22px;
            }

            .hero-carousel .carousel-indicators {
                left: 7%;
                bottom: 34px;
            }

            .media-badge {
                top: 18px;
                right: 7%;
                font-size: .7rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: .01ms !important;
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero {
                padding: 50px 0;
                min-height: 500px;
            }

            .section {
                padding: 50px 0;
            }

            .program-card {
                margin-bottom: 25px;
            }

            .cta-section {
                padding: 60px 0;
            }

            .cta-section h2 {
                font-size: 2rem;
            }
        }

        /* ===== WAVE SEPARATOR ===== */
        .wave-separator {
            position: relative;
            height: 120px;
            background: transparent;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
        }

        .wave {
            position: absolute;
            bottom: 0;
            left: -20%;
            width: 220%;
            height: 120px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%25" style="stop-color:%23a8d5ba;stop-opacity:1" /><stop offset="100%25" style="stop-color:%23d4f1d4;stop-opacity:0.8" /></linearGradient></defs><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="url(%23grad)" /><path d="M0,60 Q300,10 600,60 T1200,60 L1200,120 L0,120 Z" fill="%23a8d5ba" opacity="0.7" /></svg>') repeat-x;
            background-repeat: repeat-x;
            background-size: 600px 120px;
            background-position: 0 0;
            animation: wave 15s linear infinite;
        }

        .wave:nth-child(2) {
            bottom: 10px;
            left: -15%;
            opacity: 0.5;
            animation: wave 10s linear infinite reverse;
            background-size: 500px 120px;
        }

        .wave:nth-child(3) {
            bottom: 20px;
            left: -10%;
            opacity: 0.3;
            animation: wave 12s linear infinite;
            background-size: 550px 120px;
        }

        @keyframes wave {
            0% {
                background-position-x: 0;
            }

            100% {
                background-position-x: -600px;
            }
        }

        /* Wave separators with different colors */
        .wave-separator-blue .wave {
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><defs><linearGradient id="grad-blue" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%25" style="stop-color:%23b8dff0;stop-opacity:1" /><stop offset="100%25" style="stop-color:%23e8f4f8;stop-opacity:0.8" /></linearGradient></defs><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="url(%23grad-blue)" /><path d="M0,60 Q300,10 600,60 T1200,60 L1200,120 L0,120 Z" fill="%23b8dff0" opacity="0.7" /></svg>') repeat-x;
            background-size: 600px 120px;
        }

        .wave-separator-green .wave {
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><defs><linearGradient id="grad-green" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%25" style="stop-color:%23c8e6c9;stop-opacity:1" /><stop offset="100%25" style="stop-color:%23f0f8f6;stop-opacity:0.8" /></linearGradient></defs><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="url(%23grad-green)" /><path d="M0,60 Q300,10 600,60 T1200,60 L1200,120 L0,120 Z" fill="%23c8e6c9" opacity="0.7" /></svg>') repeat-x;
            background-size: 600px 120px;
        }

        .wave-separator-accent .wave {
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><defs><linearGradient id="grad-accent" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%25" style="stop-color:%23f0d4b8;stop-opacity:1" /><stop offset="100%25" style="stop-color:%23fef5f0;stop-opacity:0.8" /></linearGradient></defs><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="url(%23grad-accent)" /><path d="M0,60 Q300,10 600,60 T1200,60 L1200,120 L0,120 Z" fill="%23f0d4b8" opacity="0.7" /></svg>') repeat-x;
            background-size: 600px 120px;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .navbar-brand-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #dff7e7, #bfe7d2);
            color: #1f5d46;
            font-size: 1.2rem;
            box-shadow: 0 6px 18px rgba(31, 93, 70, 0.18);
        }

        .navbar-brand img {
            max-height: 80px;
            width: auto;
        }

        .navbar-nav .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }

        .navbar-nav .nav-link i {
            font-size: 0.9rem;
            width: 16px;
            text-align: center;
            opacity: 0.85;
        }

        /* ===== SMOOTH SCROLL ===== */
        html {
            scroll-behavior: smooth;
        }

        /* ===== Back To Top Button ===== */
        #backToTopBtn {
            position: fixed;
            right: 18px;
            bottom: 18px;
            width: 48px;
            height: 48px;
            border-radius: 999px;
            border: none;
            background: var(--primary);
            color: darkseagreen;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transform: translateY(10px);
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease;
            z-index: 2000;
        }

        #backToTopBtn.is-visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        #backToTopBtn:hover {
            background: darkseagreen;
            color: var(--navy);
        }

        #backToTopBtn i {
            font-size: 1.55rem;
        }