    /* ===== CSS VARIABLES ===== */
    :root {
      --primary: #1a3a6b;
      --primary-dark: #122b52;
      --primary-light: #2a4f8a;
      --gold: #c9a227;
      --gold-dark: #a88120;
      --white: #ffffff;
      --bg: #ffffff;
      --bg-alt: #f4f7fc;
      --text: #1a1a2e;
      --text-muted: #556080;
      --card-bg: #ffffff;
      --card-border: #dde4f0;
      --nav-bg: #ffffff;
      --nav-shadow: 0 2px 20px rgba(26,58,107,0.12);
      --footer-bg: #0f2444;
      --input-bg: #ffffff;
      --input-border: #c5cfe0;
      --section-title-color: #1a3a6b;
    }
    [data-theme="dark"] {
      --bg: #0d1b33;
      --bg-alt: #112040;
      --text: #e8edf5;
      --text-muted: #94a8cc;
      --card-bg: #162545;
      --card-border: #253a60;
      --nav-bg: #0d1b33;
      --nav-shadow: 0 2px 20px rgba(0,0,0,0.4);
      --footer-bg: #070f1e;
      --input-bg: #162545;
      --input-border: #253a60;
      --section-title-color: #6fa3ef;
    }

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      transition: background 0.3s, color 0.3s;
      line-height: 1.7;
      overflow-x: hidden;
    }
    h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.3; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }
    section { padding: 40px 0; }
    .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
    .section-tag {
      display: inline-block;
      background: rgba(201,162,39,0.15);
      color: var(--gold);
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      color: var(--section-title-color);
      margin-bottom: 14px;
    }
    .section-subtitle {
      color: var(--text-muted);
      font-size: 1.05rem;
      max-width: 620px;
    }
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-header .section-subtitle { margin: 0 auto; }
    .divider {
      width: 56px; height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--gold));
      border-radius: 2px;
      margin: 14px auto 0;
    }

    /* ===== NAVBAR — always dark ===== */
    #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: #0d1b33;
      transition: box-shadow 0.3s;
      border-bottom: 1px solid transparent;
    }
    #navbar.scrolled {
      box-shadow: 0 2px 20px rgba(0,0,0,0.4);
      border-bottom-color: rgba(255,255,255,0.08);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 72px; padding: 0 24px; max-width: 1180px; margin: 0 auto;
    }
    .nav-brand { display: flex; align-items: center; gap: 12px; }
    .nav-logo {
      width: 333px; height: auto; max-height: 60px; object-fit: contain;
      border-radius: 0; background: transparent; display: block;
    }
    .nav-logo-fallback {
      width: 140px; height: 52px; border-radius: 6px;
      background: var(--primary);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-family: 'Poppins', sans-serif;
      font-weight: 700; font-size: 1rem; letter-spacing: 0.05em;
      flex-shrink: 0;
    }
    .nav-links { display: flex; align-items: center; gap: 2px; }
    .nav-links a {
      font-family: 'Poppins', sans-serif; font-weight: 500;
      font-size: 0.8rem; color: #e8edf5;
      padding: 7px 9px; border-radius: 6px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover { color: #6fa3ef; background: rgba(255,255,255,0.08); }
    .nav-right { display: flex; align-items: center; gap: 10px; }
    .theme-toggle {
      width: 40px; height: 40px; border-radius: 8px;
      border: 1.5px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.07);
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      color: #e8edf5; transition: all 0.2s;
    }
    .theme-toggle:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 8px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: #e8edf5; border-radius: 2px;
      transition: all 0.3s;
    }
    .mobile-nav {
      display: none; flex-direction: column; gap: 4px;
      background: #0d1b33; padding: 12px 24px 20px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: 'Poppins', sans-serif; font-weight: 500;
      font-size: 0.95rem; color: #e8edf5; padding: 10px 12px;
      border-radius: 8px; transition: background 0.2s, color 0.2s;
    }
    .mobile-nav a:hover { background: rgba(255,255,255,0.08); color: #6fa3ef; }

    /* ===== HERO ===== */
    #hero {
      min-height: 100vh; position: relative;
      display: flex; align-items: center;
      background: linear-gradient(135deg, #0a1e42 0%, #1a3a6b 50%, #0d2855 100%);
      overflow: hidden;
    }
    .hero-bg-img {
      position: absolute; inset: 0;
      background-image: url('images/banner1.png');
      background-size: cover; background-position: center top;
      opacity: 0.35;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(10,30,66,0.85) 0%, rgba(26,58,107,0.7) 60%, rgba(13,40,85,0.9) 100%);
    }
    .hero-pattern {
      position: absolute; inset: 0; opacity: 0.04;
      background-image: repeating-linear-gradient(
        45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%
      );
      background-size: 30px 30px;
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 780px; padding: 120px 24px 80px;
      margin: 0 auto; text-align: center;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,162,39,0.2); border: 1px solid rgba(201,162,39,0.4);
      color: var(--gold); font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 7px 18px; border-radius: 30px; margin-bottom: 28px;
    }
    .hero-title {
      font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 5vw, 3.6rem);
      font-weight: 700; color: var(--white); line-height: 1.15;
      margin-bottom: 22px;
    }
    .hero-title span { color: var(--gold); }
    .hero-subtitle {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: rgba(255,255,255,0.82); margin-bottom: 40px; line-height: 1.7;
    }
    .hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold); color: #1a1a00;
      font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
      padding: 14px 32px; border-radius: 10px; border: none; cursor: pointer;
      transition: all 0.25s; box-shadow: 0 4px 20px rgba(201,162,39,0.4);
    }
    .btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,0.5); }
    .nav-cta { padding: 8px 16px; font-size: 0.88rem; }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; color: var(--white);
      font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
      padding: 14px 32px; border-radius: 10px; border: 2px solid rgba(255,255,255,0.6);
      cursor: pointer; transition: all 0.25s;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }
    .hero-scroll {
      position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.08em;
    }
    .scroll-dot {
      width: 28px; height: 44px; border: 2px solid rgba(255,255,255,0.3);
      border-radius: 14px; display: flex; align-items: flex-start; justify-content: center;
      padding-top: 6px;
    }
    .scroll-dot::after {
      content: ''; width: 4px; height: 8px;
      background: rgba(255,255,255,0.6); border-radius: 2px;
      animation: scrollBounce 1.8s ease-in-out infinite;
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); opacity: 1; }
      50% { transform: translateY(8px); opacity: 0.3; }
    }

    /* ===== ABOUT ===== */
    #about { background: var(--bg); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    }
    .about-text p { color: var(--text-muted); margin-bottom: 18px; font-size: 1.02rem; }
    .about-text .section-tag { margin-bottom: 10px; }
    .about-text .section-title { text-align: left; margin-bottom: 20px; }
    .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-card {
      background: var(--card-bg); border: 1px solid var(--card-border);
      border-radius: 16px; padding: 28px 24px; text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,58,107,0.1); }
    .stat-card:nth-child(1) { border-top: 3px solid var(--primary); }
    .stat-card:nth-child(2) { border-top: 3px solid var(--gold); }
    .stat-card:nth-child(3) { border-top: 3px solid #2a7a4b; }
    .stat-card:nth-child(4) { border-top: 3px solid #7a2a5a; }
    .stat-value {
      font-family: 'Poppins', sans-serif; font-size: 1.8rem; font-weight: 700;
      color: var(--primary); line-height: 1; margin-bottom: 6px;
    }
    [data-theme="dark"] .stat-value { color: #6fa3ef; }
    .stat-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

    /* ===== COURSES ===== */
    #courses { background: var(--bg-alt); }
    .courses-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .course-card {
      background: var(--card-bg); border: 1px solid var(--card-border);
      border-radius: 18px; padding: 36px 30px;
      transition: transform 0.25s, box-shadow 0.25s;
      border-bottom: 4px solid transparent;
    }
    .course-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,58,107,0.12); border-bottom-color: var(--primary); }
    .course-card:nth-child(2):hover { border-bottom-color: var(--gold); }
    .course-card:nth-child(3):hover { border-bottom-color: #2a7a4b; }
    .feature-header {
      display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
    }
    .feature-header .icon-box {
      width: 48px; height: 48px; border-radius: 12px;
      background: rgba(26,58,107,0.1); display: flex; align-items: center; justify-content: center;
      color: var(--primary); flex-shrink: 0;
    }
    .course-card:nth-child(2) .icon-box { background: rgba(201,162,39,0.1); color: var(--gold-dark); }
    .course-card:nth-child(3) .icon-box { background: rgba(42,122,75,0.1); color: #2a7a4b; }
    .feature-header h3 {
      font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 700;
      color: var(--text);
    }
    .course-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
    .course-badge {
      display: inline-block; background: rgba(26,58,107,0.1); color: var(--primary);
      font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 20px;
      margin-top: 14px;
    }
    [data-theme="dark"] .course-badge { background: rgba(111,163,239,0.15); color: #6fa3ef; }

    /* ===== WHY CHOOSE US ===== */
    #why-us { background: var(--bg); }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .why-card {
      background: var(--card-bg); border: 1px solid var(--card-border);
      border-radius: 16px; padding: 28px 22px;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }
    .why-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 36px rgba(26,58,107,0.1);
      border-color: var(--primary);
    }
    .why-card .feature-header { margin-bottom: 10px; }
    .why-card .icon-box {
      width: 44px; height: 44px; border-radius: 10px;
      background: rgba(26,58,107,0.08); color: var(--primary);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .why-card .feature-header h3 { font-size: 1rem; }
    .why-card p { font-size: 0.88rem; color: var(--text-muted); }

    /* ===== FACILITIES ===== */
    #facilities { background: var(--bg-alt); }
    .facilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .facility-card {
      background: var(--card-bg); border: 1px solid var(--card-border);
      border-radius: 14px; padding: 22px 18px;
      transition: all 0.25s;
    }
    .facility-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 28px rgba(26,58,107,0.1);
      border-color: var(--gold);
    }
    .facility-card .feature-header { margin-bottom: 8px; }
    .facility-card .icon-box {
      width: 40px; height: 40px; border-radius: 10px;
      background: rgba(201,162,39,0.1); color: var(--gold-dark);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .facility-card .feature-header h3 { font-size: 0.95rem; font-weight: 600; }
    .facility-card p { font-size: 0.82rem; color: var(--text-muted); }

    /* ===== TESTIMONIALS ===== */
    #testimonials { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
    #testimonials .section-title { color: var(--white); }
    #testimonials .section-subtitle { color: rgba(255,255,255,0.7); }
    #testimonials .divider { background: linear-gradient(90deg, var(--gold), rgba(201,162,39,0.3)); }
    #testimonials .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
    .testimonials-wrapper { position: relative; overflow: hidden; }
    .testimonials-track {
      display: flex; gap: 24px;
      overflow-x: auto; scroll-snap-type: x mandatory;
      scrollbar-width: none; padding-bottom: 8px;
    }
    .testimonials-track::-webkit-scrollbar { display: none; }
    .testimonial-card {
      flex: 0 0 320px; background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);
      border-radius: 20px; padding: 32px 28px;
      scroll-snap-align: start;
    }
    .stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
    .testimonial-text {
      font-style: italic; color: rgba(255,255,255,0.9);
      font-size: 0.95rem; line-height: 1.7; margin-bottom: 22px;
    }
    .testimonial-author { display: flex; align-items: center; gap: 14px; }
    .author-avatar {
      width: 46px; height: 46px; border-radius: 50%;
      background: rgba(201,162,39,0.3); border: 2px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-family: 'Poppins', sans-serif;
      font-weight: 700; font-size: 1rem; flex-shrink: 0;
    }
    .author-name { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--white); font-size: 0.95rem; }
    .author-role { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
    .testi-nav { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
    .testi-btn {
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
      color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }
    .testi-btn:hover { background: var(--gold); border-color: var(--gold); color: #1a1a00; }

    /* ===== GALLERY ===== */
    #gallery { background: var(--bg); }
    .gallery-grid {
      columns: 4;
      column-gap: 12px;
    }
    .gallery-item {
      break-inside: avoid;
      margin-bottom: 12px;
      border-radius: 14px; overflow: hidden; cursor: pointer;
      position: relative;
    }
    .gallery-item img {
      width: 100%; height: auto; display: block;
      transition: transform 0.4s;
    }
    .gallery-item:hover img { transform: scale(1.04); }
    .gallery-fallback {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7); font-size: 0.85rem; gap: 8px;
    }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: rgba(26,58,107,0.5); opacity: 0;
      transition: opacity 0.3s;
      display: flex; align-items: center; justify-content: center;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay-icon { color: white; }

    /* ===== LIGHTBOX ===== */
    #lightbox {
      display: none; position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,0.95);
      flex-direction: column; align-items: center; justify-content: center;
    }
    #lightbox.open { display: flex; }
    .lightbox-header {
      position: absolute; top: 0; left: 0; right: 0;
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 24px; z-index: 2;
    }
    .lightbox-counter { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
    .lightbox-close {
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
      color: white; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }
    .lightbox-close:hover { background: #e53e3e; border-color: #e53e3e; }
    .lightbox-img-wrap {
      max-width: 90vw; max-height: 82vh;
      display: flex; align-items: center; justify-content: center;
    }
    #lightbox-img {
      max-width: 90vw; max-height: 82vh;
      object-fit: contain; border-radius: 10px;
      transition: opacity 0.25s;
    }
    .lightbox-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 52px; height: 52px; border-radius: 50%;
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
      color: white; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }
    .lightbox-nav:hover { background: var(--gold); border-color: var(--gold); color: #1a1a00; }
    #lightbox-prev { left: 20px; }
    #lightbox-next { right: 20px; }

    /* ===== RESULTS ===== */
    #results { background: var(--bg); }
    .results-img-wrap {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }
    .results-img {
      width: 100%;
      max-width: 900px;
      border-radius: 18px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.12);
      border: 1px solid var(--card-border);
    }

    /* ===== ADMISSIONS ===== */
    #admissions {
      background: linear-gradient(135deg, #0a1e42 0%, var(--primary) 60%, #1a4a7a 100%);
      position: relative; overflow: hidden;
    }
    .admissions-pattern {
      position: absolute; inset: 0; opacity: 0.05;
      background-image: repeating-linear-gradient(
        45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%
      );
      background-size: 30px 30px;
    }
    .admissions-content {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
    }
    .admissions-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,162,39,0.2); border: 1px solid rgba(201,162,39,0.5);
      color: var(--gold); font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 7px 18px; border-radius: 30px; margin-bottom: 18px;
    }
    .admissions-title {
      font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 700; color: var(--white); margin-bottom: 14px;
    }
    .admissions-title span { color: var(--gold); }
    .admissions-text { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 20px; }
    .admissions-eligibility {
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      border-radius: 12px; padding: 18px 22px; margin-bottom: 28px;
    }
    .admissions-eligibility p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
    .admissions-eligibility strong { color: var(--gold); }
    .admissions-cta { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-gold {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold); color: #1a1100;
      font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem;
      padding: 14px 28px; border-radius: 10px; border: none; cursor: pointer;
      transition: all 0.25s; box-shadow: 0 4px 20px rgba(201,162,39,0.35);
    }
    .btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
    .btn-call {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.12); color: var(--white);
      font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
      padding: 14px 28px; border-radius: 10px; border: 2px solid rgba(255,255,255,0.4);
      cursor: pointer; transition: all 0.25s;
    }
    .btn-call:hover { background: rgba(255,255,255,0.2); border-color: var(--white); }
    .admissions-image {
      width: 260px; flex-shrink: 0; position: relative;
    }
    .admissions-card {
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      border-radius: 20px; padding: 30px 24px; text-align: center;
    }
    .admissions-card-icon {
      width: 64px; height: 64px; border-radius: 50%;
      background: rgba(201,162,39,0.2); border: 2px solid var(--gold);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); margin: 0 auto 18px;
    }
    .admissions-card h4 {
      font-family: 'Poppins', sans-serif; color: var(--white);
      font-size: 1.1rem; margin-bottom: 12px;
    }
    .admissions-card p { color: rgba(255,255,255,0.7); font-size: 0.88rem; line-height: 1.6; }

    /* ===== CONTACT ===== */
    #contact { background: var(--bg-alt); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
    .contact-info h3 {
      font-family: 'Poppins', sans-serif; font-size: 1.3rem;
      color: var(--primary); margin-bottom: 24px;
    }
    [data-theme="dark"] .contact-info h3 { color: #6fa3ef; }
    .contact-detail {
      display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px;
    }
    .contact-detail-icon {
      width: 42px; height: 42px; border-radius: 10px;
      background: rgba(26,58,107,0.1); color: var(--primary);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    [data-theme="dark"] .contact-detail-icon { background: rgba(111,163,239,0.15); color: #6fa3ef; }
    .contact-detail-text { font-size: 0.95rem; color: var(--text); }
    .contact-detail-text span { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
    .social-links { display: flex; gap: 12px; margin-top: 28px; }
    .social-link {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--primary); color: white;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s; font-size: 0.95rem;
    }
    .social-link:hover { background: var(--gold); color: #1a1100; transform: translateY(-3px); }
    .social-link.whatsapp { background: #25d366; }
    .social-link.whatsapp:hover { background: #1ba852; }
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block; font-size: 0.85rem; font-weight: 600;
      color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 12px 16px;
      border: 1.5px solid var(--input-border);
      border-radius: 10px; background: var(--input-bg);
      color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.95rem;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,58,107,0.12);
    }
    .contact-map-large {
      border-radius: 20px; overflow: hidden;
      border: 1px solid var(--card-border);
      background: var(--card-bg);
      display: flex; flex-direction: column;
    }
    .map-large-header {
      display: flex; align-items: center; gap: 8px;
      padding: 16px 20px;
      font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
      color: var(--primary); border-bottom: 1px solid var(--card-border);
    }
    [data-theme="dark"] .map-large-header { color: #6fa3ef; }
    .contact-map-large iframe { width: 100%; height: 400px; border: none; display: block; flex: 1; }
    .map-directions-btn {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px 20px;
      background: var(--primary); color: white;
      font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem;
      transition: background 0.2s; text-decoration: none;
    }
    .map-directions-btn:hover { background: var(--primary-dark); }

    /* ===== ENQUIRE NOW ===== */
    #enquire {
      background: linear-gradient(135deg, #0a1e42 0%, var(--primary) 60%, #1a4a7a 100%);
      position: relative; overflow: hidden;
    }
    .enquire-pattern {
      position: absolute; inset: 0; opacity: 0.05;
      background-image: repeating-linear-gradient(
        45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%
      );
      background-size: 30px 30px;
    }
    .enquire-title { color: var(--white) !important; }
    .enquire-subtitle { color: rgba(255,255,255,0.75) !important; }
    #enquire .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
    #enquire .divider { background: linear-gradient(90deg, var(--gold), rgba(201,162,39,0.3)); }
    .enquire-grid {
      display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start;
      position: relative; z-index: 1;
    }
    .enquire-info-block { margin-bottom: 28px; }
    .enquire-info-block h3 {
      font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 700;
      color: var(--white); margin-bottom: 10px;
    }
    .enquire-info-block p { color: rgba(255,255,255,0.75); font-size: 0.97rem; line-height: 1.7; }
    .enquire-contact-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
    .enquire-contact-btn {
      display: flex; align-items: center; gap: 12px;
      padding: 13px 20px; border-radius: 12px;
      font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
      transition: all 0.25s; text-decoration: none;
    }
    .enquire-contact-btn.whatsapp {
      background: #25d366; color: white;
      box-shadow: 0 4px 16px rgba(37,211,102,0.3);
    }
    .enquire-contact-btn.whatsapp:hover { background: #1ba852; transform: translateY(-2px); }
    .enquire-contact-btn.call {
      background: rgba(255,255,255,0.1); color: var(--white);
      border: 2px solid rgba(255,255,255,0.35);
    }
    .enquire-contact-btn.call:hover { background: rgba(255,255,255,0.2); border-color: var(--white); transform: translateY(-2px); }
    .enquire-highlights { display: flex; flex-direction: column; gap: 10px; }
    .enquire-highlight-item {
      display: flex; align-items: center; gap: 10px;
      color: rgba(255,255,255,0.85); font-size: 0.93rem;
    }
    .enquire-highlight-item svg,
    .enquire-highlight-item [data-lucide] { color: var(--gold); flex-shrink: 0; }
    .enquire-form-wrap {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 20px; padding: 36px;
      backdrop-filter: blur(10px);
    }
    .enquire-form-wrap .form-group input,
    .enquire-form-wrap .form-group select {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.22);
      color: var(--white);
    }
    .enquire-form-wrap .form-group input::placeholder { color: rgba(255,255,255,0.38); }
    .enquire-form-wrap .form-group input:focus,
    .enquire-form-wrap .form-group select:focus {
      border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.2);
    }
    .enquire-form-wrap .form-group label { color: rgba(255,255,255,0.72); }
    .enquire-form-wrap .form-group select option { background: #0d1b33; color: white; }
    .enquire-terms { margin-bottom: 4px; }
    .checkbox-label {
      display: flex; align-items: flex-start; gap: 10px;
      cursor: pointer; font-size: 0.87rem; color: rgba(255,255,255,0.68); line-height: 1.5;
    }
    .checkbox-label input[type="checkbox"] {
      width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px;
      accent-color: var(--gold); cursor: pointer;
    }
    .checkbox-label a { color: var(--gold); text-decoration: underline; }
    .enquire-submit {
      width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
      background: var(--gold); color: #1a1100;
      font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem;
      padding: 14px; border-radius: 10px; border: none; cursor: pointer;
      transition: all 0.25s; box-shadow: 0 4px 20px rgba(201,162,39,0.35);
      margin-top: 20px;
    }
    .enquire-submit:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,162,39,0.5); }

    /* ===== FOOTER ===== */
    footer { background: var(--footer-bg); color: rgba(255,255,255,0.7); padding: 56px 0 24px; }
    .footer-grid {
      display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand { display: flex; flex-direction: column; gap: 16px; }
    .footer-logo-row { display: flex; align-items: center; gap: 14px; }
    .footer-logo {
      width: 280px; height: auto; max-height: 52px; object-fit: contain;
      border-radius: 0; background: transparent; display: block;
    }
    .footer-logo-fallback {
      width: 140px; height: 48px; border-radius: 6px;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-family: 'Poppins', sans-serif;
      font-weight: 700; font-size: 0.9rem;
    }
    .footer-tagline { font-size: 0.85rem; line-height: 1.6; }
    .footer-heading {
      font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
      color: white; margin-bottom: 18px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: 0.88rem; color: rgba(255,255,255,0.6);
      transition: color 0.2s; display: flex; align-items: center; gap: 8px;
    }
    .footer-links a::before {
      content: '›'; color: var(--gold); font-size: 1rem;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-social-icons { display: flex; gap: 12px; margin-top: 16px; }
    .footer-social {
      width: 40px; height: 40px; border-radius: 8px;
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.7); display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }
    .footer-social:hover { background: var(--gold); border-color: var(--gold); color: #1a1100; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px; display: flex; align-items: center; justify-content: space-between;
      font-size: 0.85rem; flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom a { color: var(--gold); }
    .footer-bottom a:hover { text-decoration: underline; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .facilities-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .courses-grid { grid-template-columns: 1fr; }
      .admissions-content { grid-template-columns: 1fr; }
      .admissions-image { display: none; }
      .enquire-grid { grid-template-columns: 1fr; gap: 36px; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    }
    @media (max-width: 768px) {
      section { padding: 30px 0; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-cta-text { display: none; }
      .nav-cta { padding: 8px 10px; }
      .courses-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .facilities-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid {
        columns: 2;
        column-gap: 10px;
      }
      p, li, .about-text p, .course-card p, .why-card p,
      .facility-card p, .testimonial-text, .admissions-text {
        text-align: justify;
      }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    @media (max-width: 480px) {
      .why-grid { grid-template-columns: 1fr; }
      .facilities-grid { grid-template-columns: 1fr; }
      .about-stats { grid-template-columns: 1fr; }
      .hero-cta { flex-direction: column; align-items: center; }
      .admissions-cta { flex-direction: column; }
      .testimonial-card { flex: 0 0 calc(100vw - 48px); }
    }