        /* ===== HOME ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }


        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(10px);
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 75px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #c8a951, #e8d48b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 900;
            color: #0a1628;
        }

        .logo-text {
            color: #fff;
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .logo-text span {
            color: #c8a951;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links li a {
            color: #ccc;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            padding-bottom: 5px;
        }

        .nav-links li a:hover {
            color: #c8a951;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: #c8a951;
            transition: width 0.3s;
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        .btn-enroll-nav {
            background: linear-gradient(135deg, #c8a951, #b8952e);
            color: #0a1628 !important;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-enroll-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(200, 169, 81, 0.4);
        }

        .btn-enroll-nav::after {
            display: none !important;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: #c8a951;
            border-radius: 3px;
            transition: 0.3s;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(10, 22, 40, 0.92), rgba(26, 58, 92, 0.88)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23c8a951" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,213.3C1248,235,1344,213,1392,202.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 100px 5% 60px;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(200, 169, 81, 0.08) 0%, transparent 60%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(200, 169, 81, 0.15);
            border: 1px solid rgba(200, 169, 81, 0.4);
            color: #c8a951;
            padding: 8px 25px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: fadeInDown 1s ease;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: #fff;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, #c8a951, #e8d48b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.2rem;
            color: #b0bec5;
            max-width: 700px;
            margin: 0 auto 35px;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .btn-primary {
            background: linear-gradient(135deg, #c8a951, #b8952e);
            color: #0a1628;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 700;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(200, 169, 81, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary:hover {
            border-color: #c8a951;
            color: #c8a951;
            background: rgba(200, 169, 81, 0.1);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 60px;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat h3 {
            font-size: 2.5rem;
            color: #c8a951;
            font-weight: 800;
        }

        .hero-stat p {
            font-size: 0.9rem;
            color: #8899a6;
            margin: 0;
        }

        /* Floating elements */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            border: 2px solid rgba(200, 169, 81, 0.1);
            border-radius: 50%;
            animation: floatShape 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        .shape:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 30%;
            right: 20%;
            animation-delay: 1s;
        }

        /* ===== SCROLLING BANNER ===== */
        .scroll-banner {
            background: linear-gradient(135deg, #c8a951, #b8952e);
            padding: 15px 0;
            overflow: hidden;
            position: relative;
        }

        .scroll-content {
            display: flex;
            animation: scroll 20s linear infinite;
            white-space: nowrap;
        }

        .scroll-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0 40px;
            font-weight: 700;
            color: #0a1628;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }

        .scroll-item .dot {
            width: 8px;
            height: 8px;
            background: #0a1628;
            border-radius: 50%;
        }

        /* ===== ABOUT RIMC SECTION ===== */
        .about-rimc {
            padding: 100px 5%;
            background: #f8f9fc;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            background: rgba(200, 169, 81, 0.15);
            color: #b8952e;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: #0a1628;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-header h2 span {
            color: #c8a951;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 650px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-image {
            position: relative;
        }

        .about-image .image-box {
            width: 100%;
            height: 450px;
            background: linear-gradient(135deg, #0a1628, #1a3a5c);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .about-image .image-box::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(200, 169, 81, 0.1);
            border-radius: 50%;
            top: -50px;
            right: -50px;
        }

        .image-box .rimc-emblem {
            text-align: center;
            z-index: 2;
        }

        .rimc-emblem .shield {
            width: 120px;
            height: 140px;
            background: linear-gradient(135deg, #c8a951, #e8d48b);
            margin: 0 auto 20px;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .shield-inner {
            width: 90px;
            height: 108px;
            background: #0a1628;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            color: #c8a951;
        }

        .rimc-emblem h3 {
            color: #c8a951;
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 3px;
        }

        .rimc-emblem p {
            color: #8899a6;
            font-size: 0.9rem;
            margin-top: 5px;
        }

        .about-image .floating-card {
            position: absolute;
            background: #fff;
            padding: 15px 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .floating-card.card-1 {
            bottom: -20px;
            left: -20px;
        }

        .floating-card.card-2 {
            top: -20px;
            right: -20px;
        }

        .floating-card .card-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #c8a951, #e8d48b);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .floating-card .card-text h4 {
            font-size: 1.1rem;
            color: #0a1628;
            font-weight: 700;
        }

        .floating-card .card-text p {
            font-size: 0.8rem;
            color: #888;
        }

        .about-text h3 {
            font-size: 2rem;
            color: #0a1628;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .about-text h3 span {
            color: #c8a951;
        }

        .about-text>p {
            color: #555;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .about-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-feature {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .about-feature .feature-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: rgba(200, 169, 81, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #c8a951;
        }

        .about-feature h4 {
            color: #0a1628;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .about-feature p {
            color: #777;
            font-size: 0.9rem;
        }

        /* ===== WHY COACHING SECTION ===== */
        .why-coaching {
            padding: 100px 5%;
            background: linear-gradient(180deg, #0a1628 0%, #132844 100%);
            position: relative;
        }

        .why-coaching .section-header h2 {
            color: #fff;
        }

        .why-coaching .section-header p {
            color: #8899a6;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #c8a951, #e8d48b);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .why-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .why-card:hover::before {
            opacity: 1;
        }

        .why-card .card-number {
            font-size: 3rem;
            font-weight: 900;
            color: rgba(200, 169, 81, 0.15);
            margin-bottom: 10px;
        }

        .why-card .card-icon-wrap {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, rgba(200, 169, 81, 0.2), rgba(200, 169, 81, 0.05));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .why-card h3 {
            color: #fff;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .why-card p {
            color: #8899a6;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ===== FEATURES / WHAT WE OFFER ===== */
        .features {
            padding: 100px 5%;
            background: #fff;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: #f8f9fc;
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.4s;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            border-color: #c8a951;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(200, 169, 81, 0.15);
            background: #fff;
        }

        .feature-card .f-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #0a1628, #1a3a5c);
            border-radius: 20px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            transition: transform 0.4s;
        }

        .feature-card:hover .f-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, #c8a951, #b8952e);
        }

        .feature-card h3 {
            font-size: 1.15rem;
            color: #0a1628;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 0.9rem;
            color: #777;
        }

        /* ===== JOURNEY / PROCESS SECTION ===== */
        .journey {
            padding: 100px 5%;
            background: #f8f9fc;
        }

        .journey-timeline {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .journey-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #c8a951, #0a1628);
            border-radius: 2px;
        }

        .journey-item {
            display: flex;
            margin-bottom: 50px;
            position: relative;
        }

        .journey-item:nth-child(odd) {
            justify-content: flex-start;
            padding-right: 55%;
        }

        .journey-item:nth-child(even) {
            justify-content: flex-end;
            padding-left: 55%;
        }

        .journey-item .journey-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 24px;
            background: #c8a951;
            border-radius: 50%;
            border: 4px solid #f8f9fc;
            box-shadow: 0 0 0 4px rgba(200, 169, 81, 0.3);
            z-index: 2;
        }

        .journey-content {
            background: #fff;
            padding: 25px 30px;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s;
        }

        .journey-content:hover {
            transform: translateY(-5px);
        }

        .journey-content .step-num {
            display: inline-block;
            background: linear-gradient(135deg, #c8a951, #e8d48b);
            color: #0a1628;
            width: 35px;
            height: 35px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.9rem;
            margin-bottom: 12px;
        }

        .journey-content h3 {
            font-size: 1.15rem;
            color: #0a1628;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .journey-content p {
            font-size: 0.9rem;
            color: #777;
        }

        /* ===== SUCCESS STORIES / RESULTS ===== */
        .results {
            padding: 100px 5%;
            background: linear-gradient(135deg, #0a1628, #1a3a5c);
            position: relative;
        }

        .results .section-header h2 {
            color: #fff;
        }

        .results .section-header p {
            color: #8899a6;
        }

        .results-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto 60px;
        }

        .stat-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(200, 169, 81, 0.2);
            transition: all 0.4s;
        }

        .stat-box:hover {
            background: rgba(200, 169, 81, 0.1);
            transform: translateY(-5px);
        }

        .stat-box h3 {
            font-size: 3rem;
            color: #c8a951;
            font-weight: 900;
        }

        .stat-box p {
            color: #8899a6;
            font-size: 0.95rem;
            margin-top: 5px;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 35px 30px;
            transition: all 0.4s;
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
        }

        .testimonial-card .stars {
            color: #c8a951;
            font-size: 1.1rem;
            margin-bottom: 15px;
            letter-spacing: 3px;
        }

        .testimonial-card .quote {
            color: #b0bec5;
            font-size: 0.95rem;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
            border-left: 3px solid #c8a951;
        }

        .testimonial-card .author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author .avatar {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #c8a951, #e8d48b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: #0a1628;
            font-size: 1rem;
        }

        .author-info h4 {
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
        }

        .author-info p {
            color: #8899a6;
            font-size: 0.8rem;
        }

        /* ===== PROGRAMS / COURSES ===== */
        .programs {
            padding: 100px 5%;
            background: #fff;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .program-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            border: 1px solid #eee;
        }

        .program-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .program-card.featured {
            border: 2px solid #c8a951;
            position: relative;
        }

        .program-card.featured .popular-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #c8a951, #b8952e);
            color: #0a1628;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
        }

        .program-header {
            background: linear-gradient(135deg, #0a1628, #1a3a5c);
            padding: 35px 30px;
            text-align: center;
        }

        .program-card.featured .program-header {
            background: linear-gradient(135deg, #c8a951, #b8952e);
        }

        .program-header h3 {
            color: #fff;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .program-card.featured .program-header h3 {
            color: #0a1628;
        }

        .program-header .program-class {
            color: #c8a951;
            font-size: 0.9rem;
        }

        .program-card.featured .program-header .program-class {
            color: #0a1628;
            opacity: 0.7;
        }

        .program-header .price {
            font-size: 2.5rem;
            font-weight: 900;
            color: #fff;
            margin-top: 10px;
        }

        .program-header .price span {
            font-size: 1rem;
            font-weight: 400;
        }

        .program-card.featured .program-header .price {
            color: #0a1628;
        }

        .program-body {
            padding: 30px;
        }

        .program-body ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 25px;
        }

        .program-body ul li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: #555;
        }

        .program-body ul li .check {
            width: 22px;
            height: 22px;
            min-width: 22px;
            background: rgba(200, 169, 81, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b8952e;
            font-size: 0.7rem;
            font-weight: 900;
        }

        .btn-program {
            display: block;
            text-align: center;
            padding: 14px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s;
            border: 2px solid #0a1628;
            color: #0a1628;
            background: transparent;
            cursor: pointer;
            width: 100%;
        }

        .btn-program:hover {
            background: #0a1628;
            color: #fff;
        }

        .program-card.featured .btn-program {
            background: linear-gradient(135deg, #c8a951, #b8952e);
            border-color: #c8a951;
            color: #0a1628;
        }

        .program-card.featured .btn-program:hover {
            background: #0a1628;
            color: #c8a951;
            border-color: #0a1628;
        }

        /* ===== PARENTS SECTION ===== */
        .parents-section {
            padding: 100px 5%;
            background: #f8f9fc;
        }

        .parents-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .parents-text h3 {
            font-size: 2rem;
            color: #0a1628;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .parents-text h3 span {
            color: #c8a951;
        }

        .parents-text>p {
            color: #666;
            font-size: 1.05rem;
            margin-bottom: 30px;
        }

        .parent-benefits {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .parent-benefit {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            padding: 18px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
            transition: all 0.3s;
        }

        .parent-benefit:hover {
            transform: translateX(8px);
            box-shadow: 0 5px 20px rgba(200, 169, 81, 0.15);
        }

        .parent-benefit .ben-icon {
            width: 45px;
            height: 45px;
            min-width: 45px;
            background: rgba(200, 169, 81, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .parent-benefit h4 {
            color: #0a1628;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .parent-benefit p {
            color: #888;
            font-size: 0.85rem;
        }

        .parents-visual {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .parent-v-card {
            background: #fff;
            border-radius: 18px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s;
        }

        .parent-v-card:hover {
            transform: translateY(-5px);
        }

        .parent-v-card:nth-child(2) {
            margin-top: 30px;
        }

        .parent-v-card:nth-child(3) {
            margin-top: -30px;
        }

        .parent-v-card .pv-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0a1628, #1a3a5c);
            border-radius: 16px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .parent-v-card h4 {
            color: #0a1628;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .parent-v-card p {
            color: #888;
            font-size: 0.85rem;
        }

        /* ===== FAQ SECTION ===== */
        .faq {
            padding: 100px 5%;
            background: #fff;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid #e8e8e8;
            border-radius: 14px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item:hover {
            border-color: #c8a951;
        }

        .faq-question {
            padding: 22px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: #fafafa;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: rgba(200, 169, 81, 0.05);
        }

        .faq-question h4 {
            font-size: 1.05rem;
            color: #0a1628;
            font-weight: 600;
        }

        .faq-question .faq-toggle {
            width: 32px;
            height: 32px;
            background: #0a1628;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c8a951;
            font-weight: 700;
            font-size: 1.2rem;
            transition: transform 0.3s;
            min-width: 32px;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 25px 22px;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ===== CTA SECTION ===== */
        .cta {
            padding: 100px 5%;
            background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 50%, #0a1628 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(200, 169, 81, 0.1), transparent);
            border-radius: 50%;
            top: -100px;
            left: -100px;
        }

        .cta::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(200, 169, 81, 0.08), transparent);
            border-radius: 50%;
            bottom: -100px;
            right: -100px;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: 2.8rem;
            color: #fff;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta h2 span {
            color: #c8a951;
        }

        .cta p {
            color: #8899a6;
            font-size: 1.15rem;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-contact {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .cta-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #8899a6;
        }

        .cta-contact-item .cci-icon {
            width: 40px;
            height: 40px;
            background: rgba(200, 169, 81, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .cta-contact-item span {
            color: #fff;
            font-weight: 600;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #060e1a;
            padding: 60px 5% 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand .logo {
            margin-bottom: 15px;
        }

        .footer-brand>p {
            color: #8899a6;
            font-size: 0.9rem;
            margin-bottom: 20px;
            max-width: 300px;
        }

        .social-links {
            display: flex;
            gap: 10px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8899a6;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: #c8a951;
            color: #0a1628;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #8899a6;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: #c8a951;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-bottom p {
            color: #555;
            font-size: 0.85rem;
        }

        .footer-bottom p span {
            color: #c8a951;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes floatShape {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 75px;
                left: 0;
                right: 0;
                background: rgba(10, 22, 40, 0.98);
                flex-direction: column;
                padding: 30px;
                gap: 20px;
                transform: translateY(-150%);
                transition: transform 0.4s;
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .hero h1 {
                font-size: 2.3rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-stats {
                gap: 25px;
                flex-wrap: wrap;
            }

            .hero-stat h3 {
                font-size: 2rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .results-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .programs-grid {
                grid-template-columns: 1fr;
            }

            .parents-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .cta h2 {
                font-size: 2rem;
            }

            .journey-timeline::before {
                left: 20px;
            }

            .journey-item:nth-child(odd),
            .journey-item:nth-child(even) {
                padding-left: 55px;
                padding-right: 0;
                justify-content: flex-start;
            }

            .journey-item .journey-dot {
                left: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-stats {
                flex-direction: column;
                gap: 15px;
            }

            .results-stats {
                grid-template-columns: 1fr 1fr;
            }

            .parents-visual {
                grid-template-columns: 1fr;
            }

            .parent-v-card:nth-child(2),
            .parent-v-card:nth-child(3) {
                margin-top: 0;
            }

            .cta-contact {
                flex-direction: column;
                align-items: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }
        }



   
        /* ===== ABOUT ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
            background: #fff;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        :root {
            --navy: #0a1628;
            --navy2: #132844;
            --navy3: #1a3a5c;
            --gold: #c8a951;
            --gold2: #e8d48b;
            --gold3: #b8952e;
            --bg1: #f0f4f8;
            --bg2: #f8f9fc;
            --dark: #0a1628;
            --mid: #555;
            --light: #888;
            --muted: #8899a6;
            --white: #fff;
            --radius: 16px;
            --radius2: 24px;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow2: 0 20px 50px rgba(0, 0, 0, 0.15);
            --tr: all 0.4s ease;
        }

        /* ===== NAVBAR (MATCHING HOME PAGE) ===== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(10px);
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 75px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #c8a951, #e8d48b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 900;
            color: #0a1628;
        }

        .logo-text {
            color: #fff;
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .logo-text span {
            color: #c8a951;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links li a {
            color: #ccc;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            padding-bottom: 5px;
        }

        .nav-links li a:hover {
            color: #c8a951;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: #c8a951;
            transition: width 0.3s;
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        .btn-enroll-nav {
            background: linear-gradient(135deg, #c8a951, #b8952e);
            color: #0a1628 !important;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-enroll-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(200, 169, 81, 0.4);
        }

        .btn-enroll-nav::after {
            display: none !important;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: #c8a951;
            border-radius: 3px;
            transition: 0.3s;
        }

        /* ===== PAGE HERO ===== */
        .page-hero {
            min-height: 65vh;
            background: linear-gradient(135deg, rgba(10, 22, 40, 0.94), rgba(26, 58, 92, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 5% 70px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 25% 70%, rgba(200, 169, 81, 0.07) 0%, transparent 55%),
                radial-gradient(circle at 75% 30%, rgba(200, 169, 81, 0.05) 0%, transparent 50%);
        }

        .ph-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .ph-dot {
            position: absolute;
            border: 1px solid rgba(200, 169, 81, 0.12);
            border-radius: 50%;
            animation: dotFloat 7s ease-in-out infinite;
        }

        .ph-dot:nth-child(1) {
            width: 50px;
            height: 50px;
            top: 18%;
            left: 10%;
            animation-delay: 0s;
        }

        .ph-dot:nth-child(2) {
            width: 80px;
            height: 80px;
            top: 60%;
            right: 12%;
            animation-delay: 2s;
        }

        .ph-dot:nth-child(3) {
            width: 35px;
            height: 35px;
            bottom: 20%;
            left: 25%;
            animation-delay: 4s;
        }

        .ph-dot:nth-child(4) {
            width: 65px;
            height: 65px;
            top: 30%;
            right: 20%;
            animation-delay: 1s;
        }

        @keyframes dotFloat {

            0%,
            100% {
                transform: translateY(0) rotate(0);
                opacity: 0.4;
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 1;
            }
        }

        .ph-content {
            position: relative;
            z-index: 2;
            max-width: 850px;
        }

        .page-hero h1 {
            font-size: 3.2rem;
            color: var(--white);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 18px;
            animation: fadeUp 0.8s ease 0.1s both;
        }

        .page-hero h1 .gd {
            background: linear-gradient(135deg, var(--gold), var(--gold2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-hero .ph-sub {
            font-size: 1.12rem;
            color: #b0bec5;
            max-width: 680px;
            margin: 0 auto 28px;
            animation: fadeUp 0.8s ease 0.3s both;
        }

        .ph-tags {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            animation: fadeUp 0.8s ease 0.5s both;
        }

        .ph-tag {
            background: rgba(200, 169, 81, 0.1);
            border: 1px solid rgba(200, 169, 81, 0.25);
            color: var(--gold);
            padding: 7px 18px;
            border-radius: 25px;
            font-size: 0.82rem;
            font-weight: 600;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(25px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== SECTION UTILITIES ===== */
        .sec-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .sec-tag {
            display: inline-block;
            background: rgba(200, 169, 81, 0.12);
            color: var(--gold3);
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .sec-header h2 {
            font-size: 2.5rem;
            color: var(--navy);
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .sec-header h2 .gd {
            color: var(--gold);
        }

        .sec-header .sub {
            font-size: 1.02rem;
            color: var(--mid);
            max-width: 620px;
            margin: 0 auto;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ===== MISSION SECTION ===== */
        .mission {
            padding: 90px 5%;
            background: var(--bg2);
        }

        .mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 28px;
        }

        .mission-card {
            background: var(--white);
            border-radius: 20px;
            padding: 38px 28px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--tr);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--gold2));
            transform: scaleX(0);
            transition: transform 0.4s;
            transform-origin: left;
        }

        .mission-card:hover {
            border-color: rgba(200, 169, 81, 0.3);
            transform: translateY(-6px);
        }

        .mission-card:hover::before {
            transform: scaleX(1);
        }

        .mission-card .mc-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, var(--navy), var(--navy3));
            border-radius: 20px;
            margin: 0 auto 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            transition: var(--tr);
        }

        .mission-card:hover .mc-icon {
            background: linear-gradient(135deg, var(--gold), var(--gold3));
            transform: scale(1.1) rotate(5deg);
        }

        .mission-card h3 {
            font-size: 1.15rem;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 8px;
        }

        .mission-card p {
            font-size: 0.9rem;
            color: var(--light);
        }

        /* ===== WHO WE ARE ===== */
        .who-we-are {
            padding: 90px 5%;
            background: var(--white);
        }

        .wwa-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 55px;
            align-items: center;
        }

        .wwa-visual {
            position: relative;
        }

        .wwa-box {
            width: 100%;
            height: 420px;
            background: linear-gradient(135deg, var(--navy), var(--navy3));
            border-radius: var(--radius2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .wwa-box::before {
            content: '';
            position: absolute;
            width: 220px;
            height: 220px;
            background: rgba(200, 169, 81, 0.06);
            border-radius: 50%;
            top: -70px;
            right: -70px;
        }

        .wwa-box::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 150px;
            background: rgba(200, 169, 81, 0.04);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
        }

        .wwa-box .wwa-big {
            font-size: 5rem;
            margin-bottom: 10px;
            z-index: 2;
        }

        .wwa-box h3 {
            color: var(--gold);
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 3px;
            z-index: 2;
        }

        .wwa-box p {
            color: var(--muted);
            font-size: 0.9rem;
            margin-top: 5px;
            z-index: 2;
        }

        .wwa-float {
            position: absolute;
            background: var(--white);
            padding: 12px 20px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 3;
        }

        .wwa-float.wf1 {
            bottom: -12px;
            left: -12px;
        }

        .wwa-float.wf2 {
            top: -12px;
            right: -12px;
        }

        .wf-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--gold), var(--gold2));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .wf-text h4 {
            font-size: 0.9rem;
            color: var(--navy);
            font-weight: 700;
        }

        .wf-text p {
            font-size: 0.72rem;
            color: var(--light);
        }

        .wwa-content h3 {
            font-size: 2rem;
            color: var(--navy);
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .wwa-content h3 .gd {
            color: var(--gold);
        }

        .wwa-content>p {
            color: var(--mid);
            font-size: 1rem;
            margin-bottom: 18px;
        }

        .wwa-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-top: 22px;
        }

        .wwa-hl {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            background: var(--bg2);
            border-radius: 10px;
            transition: var(--tr);
        }

        .wwa-hl:hover {
            background: rgba(200, 169, 81, 0.08);
            transform: translateX(4px);
        }

        .wwa-hl .hl-icon {
            font-size: 1.2rem;
        }

        .wwa-hl span {
            font-size: 0.88rem;
            color: var(--navy);
            font-weight: 600;
        }

        /* ===== EXAM SECTIONS ===== */
        .exam-section {
            padding: 90px 5%;
            position: relative;
        }

        .exam-section:nth-child(odd) {
            background: var(--bg2);
        }

        .exam-section:nth-child(even) {
            background: var(--white);
        }

        .exam-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 50px;
            align-items: start;
        }

        .exam-wrapper.reverse {
            grid-template-columns: 1.4fr 1fr;
        }

        .exam-visual {
            position: relative;
        }

        .ev-main {
            width: 100%;
            min-height: 380px;
            border-radius: var(--radius2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .ev-main::before {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 50%;
            top: -60px;
            right: -60px;
        }

        .ev-main::after {
            content: '';
            position: absolute;
            width: 140px;
            height: 140px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 50%;
            bottom: -40px;
            left: -40px;
        }

        .ev-rimc {
            background: linear-gradient(135deg, #0a1628, #1a3a5c);
        }

        .ev-rms {
            background: linear-gradient(135deg, #1b5e20, #2e7d32);
        }

        .ev-sainik {
            background: linear-gradient(135deg, #b71c1c, #d32f2f);
        }

        .ev-navodaya {
            background: linear-gradient(135deg, #e65100, #f57c00);
        }

        .ev-boarding {
            background: linear-gradient(135deg, #4a148c, #7b1fa2);
        }

        .ev-main .ev-emoji {
            font-size: 4.5rem;
            z-index: 2;
            margin-bottom: 12px;
        }

        .ev-main h3 {
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 800;
            z-index: 2;
            letter-spacing: 1px;
        }

        .ev-main .ev-sub {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.88rem;
            z-index: 2;
            margin-top: 4px;
        }

        .ev-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 20px;
        }

        .ev-stat {
            background: var(--white);
            padding: 14px 16px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);
        }

        .ev-stat h4 {
            font-size: 1.4rem;
            color: var(--navy);
            font-weight: 800;
        }

        .ev-stat p {
            font-size: 0.7rem;
            color: var(--light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .ev-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 6px 16px;
            border-radius: 20px;
            color: var(--white);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            z-index: 3;
        }

        .exam-content h2 {
            font-size: 2rem;
            color: var(--navy);
            font-weight: 800;
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .exam-content h2 .gd {
            color: var(--gold);
        }

        .exam-content .exam-fullname {
            color: var(--gold3);
            font-size: 0.88rem;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .exam-content .exam-desc {
            color: var(--mid);
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .info-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 22px;
        }

        .info-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 14px;
            background: var(--bg2);
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--navy);
            font-weight: 600;
            border: 1px solid #e8e8e8;
            transition: var(--tr);
        }

        .info-chip:hover {
            border-color: var(--gold);
            background: rgba(200, 169, 81, 0.05);
        }

        .info-chip .ic-emoji {
            font-size: 0.9rem;
        }

        .exam-details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
        }

        .ed-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 12px 14px;
            background: var(--bg2);
            border-radius: 10px;
            border-left: 3px solid var(--gold);
            transition: var(--tr);
        }

        .ed-item:hover {
            background: rgba(200, 169, 81, 0.06);
            transform: translateX(4px);
        }

        .ed-item .edi-icon {
            font-size: 1.1rem;
            margin-top: 2px;
        }

        .ed-item .edi-text strong {
            display: block;
            font-size: 0.82rem;
            color: var(--navy);
            font-weight: 700;
        }

        .ed-item .edi-text span {
            font-size: 0.8rem;
            color: var(--light);
        }

        .exam-pattern {
            background: linear-gradient(135deg, var(--navy), var(--navy3));
            border-radius: 14px;
            padding: 22px 24px;
            margin-bottom: 20px;
        }

        .exam-pattern h4 {
            color: var(--gold);
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pattern-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 8px;
        }

        .pattern-item {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 12px 14px;
            border-radius: 10px;
            text-align: center;
            transition: var(--tr);
        }

        .pattern-item:hover {
            background: rgba(200, 169, 81, 0.12);
        }

        .pattern-item h5 {
            color: var(--gold2);
            font-size: 1.3rem;
            font-weight: 800;
        }

        .pattern-item p {
            color: var(--muted);
            font-size: 0.72rem;
            margin-top: 2px;
        }

        .importance-box {
            background: var(--white);
            border: 2px solid rgba(200, 169, 81, 0.2);
            border-radius: 14px;
            padding: 22px 24px;
            margin-bottom: 20px;
        }

        .importance-box h4 {
            color: var(--navy);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .importance-box h4 .ib-bar {
            width: 4px;
            height: 22px;
            background: var(--gold);
            border-radius: 2px;
        }

        .imp-points {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .imp-point {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .imp-point .ip-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            background: rgba(200, 169, 81, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        .imp-point p {
            font-size: 0.88rem;
            color: var(--mid);
            line-height: 1.6;
        }

        .imp-point p strong {
            color: var(--navy);
        }

        .coaching-box {
            background: linear-gradient(135deg, rgba(200, 169, 81, 0.08), rgba(200, 169, 81, 0.02));
            border: 1px solid rgba(200, 169, 81, 0.2);
            border-radius: 14px;
            padding: 22px 24px;
        }

        .coaching-box h4 {
            color: var(--gold3);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .coaching-reasons {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cr-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            background: var(--white);
            border-radius: 10px;
            transition: var(--tr);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        }

        .cr-item:hover {
            transform: translateX(6px);
            box-shadow: 0 4px 15px rgba(200, 169, 81, 0.1);
        }

        .cr-item .cr-num {
            width: 28px;
            height: 28px;
            min-width: 28px;
            background: linear-gradient(135deg, var(--gold), var(--gold3));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-size: 0.75rem;
            font-weight: 800;
        }

        .cr-item p {
            font-size: 0.85rem;
            color: var(--mid);
        }

        .cr-item p strong {
            color: var(--navy);
        }

        .school-list-box {
            margin-top: 18px;
            padding: 18px 22px;
            background: var(--bg2);
            border-radius: 12px;
            border: 1px solid #e8e8e8;
        }

        .school-list-box h4 {
            font-size: 0.92rem;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .sl-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6px;
        }

        .sl-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 7px 10px;
            background: var(--white);
            border-radius: 8px;
            font-size: 0.8rem;
            color: var(--mid);
            border: 1px solid #f0f0f0;
            transition: var(--tr);
        }

        .sl-item:hover {
            border-color: var(--gold);
        }

        .sl-item .sl-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            min-width: 6px;
        }

        .sl-dot.c-navy {
            background: var(--navy);
        }

        .sl-dot.c-green {
            background: #2e7d32;
        }

        .sl-dot.c-red {
            background: #d32f2f;
        }

        .sl-dot.c-orange {
            background: #f57c00;
        }

        .sl-dot.c-purple {
            background: #7b1fa2;
        }

        /* ===== COMPARISON TABLE SECTION ===== */
        .comparison {
            padding: 90px 5%;
            background: var(--bg2);
        }

        .comp-wrap {
            overflow-x: auto;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .comp-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 950px;
            background: var(--white);
        }

        .comp-table thead th {
            background: var(--navy);
            color: var(--white);
            padding: 16px 14px;
            font-size: 0.85rem;
            font-weight: 700;
            text-align: left;
            white-space: nowrap;
        }

        .comp-table thead th:first-child {
            border-radius: var(--radius) 0 0 0;
        }

        .comp-table thead th:last-child {
            border-radius: 0 var(--radius) 0 0;
        }

        .comp-table thead th.hl {
            background: var(--gold);
            color: var(--navy);
        }

        .comp-table tbody td {
            padding: 13px 14px;
            font-size: 0.82rem;
            color: var(--mid);
            border-bottom: 1px solid #f0f0f0;
        }

        .comp-table tbody tr:hover {
            background: rgba(200, 169, 81, 0.03);
        }

        .comp-table tbody td:first-child {
            font-weight: 700;
            color: var(--navy);
        }

        .comp-table tbody td.hl {
            background: rgba(200, 169, 81, 0.05);
            font-weight: 600;
            color: var(--navy);
        }

        .t-check {
            color: #2e7d32;
            font-weight: 700;
        }

        .t-star {
            color: var(--gold);
        }

        /* ===== WHY COACHING OVERALL ===== */
        .why-overall {
            padding: 90px 5%;
            background: linear-gradient(180deg, var(--navy), var(--navy2));
        }

        .why-overall .sec-header h2 {
            color: var(--white);
        }

        .why-overall .sec-header .sub {
            color: var(--muted);
        }

        .wo-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }

        .wo-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 18px;
            padding: 32px 22px;
            text-align: center;
            transition: var(--tr);
            position: relative;
            overflow: hidden;
        }

        .wo-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold2));
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .wo-card:hover {
            background: rgba(255, 255, 255, 0.07);
            transform: translateY(-5px);
        }

        .wo-card:hover::before {
            transform: scaleX(1);
        }

        .wo-card .wo-icon {
            width: 60px;
            height: 60px;
            background: rgba(200, 169, 81, 0.1);
            border-radius: 16px;
            margin: 0 auto 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: var(--tr);
        }

        .wo-card:hover .wo-icon {
            background: rgba(200, 169, 81, 0.2);
            transform: scale(1.1);
        }

        .wo-card h3 {
            color: var(--white);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .wo-card p {
            color: var(--muted);
            font-size: 0.83rem;
        }

        /* ===== CTA ===== */
        .cta {
            padding: 90px 5%;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 50%, var(--navy) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before,
        .cta::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 169, 81, 0.07), transparent);
        }

        .cta::before {
            width: 380px;
            height: 380px;
            top: -140px;
            left: -90px;
        }

        .cta::after {
            width: 320px;
            height: 320px;
            bottom: -110px;
            right: -70px;
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            max-width: 680px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: 2.5rem;
            color: var(--white);
            font-weight: 800;
            margin-bottom: 16px;
        }

        .cta h2 .gd {
            color: var(--gold);
        }

        .cta .cta-sub {
            color: var(--muted);
            font-size: 1.08rem;
            margin-bottom: 32px;
        }

        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold), var(--gold3));
            color: var(--navy);
            padding: 14px 36px;
            border-radius: 50px;
            font-size: 0.98rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(200, 169, 81, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            padding: 14px 36px;
            border-radius: 50px;
            font-size: 0.98rem;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.25);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--tr);
        }

        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(200, 169, 81, 0.06);
        }

        .contact-row {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
        }

        .ci {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ci-icon {
            width: 36px;
            height: 36px;
            background: rgba(200, 169, 81, 0.12);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
        }

        .ci small {
            color: #666;
            font-size: 0.7rem;
            display: block;
        }

        .ci strong {
            color: var(--white);
            font-size: 0.85rem;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #060d17;
            padding: 50px 5% 22px;
        }

        .ft-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .ft-brand>p {
            color: var(--muted);
            font-size: 0.83rem;
            margin: 14px 0 16px;
            max-width: 270px;
        }

        .socials {
            display: flex;
            gap: 8px;
        }

        .socials a {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            font-size: 0.82rem;
            font-weight: 700;
            transition: var(--tr);
        }

        .socials a:hover {
            background: var(--gold);
            color: var(--navy);
        }

        .ft-col h4 {
            color: var(--white);
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .ft-col ul li {
            margin-bottom: 9px;
        }

        .ft-col ul li a {
            color: var(--muted);
            font-size: 0.83rem;
            transition: color 0.3s;
        }

        .ft-col ul li a:hover {
            color: var(--gold);
        }

        .ft-bottom {
            text-align: center;
            padding-top: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .ft-bottom p {
            color: #444;
            font-size: 0.8rem;
        }

        .ft-bottom p span {
            color: var(--gold);
        }

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .mission-grid {
                grid-template-columns: 1fr 1fr;
            }

            .wo-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .exam-wrapper,
            .exam-wrapper.reverse {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 75px;
                left: 0;
                right: 0;
                background: rgba(10, 22, 40, 0.98);
                flex-direction: column;
                padding: 30px;
                gap: 20px;
                transform: translateY(-150%);
                transition: transform 0.4s;
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .page-hero h1 {
                font-size: 2.1rem;
            }

            .sec-header h2 {
                font-size: 1.9rem;
            }

            .wwa-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .mission-grid {
                grid-template-columns: 1fr;
            }

            .exam-details-grid {
                grid-template-columns: 1fr;
            }

            .sl-grid {
                grid-template-columns: 1fr;
            }

            .wwa-highlights {
                grid-template-columns: 1fr;
            }

            .ft-grid {
                grid-template-columns: 1fr 1fr;
            }

            .cta h2 {
                font-size: 1.9rem;
            }
        }

        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 1.6rem;
            }

            .ph-tags {
                flex-direction: column;
                align-items: center;
            }

            .wo-grid {
                grid-template-columns: 1fr;
            }

            .pattern-grid {
                grid-template-columns: 1fr 1fr;
            }

            .contact-row {
                flex-direction: column;
                align-items: center;
            }

            .ft-grid {
                grid-template-columns: 1fr;
            }

            .cta-btns {
                flex-direction: column;
                align-items: center;
            }

            .info-chips {
                justify-content: center;
            }

            .ev-stats {
                grid-template-columns: 1fr 1fr;
            }
        }


     

        /* ===== ADMISSION ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
            background: #fff
        }

        a {
            text-decoration: none;
            color: inherit
        }

        ul {
            list-style: none
        }

        :root {
            --navy: #0a1628;
            --navy2: #132844;
            --navy3: #1a3a5c;
            --gold: #c8a951;
            --gold2: #e8d48b;
            --gold3: #b8952e;
            --bg2: #f8f9fc;
            --mid: #555;
            --light: #888;
            --muted: #8899a6;
            --white: #fff;
            --radius: 16px;
            --radius2: 24px;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --tr: all .4s ease;
        }

        /* ===== NAVBAR (SAME AS ABOUT) ===== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 22, 40, .95);
            backdrop-filter: blur(10px);
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 75px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, .3)
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #c8a951, #e8d48b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 900;
            color: #0a1628
        }

        .logo-text {
            color: #fff;
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 1px
        }

        .logo-text span {
            color: #c8a951
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center
        }

        .nav-links li a {
            color: #ccc;
            font-size: .95rem;
            font-weight: 500;
            transition: color .3s;
            position: relative;
            padding-bottom: 5px
        }

        .nav-links li a:hover {
            color: #c8a951
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #c8a951;
            transition: width .3s
        }

        .nav-links li a:hover::after {
            width: 100%
        }

        .btn-enroll-nav {
            background: linear-gradient(135deg, #c8a951, #b8952e);
            color: #0a1628 !important;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            transition: transform .3s, box-shadow .3s
        }

        .btn-enroll-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(200, 169, 81, .4)
        }

        .btn-enroll-nav::after {
            display: none !important
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: #c8a951;
            border-radius: 3px;
            transition: .3s
        }

        /* ===== PAGE HERO ===== */
        .page-hero {
            min-height: 68vh;
            background: linear-gradient(135deg, rgba(10, 22, 40, .95), rgba(26, 58, 92, .9));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 5% 75px;
            position: relative;
            overflow: hidden
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 75%, rgba(200, 169, 81, .08) 0%, transparent 55%), radial-gradient(circle at 80% 25%, rgba(200, 169, 81, .06) 0%, transparent 50%)
        }

        .ph-particles {
            position: absolute;
            inset: 0
        }

        .ph-dot {
            position: absolute;
            border: 1px solid rgba(200, 169, 81, .12);
            border-radius: 50%;
            animation: dotFloat 7s ease-in-out infinite
        }

        .ph-dot:nth-child(1) {
            width: 55px;
            height: 55px;
            top: 15%;
            left: 8%;
            animation-delay: 0s
        }

        .ph-dot:nth-child(2) {
            width: 85px;
            height: 85px;
            top: 58%;
            right: 10%;
            animation-delay: 2s
        }

        .ph-dot:nth-child(3) {
            width: 40px;
            height: 40px;
            bottom: 18%;
            left: 22%;
            animation-delay: 4s
        }

        .ph-dot:nth-child(4) {
            width: 68px;
            height: 68px;
            top: 28%;
            right: 18%;
            animation-delay: 1s
        }

        .ph-dot:nth-child(5) {
            width: 48px;
            height: 48px;
            top: 72%;
            left: 60%;
            animation-delay: 3s
        }

        @keyframes dotFloat {

            0%,
            100% {
                transform: translateY(0) rotate(0);
                opacity: .35
            }

            50% {
                transform: translateY(-22px) rotate(180deg);
                opacity: 1
            }
        }

        .ph-content {
            position: relative;
            z-index: 2;
            max-width: 880px
        }

        .hero-badge {
            display: inline-block;
            background: rgba(200, 169, 81, .15);
            border: 1px solid rgba(200, 169, 81, .35);
            color: var(--gold);
            padding: 7px 22px;
            border-radius: 30px;
            font-size: .82rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 18px;
            animation: fadeUp .8s ease both
        }

        .page-hero h1 {
            font-size: 3.2rem;
            color: #fff;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 16px;
            animation: fadeUp .8s ease .15s both
        }

        .page-hero h1 .gd {
            background: linear-gradient(135deg, var(--gold), var(--gold2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        .page-hero .ph-sub {
            font-size: 1.1rem;
            color: #b0bec5;
            max-width: 720px;
            margin: 0 auto 26px;
            animation: fadeUp .8s ease .3s both
        }

        .ph-tags {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            animation: fadeUp .8s ease .45s both
        }

        .ph-tag {
            background: rgba(200, 169, 81, .1);
            border: 1px solid rgba(200, 169, 81, .25);
            color: var(--gold);
            padding: 7px 18px;
            border-radius: 25px;
            font-size: .82rem;
            font-weight: 600
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(28px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* ===== UTILITIES ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto
        }

        .sec-header {
            text-align: center;
            margin-bottom: 50px
        }

        .sec-tag {
            display: inline-block;
            background: rgba(200, 169, 81, .12);
            color: var(--gold3);
            padding: 6px 20px;
            border-radius: 20px;
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px
        }

        .sec-header h2 {
            font-size: 2.5rem;
            color: var(--navy);
            font-weight: 800;
            margin-bottom: 10px;
            line-height: 1.2
        }

        .sec-header h2 .gd {
            color: var(--gold)
        }

        .sec-header .sub {
            font-size: 1rem;
            color: var(--mid);
            max-width: 640px;
            margin: 0 auto
        }

        .ad-sec {
            padding: 90px 5%
        }

        .ad-sec.alt {
            background: var(--bg2)
        }

        /* ===== QUICK OVERVIEW CARDS ===== */
        .overview-row {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
            margin-bottom: 0
        }

        .ov-card {
            background: var(--white);
            border-radius: 14px;
            padding: 22px 16px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 2px solid transparent;
            transition: var(--tr);
            position: relative;
            overflow: hidden
        }

        .ov-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold2));
            transform: scaleX(0);
            transition: transform .4s
        }

        .ov-card:hover {
            border-color: rgba(200, 169, 81, .3);
            transform: translateY(-5px)
        }

        .ov-card:hover::after {
            transform: scaleX(1)
        }

        .ov-card .ov-emoji {
            font-size: 2rem;
            margin-bottom: 6px
        }

        .ov-card h4 {
            font-size: .92rem;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 3px
        }

        .ov-card p {
            font-size: .76rem;
            color: var(--light)
        }

        /* ===== ELIGIBILITY SECTION ===== */
        .elig-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px
        }

        .elig-card {
            background: var(--white);
            border-radius: 16px;
            padding: 24px 22px;
            border: 1px solid #e8e8e8;
            box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
            transition: var(--tr);
            position: relative;
            overflow: hidden
        }

        .elig-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            border-radius: 4px 0 0 4px
        }

        .elig-card.c-navy::before {
            background: var(--navy)
        }

        .elig-card.c-green::before {
            background: #2e7d32
        }

        .elig-card.c-red::before {
            background: #c62828
        }

        .elig-card.c-orange::before {
            background: #e65100
        }

        .elig-card.c-purple::before {
            background: #6a1b9a
        }

        .elig-card:hover {
            transform: translateY(-4px);
            border-color: var(--gold);
            box-shadow: 0 12px 35px rgba(200, 169, 81, .15)
        }

        .ec-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px
        }

        .ec-badge {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem
        }

        .ec-badge.b-navy {
            background: rgba(10, 22, 40, .08)
        }

        .ec-badge.b-green {
            background: rgba(46, 125, 50, .08)
        }

        .ec-badge.b-red {
            background: rgba(198, 40, 40, .08)
        }

        .ec-badge.b-orange {
            background: rgba(230, 81, 0, .08)
        }

        .ec-badge.b-purple {
            background: rgba(106, 27, 154, .08)
        }

        .ec-header h3 {
            font-size: 1.08rem;
            color: var(--navy);
            font-weight: 700
        }

        .ec-header .ec-sub {
            font-size: .78rem;
            color: var(--light);
            display: block
        }

        .ec-table {
            width: 100%;
            font-size: .84rem;
            border-collapse: collapse
        }

        .ec-table td {
            padding: 7px 0;
            border-bottom: 1px solid #f2f2f2;
            vertical-align: top
        }

        .ec-table td:first-child {
            font-weight: 600;
            color: var(--navy);
            width: 40%
        }

        .ec-table td:last-child {
            color: var(--mid)
        }

        .ec-table tr:last-child td {
            border-bottom: none
        }

        /* ===== AGE CRITERIA TABLE ===== */
        .age-wrap {
            background: var(--white);
            border-radius: 18px;
            box-shadow: var(--shadow);
            overflow: hidden
        }

        .age-table {
            width: 100%;
            border-collapse: collapse;
            font-size: .86rem
        }

        .age-table thead th {
            background: var(--navy);
            color: #fff;
            padding: 14px 12px;
            text-align: left;
            font-weight: 700;
            white-space: nowrap
        }

        .age-table thead th:first-child {
            border-radius: var(--radius) 0 0 0
        }

        .age-table thead th:last-child {
            border-radius: 0 var(--radius) 0 0
        }

        .age-table thead th.hl-col {
            background: var(--gold);
            color: var(--navy)
        }

        .age-table tbody td {
            padding: 12px;
            border-bottom: 1px solid #f0f0f0;
            vertical-align: middle
        }

        .age-table tbody tr:hover {
            background: rgba(200, 169, 81, .03)
        }

        .age-table tbody td:first-child {
            font-weight: 700;
            color: var(--navy)
        }

        .age-note {
            font-size: .82rem;
            color: var(--light);
            margin-top: 14px;
            padding: 10px 14px;
            background: #fffde7;
            border-left: 3px solid var(--gold3);
            border-radius: 8px
        }

        /* ===== ENTRANCE PROCESS TIMELINE ===== */
        .timeline-wrap {
            max-width: 820px;
            margin: 0 auto;
            position: relative
        }

        .timeline-wrap::before {
            content: '';
            position: absolute;
            left: 32px;
            top: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, var(--gold), var(--navy));
            border-radius: 3px
        }

        .tl-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            position: relative
        }

        .tl-item:last-child {
            margin-bottom: 0
        }

        .tl-dot {
            width: 22px;
            height: 22px;
            min-width: 22px;
            border-radius: 50%;
            background: var(--gold);
            border: 4px solid var(--bg2);
            box-shadow: 0 0 0 3px rgba(200, 169, 81, .3);
            z-index: 2;
            margin-top: 4px;
            margin-left: 22px
        }

        .tl-content {
            flex: 1;
            background: var(--white);
            border-radius: 14px;
            padding: 20px 22px;
            box-shadow: var(--shadow);
            border: 1px solid #eee;
            transition: var(--tr)
        }

        .tl-content:hover {
            transform: translateX(6px);
            border-color: var(--gold);
            box-shadow: 0 12px 30px rgba(200, 169, 81, .12)
        }

        .tl-step {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold), var(--gold3));
            color: var(--navy);
            padding: 3px 12px;
            border-radius: 8px;
            font-size: .72rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px
        }

        .tl-content h4 {
            font-size: 1.05rem;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 5px
        }

        .tl-content p {
            font-size: .88rem;
            color: var(--mid)
        }

        .tl-content .tl-chips {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-top: 8px
        }

        .tl-chip {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: var(--bg2);
            border: 1px solid #e8e8e8;
            padding: 4px 10px;
            border-radius: 14px;
            font-size: .74rem;
            color: var(--navy);
            font-weight: 600
        }

        /* ===== EXAM-WISE PROCESS CARDS ===== */
        .exam-process-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 18px
        }

        .ep-card {
            background: var(--white);
            border-radius: 14px;
            padding: 20px 18px;
            border: 1px solid #e8e8e8;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
            transition: var(--tr)
        }

        .ep-card:hover {
            transform: translateY(-4px);
            border-color: var(--gold);
            box-shadow: 0 10px 28px rgba(200, 169, 81, .14)
        }

        .ep-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px
        }

        .ep-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem
        }

        .ep-icon.i1 {
            background: rgba(10, 22, 40, .08)
        }

        .ep-icon.i2 {
            background: rgba(46, 125, 50, .08)
        }

        .ep-icon.i3 {
            background: rgba(198, 40, 40, .08)
        }

        .ep-icon.i4 {
            background: rgba(230, 81, 0, .08)
        }

        .ep-icon.i5 {
            background: rgba(106, 27, 154, .08)
        }

        .ep-header h4 {
            font-size: .94rem;
            color: var(--navy);
            font-weight: 700
        }

        .ep-steps {
            list-style: none;
            counter-reset: eps
        }

        .ep-steps li {
            counter-increment: eps;
            position: relative;
            padding-left: 26px;
            font-size: .82rem;
            color: var(--mid);
            margin-bottom: 6px;
            line-height: 1.6
        }

        .ep-steps li::before {
            content: counter(eps);
            position: absolute;
            left: 0;
            top: 1px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(200, 169, 81, .15);
            color: var(--gold3);
            font-size: .68rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center
        }

        /* ===== IMPORTANT DATES ===== */
        .dates-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px
        }

        .date-card {
            background: var(--white);
            border-radius: 14px;
            padding: 20px 18px;
            border: 1px solid #e8e8e8;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
            transition: var(--tr);
            display: flex;
            gap: 14px;
            align-items: flex-start
        }

        .date-card:hover {
            transform: translateY(-3px);
            border-color: var(--gold);
            box-shadow: 0 10px 28px rgba(200, 169, 81, .14)
        }

        .dc-cal {
            min-width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center
        }

        .dc-cal.cal-navy {
            background: var(--navy);
            color: var(--gold)
        }

        .dc-cal.cal-green {
            background: #1b5e20;
            color: #a5d6a7
        }

        .dc-cal.cal-red {
            background: #b71c1c;
            color: #ef9a9a
        }

        .dc-cal.cal-orange {
            background: #e65100;
            color: #ffcc80
        }

        .dc-cal.cal-purple {
            background: #4a148c;
            color: #ce93d8
        }

        .dc-cal.cal-teal {
            background: #004d40;
            color: #80cbc4
        }

        .dc-cal .cal-month {
            font-size: .6rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700
        }

        .dc-cal .cal-icon {
            font-size: 1.2rem;
            margin-bottom: 2px
        }

        .dc-text h4 {
            font-size: .94rem;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 2px
        }

        .dc-text p {
            font-size: .82rem;
            color: var(--mid);
            margin-bottom: 4px
        }

        .dc-badge {
            display: inline-block;
            font-size: .72rem;
            padding: 3px 10px;
            border-radius: 10px;
            font-weight: 600
        }

        .dc-badge.green {
            background: rgba(46, 125, 50, .1);
            color: #2e7d32
        }

        .dc-badge.amber {
            background: rgba(255, 143, 0, .1);
            color: #e65100
        }

        .dc-badge.blue {
            background: rgba(21, 101, 192, .1);
            color: #1565c0
        }

        /* ===== DATES MASTER TABLE ===== */
        .master-table-wrap {
            background: var(--white);
            border-radius: 18px;
            box-shadow: var(--shadow);
            overflow-x: auto;
            margin-top: 30px
        }

        .master-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 780px;
            font-size: .84rem
        }

        .master-table thead th {
            background: var(--navy);
            color: #fff;
            padding: 13px 12px;
            text-align: left;
            font-weight: 700
        }

        .master-table thead th:first-child {
            border-radius: var(--radius) 0 0 0
        }

        .master-table thead th:last-child {
            border-radius: 0 var(--radius) 0 0
        }

        .master-table tbody td {
            padding: 11px 12px;
            border-bottom: 1px solid #f0f0f0;
            color: var(--mid)
        }

        .master-table tbody tr:hover {
            background: rgba(200, 169, 81, .03)
        }

        .master-table tbody td:first-child {
            font-weight: 700;
            color: var(--navy)
        }

        /* ===== HOW TO APPLY ===== */
        .apply-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 40px;
            align-items: flex-start
        }

        .apply-steps {
            display: flex;
            flex-direction: column;
            gap: 14px
        }

        .as-card {
            display: flex;
            gap: 14px;
            padding: 18px 16px;
            background: var(--bg2);
            border-radius: 14px;
            border: 1px solid #e8e8e8;
            transition: var(--tr)
        }

        .as-card:hover {
            transform: translateY(-3px);
            border-color: var(--gold);
            box-shadow: 0 10px 28px rgba(200, 169, 81, .14);
            background: var(--white)
        }

        .as-num {
            width: 38px;
            height: 38px;
            min-width: 38px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--gold), var(--gold3));
            color: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 800
        }

        .as-text h4 {
            font-size: .96rem;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 3px
        }

        .as-text p {
            font-size: .86rem;
            color: var(--mid)
        }

        .as-text p strong {
            color: var(--navy)
        }

        .docs-box {
            background: var(--white);
            border-radius: 16px;
            padding: 22px 20px;
            box-shadow: var(--shadow);
            border: 1px solid #eee
        }

        .docs-box h3 {
            font-size: 1.05rem;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px
        }

        .doc-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            background: var(--bg2);
            border-radius: 10px;
            margin-bottom: 8px;
            font-size: .86rem;
            color: var(--mid);
            transition: var(--tr)
        }

        .doc-item:hover {
            background: rgba(200, 169, 81, .06);
            transform: translateX(4px)
        }

        .doc-icon {
            width: 28px;
            height: 28px;
            min-width: 28px;
            border-radius: 8px;
            background: rgba(200, 169, 81, .12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .8rem
        }

        .contact-sidebar {
            background: linear-gradient(135deg, var(--navy), var(--navy3));
            border-radius: 18px;
            padding: 24px 22px;
            margin-top: 18px
        }

        .contact-sidebar h3 {
            color: var(--gold);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 12px
        }

        .contact-sidebar p {
            color: var(--muted);
            font-size: .88rem;
            margin-bottom: 14px
        }

        .cs-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px
        }

        .cs-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            border-radius: 9px;
            background: rgba(200, 169, 81, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .85rem
        }

        .cs-item .cs-label {
            font-size: .72rem;
            color: var(--muted)
        }

        .cs-item .cs-value {
            font-size: .9rem;
            color: #fff;
            font-weight: 600
        }

        /* ===== FEE STRUCTURE ===== */
        .fee-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 18px
        }

        .fee-card {
            background: var(--white);
            border-radius: 16px;
            padding: 22px 20px;
            border: 2px solid transparent;
            box-shadow: var(--shadow);
            transition: var(--tr);
            position: relative;
            overflow: hidden
        }

        .fee-card.featured {
            border-color: var(--gold)
        }

        .fee-card.featured .fee-popular {
            display: block
        }

        .fee-popular {
            display: none;
            position: absolute;
            top: 14px;
            right: 14px;
            background: linear-gradient(135deg, var(--gold), var(--gold3));
            color: var(--navy);
            padding: 3px 12px;
            border-radius: 14px;
            font-size: .7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px
        }

        .fee-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 14px 35px rgba(200, 169, 81, .18)
        }

        .fee-card .fee-label {
            font-size: .72rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--gold3);
            font-weight: 700;
            margin-bottom: 4px
        }

        .fee-card h3 {
            font-size: 1.1rem;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 4px
        }

        .fee-card .fee-meta {
            font-size: .8rem;
            color: var(--light);
            margin-bottom: 12px
        }

        .fee-card .fee-list {
            font-size: .82rem;
            color: var(--mid);
            padding-left: 16px
        }

        .fee-card .fee-list li {
            margin-bottom: 4px;
            list-style: disc
        }

        /* ===== FAQ ===== */
        .faq-wrap {
            max-width: 820px;
            margin: 0 auto
        }

        .faq-item {
            border: 1px solid #e5e5e5;
            border-radius: 13px;
            margin-bottom: 10px;
            overflow: hidden;
            background: #fff;
            transition: border-color .3s
        }

        .faq-item:hover {
            border-color: var(--gold)
        }

        .faq-q {
            padding: 16px 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: #fafafa;
            transition: background .3s
        }

        .faq-q:hover {
            background: rgba(200, 169, 81, .04)
        }

        .faq-q h4 {
            font-size: .96rem;
            color: var(--navy);
            font-weight: 600
        }

        .faq-toggle {
            width: 28px;
            height: 28px;
            min-width: 28px;
            border-radius: 50%;
            background: var(--navy);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 700;
            transition: transform .3s
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease, padding .35s ease;
            padding: 0 18px
        }

        .faq-a p {
            font-size: .88rem;
            color: var(--mid);
            line-height: 1.7;
            padding-bottom: 14px
        }

        .faq-item.active .faq-a {
            max-height: 280px;
            padding-top: 6px
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg)
        }

        /* ===== CTA ===== */
        .cta {
            padding: 90px 5%;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 50%, var(--navy) 100%);
            text-align: center;
            position: relative;
            overflow: hidden
        }

        .cta::before,
        .cta::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 169, 81, .07), transparent)
        }

        .cta::before {
            width: 400px;
            height: 400px;
            top: -150px;
            left: -100px
        }

        .cta::after {
            width: 340px;
            height: 340px;
            bottom: -120px;
            right: -80px
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto
        }

        .cta h2 {
            font-size: 2.5rem;
            color: #fff;
            font-weight: 800;
            margin-bottom: 16px
        }

        .cta h2 .gd {
            color: var(--gold)
        }

        .cta .cta-sub {
            color: var(--muted);
            font-size: 1.05rem;
            margin-bottom: 30px
        }

        .cta-btns {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 36px
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold), var(--gold3));
            color: var(--navy);
            padding: 14px 36px;
            border-radius: 50px;
            font-size: .98rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform .3s, box-shadow .3s
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(200, 169, 81, .4)
        }

        .btn-outline {
            background: transparent;
            color: #fff;
            padding: 14px 36px;
            border-radius: 50px;
            font-size: .98rem;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, .25);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--tr)
        }

        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(200, 169, 81, .06)
        }

        .contact-row {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap
        }

        .ci {
            display: flex;
            align-items: center;
            gap: 10px
        }

        .ci-icon {
            width: 36px;
            height: 36px;
            background: rgba(200, 169, 81, .12);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .85rem
        }

        .ci small {
            color: #999;
            font-size: .7rem;
            display: block
        }

        .ci strong {
            color: #fff;
            font-size: .85rem
        }

        /* ===== FOOTER (SAME AS ABOUT) ===== */
        .footer {
            background: #060d17;
            padding: 50px 5% 22px
        }

        .ft-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, .06)
        }

        .ft-brand>p {
            color: var(--muted);
            font-size: .83rem;
            margin: 14px 0 16px;
            max-width: 270px
        }

        .socials {
            display: flex;
            gap: 8px
        }

        .socials a {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, .05);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            transition: var(--tr)
        }

        .socials a:hover {
            background: var(--gold);
            color: var(--navy)
        }

        .ft-col h4 {
            color: #fff;
            font-size: .95rem;
            font-weight: 700;
            margin-bottom: 16px
        }

        .ft-col ul li {
            margin-bottom: 9px
        }

        .ft-col ul li a {
            color: var(--muted);
            font-size: .83rem;
            transition: color .3s
        }

        .ft-col ul li a:hover {
            color: var(--gold)
        }

        .ft-bottom {
            text-align: center;
            padding-top: 20px;
            max-width: 1200px;
            margin: 0 auto
        }

        .ft-bottom p {
            color: #444;
            font-size: .8rem
        }

        .ft-bottom p span {
            color: var(--gold)
        }

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .7s ease, transform .7s ease
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0)
        }

        /* ===== RESPONSIVE ===== */
        @media(max-width:1024px) {
            .overview-row {
                grid-template-columns: repeat(3, 1fr)
            }

            .elig-grid {
                grid-template-columns: 1fr
            }

            .exam-process-grid {
                grid-template-columns: 1fr 1fr
            }

            .dates-grid {
                grid-template-columns: 1fr
            }

            .apply-grid {
                grid-template-columns: 1fr
            }

            .fee-grid {
                grid-template-columns: 1fr 1fr
            }

            .ft-grid {
                grid-template-columns: 1fr 1fr
            }
        }

        @media(max-width:768px) {
            .menu-toggle {
                display: flex
            }

            .nav-links {
                position: fixed;
                top: 75px;
                left: 0;
                right: 0;
                background: rgba(10, 22, 40, .98);
                flex-direction: column;
                padding: 30px;
                gap: 20px;
                transform: translateY(-150%);
                transition: transform .4s
            }

            .nav-links.active {
                transform: translateY(0)
            }

            .page-hero h1 {
                font-size: 2.2rem
            }

            .sec-header h2 {
                font-size: 2rem
            }

            .overview-row {
                grid-template-columns: 1fr 1fr
            }

            .exam-process-grid {
                grid-template-columns: 1fr
            }

            .cta h2 {
                font-size: 2rem
            }
        }

        @media(max-width:480px) {
            .page-hero h1 {
                font-size: 1.7rem
            }

            .overview-row {
                grid-template-columns: 1fr 1fr
            }

            .ph-tags {
                flex-direction: column;
                align-items: center
            }

            .cta-btns {
                flex-direction: column;
                align-items: center
            }

            .contact-row {
                flex-direction: column;
                align-items: center
            }

            .ft-grid {
                grid-template-columns: 1fr
            }

            .fee-grid {
                grid-template-columns: 1fr
            }
        }



          /* ===== ADMISSION ===== */
   
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
            background: #fff
        }

        a {
            text-decoration: none;
            color: inherit
        }

        ul {
            list-style: none
        }

        :root {
            --navy: #0a1628;
            --navy2: #132844;
            --navy3: #1a3a5c;
            --gold: #c8a951;
            --gold2: #e8d48b;
            --gold3: #b8952e;
            --bg2: #f8f9fc;
            --mid: #555;
            --light: #888;
            --muted: #8899a6;
            --white: #fff;
            --radius: 16px;
            --radius2: 24px;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --tr: all .4s ease;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 22, 40, .95);
            backdrop-filter: blur(10px);
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 75px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, .3)
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #c8a951, #e8d48b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 900;
            color: #0a1628
        }

        .logo-text {
            color: #fff;
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 1px
        }

        .logo-text span {
            color: #c8a951
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center
        }

        .nav-links li a {
            color: #ccc;
            font-size: .95rem;
            font-weight: 500;
            transition: color .3s;
            position: relative;
            padding-bottom: 5px
        }

        .nav-links li a:hover {
            color: #c8a951
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #c8a951;
            transition: width .3s
        }

        .nav-links li a:hover::after {
            width: 100%
        }

        .btn-enroll-nav {
            background: linear-gradient(135deg, #c8a951, #b8952e);
            color: #0a1628 !important;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            transition: transform .3s, box-shadow .3s
        }

        .btn-enroll-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(200, 169, 81, .4)
        }

        .btn-enroll-nav::after {
            display: none !important
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: #c8a951;
            border-radius: 3px;
            transition: .3s
        }

        /* ===== HERO ===== */
        .page-hero {
            min-height: 62vh;
            background: linear-gradient(135deg, rgba(10, 22, 40, .95), rgba(26, 58, 92, .9));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 5% 70px;
            position: relative;
            overflow: hidden
        }

        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 75%, rgba(200, 169, 81, .08) 0%, transparent 55%), radial-gradient(circle at 80% 25%, rgba(200, 169, 81, .06) 0%, transparent 50%)
        }

        .ph-particles {
            position: absolute;
            inset: 0
        }

        .ph-dot {
            position: absolute;
            border: 1px solid rgba(200, 169, 81, .12);
            border-radius: 50%;
            animation: dotFloat 7s ease-in-out infinite
        }

        .ph-dot:nth-child(1) {
            width: 55px;
            height: 55px;
            top: 15%;
            left: 8%;
            animation-delay: 0s
        }

        .ph-dot:nth-child(2) {
            width: 85px;
            height: 85px;
            top: 58%;
            right: 10%;
            animation-delay: 2s
        }

        .ph-dot:nth-child(3) {
            width: 40px;
            height: 40px;
            bottom: 18%;
            left: 22%;
            animation-delay: 4s
        }

        .ph-dot:nth-child(4) {
            width: 68px;
            height: 68px;
            top: 28%;
            right: 18%;
            animation-delay: 1s
        }

        .ph-dot:nth-child(5) {
            width: 48px;
            height: 48px;
            top: 72%;
            left: 55%;
            animation-delay: 3s
        }

        @keyframes dotFloat {

            0%,
            100% {
                transform: translateY(0) rotate(0);
                opacity: .35
            }

            50% {
                transform: translateY(-22px) rotate(180deg);
                opacity: 1
            }
        }

        .ph-content {
            position: relative;
            z-index: 2;
            max-width: 860px
        }

        .hero-badge {
            display: inline-block;
            background: rgba(200, 169, 81, .15);
            border: 1px solid rgba(200, 169, 81, .35);
            color: var(--gold);
            padding: 7px 22px;
            border-radius: 30px;
            font-size: .82rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 18px;
            animation: fadeUp .8s ease both
        }

        .page-hero h1 {
            font-size: 3.1rem;
            color: #fff;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 16px;
            animation: fadeUp .8s ease .15s both
        }

        .page-hero h1 .gd {
            background: linear-gradient(135deg, var(--gold), var(--gold2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        .page-hero .ph-sub {
            font-size: 1.1rem;
            color: #b0bec5;
            max-width: 720px;
            margin: 0 auto 26px;
            animation: fadeUp .8s ease .3s both
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            animation: fadeUp .8s ease .45s both
        }

        .hs-item {
            text-align: center
        }

        .hs-item h3 {
            font-size: 2rem;
            color: var(--gold);
            font-weight: 800
        }

        .hs-item p {
            font-size: .82rem;
            color: var(--muted)
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(28px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* ===== UTILITIES ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto
        }

        .sec-header {
            text-align: center;
            margin-bottom: 50px
        }

        .sec-tag {
            display: inline-block;
            background: rgba(200, 169, 81, .12);
            color: var(--gold3);
            padding: 6px 20px;
            border-radius: 20px;
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px
        }

        .sec-header h2 {
            font-size: 2.4rem;
            color: var(--navy);
            font-weight: 800;
            margin-bottom: 10px;
            line-height: 1.2
        }

        .sec-header h2 .gd {
            color: var(--gold)
        }

        .sec-header .sub {
            font-size: 1rem;
            color: var(--mid);
            max-width: 640px;
            margin: 0 auto
        }

        .ad-sec {
            padding: 80px 5%
        }

        .ad-sec.alt {
            background: var(--bg2)
        }

        /* ===== CATEGORY FILTER TABS ===== */
        .filter-wrap {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 40px
        }

        .filter-btn {
            padding: 9px 22px;
            border-radius: 30px;
            font-size: .84rem;
            font-weight: 600;
            cursor: pointer;
            border: 2px solid #e0e0e0;
            background: var(--white);
            color: var(--mid);
            transition: var(--tr)
        }

        .filter-btn:hover {
            border-color: var(--gold);
            color: var(--gold3)
        }

        .filter-btn.active {
            background: linear-gradient(135deg, var(--gold), var(--gold3));
            color: var(--navy);
            border-color: var(--gold);
            font-weight: 700
        }

        /* ===== FAQ SECTION ===== */
        .faq-layout {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 40px;
            align-items: flex-start
        }

        .faq-main {
            display: flex;
            flex-direction: column;
            gap: 12px
        }

        .faq-item {
            border: 1px solid #e5e5e5;
            border-radius: 14px;
            overflow: hidden;
            background: #fff;
            transition: border-color .3s, box-shadow .3s
        }

        .faq-item:hover {
            border-color: rgba(200, 169, 81, .4)
        }

        .faq-item.active {
            border-color: var(--gold);
            box-shadow: 0 6px 24px rgba(200, 169, 81, .12)
        }

        .faq-q {
            padding: 18px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            gap: 14px;
            transition: background .3s
        }

        .faq-q:hover {
            background: rgba(200, 169, 81, .03)
        }

        .faq-q-left {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1
        }

        .faq-num {
            width: 32px;
            height: 32px;
            min-width: 32px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--navy), var(--navy3));
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .78rem;
            font-weight: 800;
            transition: var(--tr)
        }

        .faq-item.active .faq-num {
            background: linear-gradient(135deg, var(--gold), var(--gold3));
            color: var(--navy)
        }

        .faq-q h4 {
            font-size: .96rem;
            color: var(--navy);
            font-weight: 600;
            line-height: 1.4
        }

        .faq-cat {
            display: inline-block;
            margin-top: 4px;
            font-size: .68rem;
            padding: 2px 8px;
            border-radius: 8px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .5px
        }

        .cat-general {
            background: rgba(10, 22, 40, .06);
            color: var(--navy)
        }

        .cat-rimc {
            background: rgba(10, 22, 40, .08);
            color: #0a1628
        }

        .cat-rms {
            background: rgba(46, 125, 50, .08);
            color: #2e7d32
        }

        .cat-sainik {
            background: rgba(198, 40, 40, .08);
            color: #c62828
        }

        .cat-navodaya {
            background: rgba(230, 81, 0, .08);
            color: #e65100
        }

        .cat-boarding {
            background: rgba(106, 27, 154, .08);
            color: #6a1b9a
        }

        .cat-coaching {
            background: rgba(200, 169, 81, .12);
            color: var(--gold3)
        }

        .faq-toggle {
            width: 30px;
            height: 30px;
            min-width: 30px;
            border-radius: 50%;
            background: var(--navy);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 700;
            transition: transform .3s, background .3s
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
            background: var(--gold);
            color: var(--navy)
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s ease, padding .4s ease;
            padding: 0 20px
        }

        .faq-item.active .faq-a {
            max-height: 500px;
            padding: 0 20px 18px 64px
        }

        .faq-a p {
            font-size: .9rem;
            color: var(--mid);
            line-height: 1.8;
            margin-bottom: 8px
        }

        .faq-a p strong {
            color: var(--navy)
        }

        .faq-a ul {
            padding-left: 18px;
            margin-bottom: 8px
        }

        .faq-a ul li {
            font-size: .88rem;
            color: var(--mid);
            margin-bottom: 4px;
            list-style: disc
        }

        .faq-a ul li strong {
            color: var(--navy)
        }

        .faq-a .faq-tip {
            margin-top: 8px;
            padding: 10px 14px;
            background: #fffde7;
            border-left: 3px solid var(--gold3);
            border-radius: 8px;
            font-size: .84rem;
            color: #7a6630
        }

        /* ===== SIDEBAR ===== */
        .faq-sidebar {
            position: sticky;
            top: 95px
        }

        .sidebar-card {
            background: var(--white);
            border-radius: 16px;
            padding: 22px 20px;
            box-shadow: var(--shadow);
            border: 1px solid #eee;
            margin-bottom: 18px
        }

        .sidebar-card h3 {
            font-size: 1.02rem;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px
        }

        .sidebar-card p {
            font-size: .86rem;
            color: var(--mid);
            margin-bottom: 10px
        }

        .sb-stat {
            display: flex;
            gap: 10px;
            margin-bottom: 8px
        }

        .sb-stat-box {
            flex: 1;
            text-align: center;
            padding: 12px 8px;
            background: var(--bg2);
            border-radius: 10px
        }

        .sb-stat-box h4 {
            font-size: 1.3rem;
            color: var(--gold3);
            font-weight: 800
        }

        .sb-stat-box p {
            font-size: .7rem;
            color: var(--light);
            margin: 0
        }

        .sb-links {
            display: flex;
            flex-direction: column;
            gap: 6px
        }

        .sb-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 9px 12px;
            background: var(--bg2);
            border-radius: 10px;
            font-size: .84rem;
            color: var(--navy);
            font-weight: 600;
            transition: var(--tr);
            border: 1px solid transparent
        }

        .sb-link:hover {
            background: rgba(200, 169, 81, .06);
            border-color: var(--gold);
            transform: translateX(4px)
        }

        .sb-link .sl-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            min-width: 8px
        }

        .contact-sidebar {
            background: linear-gradient(135deg, var(--navy), var(--navy3));
            border-radius: 16px;
            padding: 22px 20px;
            margin-bottom: 18px
        }

        .contact-sidebar h3 {
            color: var(--gold);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 10px
        }

        .contact-sidebar p {
            color: var(--muted);
            font-size: .86rem;
            margin-bottom: 12px
        }

        .cs-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px
        }

        .cs-icon {
            width: 30px;
            height: 30px;
            min-width: 30px;
            border-radius: 8px;
            background: rgba(200, 169, 81, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .8rem
        }

        .cs-item .cs-label {
            font-size: .7rem;
            color: var(--muted)
        }

        .cs-item .cs-value {
            font-size: .88rem;
            color: #fff;
            font-weight: 600
        }

        .sb-cta {
            display: block;
            text-align: center;
            padding: 12px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--gold), var(--gold3));
            color: var(--navy);
            font-weight: 700;
            font-size: .92rem;
            margin-top: 14px;
            transition: var(--tr)
        }

        .sb-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(200, 169, 81, .35)
        }

        /* ===== STILL HAVE QUESTIONS CTA ===== */
        .still-q {
            padding: 80px 5%;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 50%, var(--navy) 100%);
            text-align: center;
            position: relative;
            overflow: hidden
        }

        .still-q::before,
        .still-q::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 169, 81, .07), transparent)
        }

        .still-q::before {
            width: 400px;
            height: 400px;
            top: -150px;
            left: -100px
        }

        .still-q::after {
            width: 340px;
            height: 340px;
            bottom: -120px;
            right: -80px
        }

        .still-inner {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto
        }

        .still-q h2 {
            font-size: 2.4rem;
            color: #fff;
            font-weight: 800;
            margin-bottom: 14px
        }

        .still-q h2 .gd {
            color: var(--gold)
        }

        .still-q .sq-sub {
            color: var(--muted);
            font-size: 1.02rem;
            margin-bottom: 28px
        }

        .sq-btns {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 34px
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gold), var(--gold3));
            color: var(--navy);
            padding: 14px 36px;
            border-radius: 50px;
            font-size: .98rem;
            font-weight: 700;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform .3s, box-shadow .3s
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(200, 169, 81, .4)
        }

        .btn-outline {
            background: transparent;
            color: #fff;
            padding: 14px 36px;
            border-radius: 50px;
            font-size: .98rem;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, .25);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--tr)
        }

        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(200, 169, 81, .06)
        }

        .contact-row {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap
        }

        .ci {
            display: flex;
            align-items: center;
            gap: 10px
        }

        .ci-icon {
            width: 36px;
            height: 36px;
            background: rgba(200, 169, 81, .12);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .85rem
        }

        .ci small {
            color: #999;
            font-size: .7rem;
            display: block
        }

        .ci strong {
            color: #fff;
            font-size: .85rem
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #060d17;
            padding: 50px 5% 22px
        }

        .ft-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(255, 255, 255, .06)
        }

        .ft-brand>p {
            color: var(--muted);
            font-size: .83rem;
            margin: 14px 0 16px;
            max-width: 270px
        }

        .socials {
            display: flex;
            gap: 8px
        }

        .socials a {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, .05);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            transition: var(--tr)
        }

        .socials a:hover {
            background: var(--gold);
            color: var(--navy)
        }

        .ft-col h4 {
            color: #fff;
            font-size: .95rem;
            font-weight: 700;
            margin-bottom: 16px
        }

        .ft-col ul li {
            margin-bottom: 9px
        }

        .ft-col ul li a {
            color: var(--muted);
            font-size: .83rem;
            transition: color .3s
        }

        .ft-col ul li a:hover {
            color: var(--gold)
        }

        .ft-bottom {
            text-align: center;
            padding-top: 20px;
            max-width: 1200px;
            margin: 0 auto
        }

        .ft-bottom p {
            color: #444;
            font-size: .8rem
        }

        .ft-bottom p span {
            color: var(--gold)
        }

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .7s ease, transform .7s ease
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0)
        }

        /* ===== RESPONSIVE ===== */
        @media(max-width:1024px) {
            .faq-layout {
                grid-template-columns: 1fr;
                gap: 30px
            }

            .faq-sidebar {
                position: static;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px
            }

            .ft-grid {
                grid-template-columns: 1fr 1fr
            }
        }

        @media(max-width:768px) {
            .menu-toggle {
                display: flex
            }

            .nav-links {
                position: fixed;
                top: 75px;
                left: 0;
                right: 0;
                background: rgba(10, 22, 40, .98);
                flex-direction: column;
                padding: 30px;
                gap: 20px;
                transform: translateY(-150%);
                transition: transform .4s
            }

            .nav-links.active {
                transform: translateY(0)
            }

            .page-hero h1 {
                font-size: 2.2rem
            }

            .sec-header h2 {
                font-size: 1.9rem
            }

            .hero-stats {
                gap: 20px
            }

            .faq-sidebar {
                grid-template-columns: 1fr
            }

            .still-q h2 {
                font-size: 2rem
            }
        }

        @media(max-width:480px) {
            .page-hero h1 {
                font-size: 1.65rem
            }

            .hero-stats {
                flex-direction: column;
                gap: 12px
            }

            .filter-wrap {
                gap: 6px
            }

            .filter-btn {
                padding: 7px 14px;
                font-size: .78rem
            }

            .sq-btns {
                flex-direction: column;
                align-items: center
            }

            .contact-row {
                flex-direction: column;
                align-items: center
            }

            .ft-grid {
                grid-template-columns: 1fr
            }
        }


            /* ===== RESULT ===== */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(10px);
            padding: 0 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 75px;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #c8a951, #e8d48b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 900;
            color: #0a1628;
        }

        .logo-text {
            color: #fff;
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .logo-text span {
            color: #c8a951;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links li a {
            color: #ccc;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            padding-bottom: 5px;
        }

        .nav-links li a:hover {
            color: #c8a951;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: #c8a951;
            transition: width 0.3s;
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

        .btn-enroll-nav {
            background: linear-gradient(135deg, #c8a951, #b8952e);
            color: #0a1628 !important;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .btn-enroll-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(200, 169, 81, 0.4);
        }

        .btn-enroll-nav::after {
            display: none !important;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: #c8a951;
            border-radius: 3px;
            transition: 0.3s;
        }

        /* ===== PAGE HERO ===== */
        .page-hero {
            min-height: 60vh;
            background: linear-gradient(135deg, rgba(10, 22, 40, 0.95), rgba(26, 58, 92, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 5% 60px;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(200, 169, 81, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(200, 169, 81, 0.06) 0%, transparent 50%);
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .shape {
            position: absolute;
            border: 2px solid rgba(200, 169, 81, 0.1);
            border-radius: 50%;
            animation: floatShape 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        .shape:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 30%;
            right: 20%;
            animation-delay: 1s;
        }

        .page-hero-content {
            position: relative;
            z-index: 2;
            max-width: 850px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(200, 169, 81, 0.15);
            border: 1px solid rgba(200, 169, 81, 0.4);
            color: #c8a951;
            padding: 8px 25px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: fadeInDown 1s ease;
        }

        .page-hero h1 {
            font-size: 3.2rem;
            color: #fff;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .page-hero h1 .highlight {
            background: linear-gradient(135deg, #c8a951, #e8d48b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-hero p {
            font-size: 1.15rem;
            color: #b0bec5;
            max-width: 650px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.4s both;
        }

        /* ===== STATS BAR ===== */
        .stats-bar {
            background: linear-gradient(135deg, #c8a951, #b8952e);
            padding: 45px 5%;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 10%;
            height: 80%;
            width: 1px;
            background: rgba(10, 22, 40, 0.15);
        }

        .stat-item .stat-emoji {
            font-size: 1.8rem;
            margin-bottom: 5px;
        }

        .stat-item h3 {
            font-size: 2.8rem;
            color: #0a1628;
            font-weight: 900;
            line-height: 1;
        }

        .stat-item p {
            font-size: 0.9rem;
            color: rgba(10, 22, 40, 0.65);
            font-weight: 600;
            margin-top: 5px;
        }

        /* ===== SECTION COMMON ===== */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            background: rgba(200, 169, 81, 0.15);
            color: #b8952e;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: #0a1628;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-header h2 span {
            color: #c8a951;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 650px;
            margin: 0 auto;
        }

        /* ===== STUDENT IMAGE GALLERY ===== */
        .student-gallery {
            padding: 100px 5%;
            background: #f8f9fc;
        }

        /* Filter Tabs */
        .gallery-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .gallery-tab {
            padding: 12px 28px;
            border-radius: 50px;
            border: 2px solid #e0e0e0;
            background: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            color: #555;
            cursor: pointer;
            transition: all 0.3s;
        }

        .gallery-tab:hover {
            border-color: #c8a951;
            color: #b8952e;
        }

        .gallery-tab.active {
            background: linear-gradient(135deg, #c8a951, #b8952e);
            color: #0a1628;
            border-color: #c8a951;
            box-shadow: 0 5px 20px rgba(200, 169, 81, 0.3);
        }

        /* Image Cards Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .student-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.4s;
            border: 2px solid transparent;
        }

        .student-card:hover {
            transform: translateY(-8px);
            border-color: #c8a951;
            box-shadow: 0 15px 40px rgba(200, 169, 81, 0.2);
        }

        .student-card .card-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
        }

        .student-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .student-card:hover .card-image img {
            transform: scale(1.05);
        }

        /* Placeholder when no image */
        .student-card .card-image .placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0a1628, #1a3a5c);
        }

        .placeholder .placeholder-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #c8a951, #e8d48b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 900;
            color: #0a1628;
            margin-bottom: 10px;
        }

        .placeholder p {
            color: #c8a951;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* Exam badge overlay */
        .card-image .exam-overlay {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            backdrop-filter: blur(5px);
        }

        .exam-overlay.rimc {
            background: rgba(200, 169, 81, 0.9);
            color: #0a1628;
        }

        .exam-overlay.rms {
            background: rgba(30, 136, 229, 0.9);
            color: #fff;
        }

        .exam-overlay.sainik {
            background: rgba(67, 160, 71, 0.9);
            color: #fff;
        }

        .exam-overlay.navodaya {
            background: rgba(156, 39, 176, 0.9);
            color: #fff;
        }

        /* Year badge overlay */
        .card-image .year-overlay {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(10, 22, 40, 0.8);
            color: #c8a951;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            backdrop-filter: blur(5px);
        }

        .student-card .card-info {
            padding: 20px 22px;
            text-align: center;
        }

        .card-info h3 {
            font-size: 1.15rem;
            color: #0a1628;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .card-info .card-exam {
            color: #b8952e;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .card-info .card-detail {
            color: #888;
            font-size: 0.82rem;
            margin-top: 3px;
        }

        /* Selected badge at bottom */
        .card-info .selected-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 10px;
            background: rgba(76, 175, 80, 0.1);
            color: #43a047;
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.78rem;
            font-weight: 600;
        }

        .selected-tag .dot {
            width: 6px;
            height: 6px;
            background: #43a047;
            border-radius: 50%;
        }

        /* ===== EXAM WISE STATS ===== */
        .exam-stats {
            padding: 100px 5%;
            background: linear-gradient(180deg, #0a1628, #132844);
        }

        .exam-stats .section-header h2 {
            color: #fff;
        }

        .exam-stats .section-header p {
            color: #8899a6;
        }

        .exam-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .exam-stat-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .exam-stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .exam-stat-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-8px);
        }

        .exam-stat-card:hover::before {
            opacity: 1;
        }

        .exam-stat-card.rimc-card::before {
            background: linear-gradient(90deg, #c8a951, #e8d48b);
        }

        .exam-stat-card.rms-card::before {
            background: linear-gradient(90deg, #1565c0, #42a5f5);
        }

        .exam-stat-card.sainik-card::before {
            background: linear-gradient(90deg, #2e7d32, #66bb6a);
        }

        .exam-stat-card.navodaya-card::before {
            background: linear-gradient(90deg, #7b1fa2, #ba68c8);
        }

        .exam-stat-card .es-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .exam-stat-card h3 {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .exam-stat-card .es-number {
            font-size: 3rem;
            font-weight: 900;
            color: #c8a951;
            line-height: 1;
            margin-bottom: 5px;
        }

        .exam-stat-card .es-label {
            color: #8899a6;
            font-size: 0.85rem;
        }

        .exam-stat-card .es-rate {
            display: inline-block;
            margin-top: 15px;
            background: rgba(200, 169, 81, 0.15);
            color: #c8a951;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        /* ===== PHOTO COLLAGE / WALL ===== */
        .photo-wall {
            padding: 100px 5%;
            background: #fff;
        }

        .masonry-grid {
            max-width: 1200px;
            margin: 0 auto;
            columns: 4;
            column-gap: 20px;
        }

        .masonry-item {
            break-inside: avoid;
            margin-bottom: 20px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
            transition: all 0.4s;
            cursor: pointer;
        }

        .masonry-item:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .masonry-item img {
            width: 100%;
            display: block;
            transition: transform 0.5s;
        }

        .masonry-item:hover img {
            transform: scale(1.05);
        }

        .masonry-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(10, 22, 40, 0.9));
            padding: 25px 15px 15px;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .masonry-item:hover .masonry-overlay {
            opacity: 1;
        }

        .masonry-overlay h4 {
            color: #fff;
            font-size: 0.95rem;
            font-weight: 600;
        }

        .masonry-overlay p {
            color: #c8a951;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Placeholder images with varied heights */
        .masonry-placeholder {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0a1628, #1a3a5c);
        }

        .masonry-placeholder.h1 {
            height: 250px;
        }

        .masonry-placeholder.h2 {
            height: 300px;
        }

        .masonry-placeholder.h3 {
            height: 200px;
        }

        .masonry-placeholder.h4 {
            height: 350px;
        }

        .masonry-placeholder .mp-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #c8a951, #e8d48b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            color: #0a1628;
            font-size: 1.3rem;
        }

        .masonry-placeholder .mp-name {
            color: #fff;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 8px;
        }

        .masonry-placeholder .mp-exam {
            color: #c8a951;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            padding: 100px 5%;
            background: #f8f9fc;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 20px;
            padding: 35px 30px;
            transition: all 0.4s;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 15px;
            right: 25px;
            font-size: 4rem;
            color: rgba(200, 169, 81, 0.12);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-card:hover {
            border-color: #c8a951;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(200, 169, 81, 0.1);
        }

        .testimonial-card .stars {
            color: #c8a951;
            font-size: 1.1rem;
            margin-bottom: 15px;
            letter-spacing: 3px;
        }

        .testimonial-card .quote {
            color: #555;
            font-size: 0.95rem;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 20px;
            padding-left: 18px;
            border-left: 3px solid #c8a951;
        }

        .testimonial-card .author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author .avatar {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #c8a951, #e8d48b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: #0a1628;
            font-size: 1rem;
        }

        .author-info h4 {
            color: #0a1628;
            font-size: 1rem;
            font-weight: 600;
        }

        .author-info p {
            color: #888;
            font-size: 0.8rem;
        }

        /* ===== CTA ===== */
        .cta {
            padding: 100px 5%;
            background: linear-gradient(135deg, #0a1628 0%, #1a3a5c 50%, #0a1628 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(200, 169, 81, 0.1), transparent);
            border-radius: 50%;
            top: -100px;
            left: -100px;
        }

        .cta::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(200, 169, 81, 0.08), transparent);
            border-radius: 50%;
            bottom: -100px;
            right: -100px;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: 2.8rem;
            color: #fff;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta h2 span {
            color: #c8a951;
        }

        .cta p {
            color: #8899a6;
            font-size: 1.15rem;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #c8a951, #b8952e);
            color: #0a1628;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 700;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(200, 169, 81, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-secondary:hover {
            border-color: #c8a951;
            color: #c8a951;
            background: rgba(200, 169, 81, 0.1);
        }

        .cta-contact {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .cta-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #8899a6;
        }

        .cta-contact-item .cci-icon {
            width: 40px;
            height: 40px;
            background: rgba(200, 169, 81, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .cta-contact-item span {
            color: #fff;
            font-weight: 600;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #060e1a;
            padding: 60px 5% 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand .logo {
            margin-bottom: 15px;
        }

        .footer-brand>p {
            color: #8899a6;
            font-size: 0.9rem;
            margin-bottom: 20px;
            max-width: 300px;
        }

        .social-links {
            display: flex;
            gap: 10px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #8899a6;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: #c8a951;
            color: #0a1628;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: #8899a6;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: #c8a951;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-bottom p {
            color: #555;
            font-size: 0.85rem;
        }

        .footer-bottom p span {
            color: #c8a951;
        }

        /* ===== LIGHTBOX ===== */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 22, 40, 0.95);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 700px;
            width: 100%;
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            animation: fadeInUp 0.4s ease;
        }

        .lightbox-content img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }

        .lightbox-info {
            padding: 25px;
            text-align: center;
        }

        .lightbox-info h3 {
            font-size: 1.3rem;
            color: #0a1628;
            font-weight: 700;
        }

        .lightbox-info p {
            color: #b8952e;
            font-weight: 600;
        }

        .lightbox-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: rgba(10, 22, 40, 0.8);
            border: none;
            border-radius: 50%;
            color: #c8a951;
            font-size: 1.3rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            z-index: 2;
        }

        .lightbox-close:hover {
            background: #c8a951;
            color: #0a1628;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes floatShape {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .exam-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .masonry-grid {
                columns: 3;
            }

            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 75px;
                left: 0;
                right: 0;
                background: rgba(10, 22, 40, 0.98);
                flex-direction: column;
                padding: 30px;
                gap: 20px;
                transform: translateY(-150%);
                transition: transform 0.4s;
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .page-hero h1 {
                font-size: 2.2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .exam-stats-grid {
                grid-template-columns: 1fr;
            }

            .masonry-grid {
                columns: 2;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .cta h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .page-hero h1 {
                font-size: 1.7rem;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .stat-item h3 {
                font-size: 2rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .masonry-grid {
                columns: 1;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-contact {
                flex-direction: column;
                align-items: center;
            }

            .gallery-tabs {
                gap: 8px;
            }

            .gallery-tab {
                padding: 10px 18px;
                font-size: 0.85rem;
            }
        }
