
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0D1F3C;
      --gold: #F59E0B;
      --gold-light: #FCD34D;
      --saffron: #EA580C;
      --white: #FFFFFF;
      --off-white: #F8F9FB;
      --gray: #6B7280;
      --light-gray: #E5E7EB;
      --dark: #111827;
      --success: #059669;
      --radius: 14px;
      --shadow: 0 4px 24px rgba(13,31,60,0.10);
      --shadow-lg: 0 12px 48px rgba(13,31,60,0.18);
    }

    html {
      scroll-behavior: smooth;
      overflow-x: clip;
      width: 100%;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      background: var(--white);
      overflow-x: clip;
      width: 100%;
      max-width: 100%;
    }

    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* ===== TOP BAR ===== */
    .topbar {
      background: var(--navy);
      color: rgba(255,255,255,0.8);
      font-size: 0.78rem;
      padding: 8px 0;
    }
    .topbar-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
    }
    .topbar a { color: rgba(255,255,255,0.8); transition: color .2s; }
    .topbar a:hover { color: var(--gold); }
    .topbar-left, .topbar-right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
    .topbar i { margin-right: 5px; color: var(--gold); }

    /* ===== HEADER ===== */
    .header {
      background: var(--white);
      position: sticky;
      top: 0;
      z-index: 900;
      box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    }
    .header-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: nowrap;
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .header-phone {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 700;
      color: var(--saffron);
      font-size: 0.9rem;
      white-space: nowrap;
    }
    .header-nav {
      flex: 1;
      min-width: 0;
    }
    .logo-wrap { display: flex; align-items: center; flex-shrink: 0; }

    nav ul { list-style: none; display: flex; gap: 0; align-items: center; justify-content: center; flex-wrap: nowrap; }
    nav ul li a {
      padding: 6px 15px;
      border-radius: 6px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--navy);
      transition: all .2s;
      white-space: nowrap;
    }
    nav ul li a:hover { background: var(--off-white); color: var(--saffron); }
    nav ul li.active a { color: var(--saffron); font-weight: 600; }

    .header-cta {
      background: var(--gold);
      color: var(--navy) !important;
      font-weight: 700 !important;
      padding: 7px 12px !important;
      border-radius: 8px !important;
      margin-left: 4px;
    }
    .header-cta:hover { background: var(--gold-light) !important; }

    .menu-toggle {
      display: none;
      background: none; border: none;
      font-size: 1.4rem;
      color: var(--navy);
      cursor: pointer;
      padding: 4px;
    }

    /* ===== HERO ===== */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, #1a3460 60%, #0D1F3C 100%);
      min-height: 90vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 60px 20px;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -60px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(234,88,12,0.10) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative; z-index: 2;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245,158,11,0.15);
      border: 1px solid rgba(245,158,11,0.4);
      color: var(--gold);
      font-size: 0.78rem;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 20px;
      letter-spacing: 0.5px;
    }
    .hero h1 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 16px;
      font-weight: 700;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }
    .hero p {
      color: rgba(255,255,255,0.72);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 480px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
      font-size: 0.92rem;
      padding: 14px 28px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: all .25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.4); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      font-weight: 600;
      font-size: 0.92rem;
      padding: 14px 28px;
      border-radius: 10px;
      border: 1.5px solid rgba(255,255,255,0.35);
      cursor: pointer;
      transition: all .25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px 20px;
      width: 100%;
      margin-top: 8px;
    }
    .stat-item { text-align: left; min-width: 0; }
    .stat-item .num {
      font-size: 1.75rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1;
    }
    .stat-item .lbl {
      font-size: 0.65rem;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 0.4px;
      margin-top: 4px;
      line-height: 1.25;
    }

    /* Hero Visual */
    .hero-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .card-mini {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 14px;
      padding: 22px 18px;
      backdrop-filter: blur(8px);
      transition: transform .3s;
    }
    .card-mini:hover { transform: translateY(-4px); }
    .card-mini:first-child { grid-column: 1 / -1; }
    .card-mini .icon {
      width: 42px; height: 42px;
      background: rgba(245,158,11,0.2);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .card-mini h4 { color: var(--white); font-size: 0.88rem; font-weight: 600; margin-bottom: 4px; }
    .card-mini p { color: rgba(255,255,255,0.55); font-size: 0.76rem; line-height: 1.5; }
    .card-mini .tag {
      display: inline-block;
      background: rgba(245,158,11,0.2);
      color: var(--gold);
      font-size: 0.68rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 50px;
      margin-top: 8px;
    }

    /* ===== QUICK ACTIONS BAR ===== */
    .quick-bar {
      background: var(--saffron);
      padding: 18px 0;
    }
    .quick-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .quick-bar-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--white);
      font-size: 0.85rem;
      font-weight: 500;
      text-decoration: none;
      transition: opacity .2s;
    }
    .quick-bar-item:hover { opacity: 0.82; }
    .quick-bar-item i {
      width: 36px; height: 36px;
      background: rgba(255,255,255,0.2);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .qbar-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.25); }

    /* ===== SECTION COMMONS ===== */
    section { padding: 80px 20px; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--saffron);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .section-sub {
      color: var(--gray);
      font-size: 0.95rem;
      line-height: 1.7;
      max-width: 560px;
    }
    .section-header { margin-bottom: 50px; }
    .section-header.center { text-align: center; }
    .section-header.center .section-sub { margin: 0 auto; }

    /* ===== COURSES ===== */
    .courses-section { background: var(--off-white); }
    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    .course-card {
      background: var(--white);
      border-radius: 16px;
      padding: 30px 26px;
      box-shadow: var(--shadow);
      border: 1px solid var(--light-gray);
      transition: all .3s;
      position: relative;
      overflow: hidden;
    }
    .course-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--navy), var(--saffron));
    }
    .course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .course-card .icon {
      width: 52px; height: 52px;
      background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 18px;
    }
    .course-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .course-card p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }
    .course-tags { display: flex; gap: 6px; flex-wrap: wrap; }
    .course-tag {
      background: var(--off-white);
      color: var(--navy);
      font-size: 0.7rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 50px;
      border: 1px solid var(--light-gray);
    }
    .course-card .btn-sm {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 18px;
      color: var(--saffron);
      font-size: 0.82rem;
      font-weight: 600;
      transition: gap .2s;
    }
    .course-card .btn-sm:hover { gap: 10px; }

    /* ===== WHY US ===== */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .why-visual {
      background: linear-gradient(135deg, var(--navy), #1a3460);
      border-radius: 20px;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }
    .why-visual::after {
      content: '"';
      position: absolute;
      top: -20px; right: 20px;
      font-size: 14rem;
      color: rgba(245,158,11,0.1);
      font-family: 'Poppins', sans-serif;
      line-height: 1;
    }
    .why-quote {
      color: var(--white);
      font-family: 'Poppins', sans-serif;
      font-size: 1.3rem;
      line-height: 1.6;
      margin-bottom: 24px;
      position: relative; z-index: 1;
    }
    .why-author { color: var(--gold); font-size: 0.85rem; font-weight: 600; position: relative; z-index: 1; }
    .why-stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 28px;
      position: relative; z-index: 1;
    }
    .why-stat {
      background: rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 16px;
      text-align: center;
    }
    .why-stat .n { font-size: 1.8rem; font-weight: 800; color: var(--gold); }
    .why-stat .l { font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-top: 2px; }

    .why-list { display: flex; flex-direction: column; gap: 22px; }
    .why-item { display: flex; gap: 16px; align-items: flex-start; }
    .why-item .num {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, var(--saffron), #f97316);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--white);
      flex-shrink: 0;
    }
    .why-item h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .why-item p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; }

    /* ===== RESULTS ===== */
    .results-section { background: var(--navy); }
    .results-section .section-title { color: var(--white); }
    .results-section .section-label { color: var(--gold); }
    .results-section .section-sub { color: rgba(255,255,255,0.65); }
    .results-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }
    .result-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      padding: 28px 24px;
      transition: all .3s;
    }
    .result-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
    .result-card .student-name { color: var(--gold); font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
    .result-card .score {
      font-family: 'Poppins', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 4px;
    }
    .result-card .exam { color: rgba(255,255,255,0.55); font-size: 0.78rem; margin-bottom: 18px; }
    .result-subjects { display: flex; flex-direction: column; gap: 8px; }
    .result-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
    }
    .result-row .sub { color: rgba(255,255,255,0.65); }
    .result-row .mrk { color: var(--white); font-weight: 600; }
    .result-row .bar {
      height: 4px;
      background: rgba(255,255,255,0.1);
      border-radius: 2px;
      flex: 1;
      margin: 0 10px;
      overflow: hidden;
    }
    .result-row .bar span {
      display: block;
      height: 100%;
      background: linear-gradient(90deg, var(--gold), var(--saffron));
      border-radius: 2px;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section { background: var(--off-white); }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
    .testi-card {
      background: var(--white);
      border-radius: 16px;
      padding: 28px 24px;
      box-shadow: var(--shadow);
      border: 1px solid var(--light-gray);
    }
    .testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
    .testi-text { color: var(--dark); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
    .testi-person { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), var(--saffron));
      display: flex; align-items: center; justify-content: center;
      color: var(--white);
      font-weight: 700; font-size: 1rem;
      flex-shrink: 0;
    }
    .testi-person h5 { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
    .testi-person span { font-size: 0.75rem; color: var(--gray); }

    /* ===== ABOUT / PROCESS ===== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .about-text .section-sub { max-width: 100%; margin-bottom: 24px; }
    .about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
    .about-feat {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.88rem;
      color: var(--dark);
      font-weight: 500;
    }
    .about-feat i { color: var(--success); font-size: 1rem; }
    .about-map-placeholder {
      background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      min-height: 340px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 16px;
      border: 2px dashed #C7D2FE;
    }
    .about-map-placeholder i { font-size: 3rem; color: var(--navy); opacity: 0.5; }
    .about-map-placeholder p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }
    .contact-details { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
    .contact-row { display: flex; gap: 12px; align-items: flex-start; font-size: 0.88rem; }
    .contact-row i { color: var(--saffron); margin-top: 2px; }
    .contact-row strong { color: var(--navy); display: block; font-weight: 600; margin-bottom: 2px; }
    .contact-row span { color: var(--gray); }

    /* ===== ENQUIRY MODAL ===== */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .4s;
    }
    .modal-overlay.visible {
      opacity: 1;
      pointer-events: all;
    }
    .modal-panel {
      background: var(--white);
      border-radius: 20px;
      width: 100%;
      max-width: 420px;
      padding: 36px 32px;
      box-shadow: var(--shadow-lg);
      transform: translateX(60px);
      transition: transform .4s cubic-bezier(.34,1.56,.64,1);
      max-height: 90vh;
      overflow-y: auto;
    }
    .modal-overlay.visible .modal-panel {
      transform: translateX(0);
    }
    .modal-close {
      position: absolute;
      top: 16px; right: 16px;
      background: var(--light-gray);
      border: none;
      width: 32px; height: 32px;
      border-radius: 50%;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem;
      color: var(--gray);
      transition: background .2s;
      position: relative; left: auto; top: auto;
      align-self: flex-end;
    }
    .modal-close:hover { background: var(--light-gray); color: var(--dark); }
    .modal-header-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
    .modal-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #FEF3C7;
      color: #92400E;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 50px;
      margin-bottom: 10px;
      letter-spacing: 0.5px;
    }
    .modal-panel h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
    .modal-panel p { color: var(--gray); font-size: 0.82rem; margin-bottom: 20px; }

    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--light-gray);
      border-radius: 10px;
      font-size: 0.88rem;
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      transition: border-color .2s;
      outline: none;
      background: var(--white);
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--navy); }
    .form-group textarea { resize: vertical; min-height: 70px; }
    .form-submit {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, var(--saffron), #f97316);
      color: var(--white);
      font-weight: 700;
      font-size: 0.95rem;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: all .25s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(234,88,12,0.4); }
    .form-note { text-align: center; color: var(--gray); font-size: 0.72rem; margin-top: 12px; }

    /* ===== FLOATING SIDEBAR — icon stack, slide left on hover ===== */
    .float-sidebar {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 99999;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      filter: drop-shadow(-3px 3px 14px rgba(0, 0, 0, 0.2));
      pointer-events: none;
    }
    .float-slide-item {
      position: relative;
      display: block;
      width: 50px;
      height: 50px;
      overflow: hidden;
      border: none;
      padding: 0;
      margin: 0;
      cursor: pointer;
      text-decoration: none;
      color: var(--white);
      font-family: 'Poppins', sans-serif;
      white-space: nowrap;
      pointer-events: auto;
      transition: width 0.38s cubic-bezier(0.4, 0, 0.2, 1);
      -webkit-tap-highlight-color: transparent;
      box-sizing: border-box;
    }
    .float-slide-item:first-child { border-radius: 10px 0 0 0; }
    .float-slide-item:last-child { border-radius: 0 0 0 10px; }
    .float-slide-item:hover,
    .float-slide-item:focus-visible {
      width: 188px;
      outline: none;
    }
    .float-slide-icon {
      position: absolute;
      top: 0;
      right: 0;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.28rem;
      z-index: 2;
    }
    .float-slide-label {
      position: absolute;
      top: 0;
      right: 50px;
      left: 0;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-left: 14px;
      font-size: 0.8rem;
      font-weight: 700;
      opacity: 0;
      transform: translateX(8px);
      transition: opacity 0.28s ease, transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }
    .float-slide-item:hover .float-slide-label,
    .float-slide-item:focus-visible .float-slide-label {
      opacity: 1;
      transform: translateX(0);
    }
    .float-slide-call { background: #166534; }
    .float-slide-call:hover { background: #14532d; }
    .float-slide-whatsapp { background: #25D366; }
    .float-slide-whatsapp:hover { background: #1fb855; }
    .float-slide-facebook { background: #1877F2; }
    .float-slide-facebook:hover { background: #1467d8; }
    .float-slide-instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
    .float-slide-instagram:hover { background: linear-gradient(135deg, #e6761f, #c91f6d, #6f2da8); }
    .float-slide-enquire { background: var(--navy); }
    .float-slide-enquire:hover { background: #152a50; }
    .float-slide-enquire .float-slide-icon { font-size: 1.1rem; }
    .float-slide-youtube { background: #FF0000; }
    .float-slide-youtube:hover { background: #e60000; }

    /* ===== FOOTER (base — extended in .site-footer below) ===== */
    footer.site-footer { padding: 0; }

    /* ===== NOTIFICATION STRIP ===== */
    .notify-strip {
      background: var(--gold);
      color: var(--navy);
      text-align: center;
      padding: 10px 20px;
      font-size: 0.82rem;
      font-weight: 600;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
    }
    .notify-strip a { color: var(--navy); text-decoration: underline; }

    /* ===== SUCCESS TOAST ===== */
    .toast {
      position: fixed;
      bottom: 30px; left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--success);
      color: var(--white);
      padding: 14px 28px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 0.9rem;
      z-index: 99999;
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
      transition: opacity .35s ease, transform .35s ease, visibility .35s;
      display: flex; align-items: center; gap: 10px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .toast.show {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1100px) {
      nav ul li a { font-size: 0.72rem; padding: 6px 7px; }
      .header-phone span { font-size: 0.82rem; }
      .site-logo { height: 44px; max-width: 150px; }
    }
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { grid-template-columns: 1fr 1fr; }
      .why-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-stats { max-width: 520px; }
    }
    @media (max-width: 768px) {
      .header {
        position: sticky;
        top: 0;
        z-index: 1000;
        overflow: visible;
      }
      .header-inner {
        position: static;
        flex-wrap: nowrap;
      }
      .header-nav {
        display: none;
      }
      .header-nav.open {
        display: block !important;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        z-index: 1001;
        background: var(--white);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        border-top: 1px solid var(--light-gray);
        max-height: calc(100dvh - 64px - 60px - env(safe-area-inset-bottom, 0px));
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        flex: none;
      }
      .header-nav.open ul {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px 20px;
        flex-wrap: nowrap;
      }
      .header-nav.open ul li a {
        display: block;
        white-space: normal;
        font-size: 0.92rem;
        padding: 12px 14px;
        border-radius: 8px;
      }
      .header-nav.open ul li a:hover,
      .header-nav.open ul li.active a {
        background: var(--off-white);
      }
      .header-phone { display: none; }
      .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        position: relative;
      }
    }
    @media (max-width: 640px) {
      .hero-visual { display: none; }
      .quick-bar-inner { flex-direction: column; align-items: flex-start; }
      .qbar-divider { display: none; }
      section { padding: 60px 16px; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
    }
  

/* Site logo (existing brand asset) */
.site-logo {
  height: 55px;
  width: auto;
  max-width: 375px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-wrap { flex-shrink: 0; }

/* Inner page styles */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3460 100%);
  padding: 48px 20px;
  text-align: center;
}
.page-hero h1 { font-family: 'Poppins', sans-serif; color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.page-breadcrumb { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.page-breadcrumb a { color: var(--gold); }
.page-breadcrumb span { color: rgba(255,255,255,0.45); }
.page-content { padding: 60px 20px; }
.page-content .container { max-width: 1200px; margin: 0 auto; }
.content-card { background: var(--white); border-radius: 16px; padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--light-gray); margin-bottom: 24px; }
.content-card h2 { font-size: 1.25rem; color: var(--navy); margin: 24px 0 12px; }
.content-card h2:first-child { margin-top: 0; }
.content-card p, .content-card li { color: var(--gray); font-size: 0.9rem; line-height: 1.75; }
.content-card ul { padding-left: 20px; margin: 12px 0; }
.content-card img { border-radius: 12px; margin: 16px 0; max-width: 100%; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.sidebar-widget { background: var(--off-white); border-radius: 14px; padding: 24px; margin-bottom: 20px; border: 1px solid var(--light-gray); }
.sidebar-widget h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 14px; }
.sidebar-widget ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sidebar-widget a { font-size: 0.85rem; color: var(--gray); }
.sidebar-widget a:hover { color: var(--saffron); }
.teachers-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.teachers-table th { background: var(--navy); color: var(--white); padding: 12px 14px; text-align: left; font-weight: 600; }
.teachers-table td { padding: 12px 14px; border-bottom: 1px solid var(--light-gray); color: var(--dark); }
.teachers-table tr:nth-child(even) td { background: var(--off-white); }
.teachers-table tr:hover td { background: #EEF2FF; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.gallery-item { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); transition: transform .3s; }
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; background: var(--off-white); }
.gallery-item img[src=""], .gallery-item img:not([src]) { min-height: 200px; }

/* Gallery page */
.gallery-page-section { background: var(--off-white); }
.gallery-page-intro { margin-bottom: 40px; }
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 48px;
}
.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  text-align: left;
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.88) 0%, rgba(13,31,60,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 18px;
  opacity: 0;
  transition: opacity .3s;
  color: var(--white);
}
.gallery-card:hover .gallery-card-overlay,
.gallery-card:focus .gallery-card-overlay { opacity: 1; }
.gallery-card-overlay i {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.gallery-card-title {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}
.gallery-cta {
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}
.gallery-cta p { color: var(--gray); margin-bottom: 18px; font-size: 0.95rem; }
.gallery-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.gallery-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
}
.gallery-cta-call:hover { border-color: var(--saffron); color: var(--saffron); }
.gallery-features { margin-top: 0; }

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s, visibility .3s;
}
.gallery-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}
.gallery-lightbox-content {
  position: relative;
  z-index: 2;
  max-width: min(960px, 96vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-lightbox-content img {
  max-width: 100%;
  max-height: calc(90vh - 100px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}
.gallery-lightbox-meta {
  margin-top: 16px;
  text-align: center;
  color: var(--white);
  max-width: 600px;
}
.gallery-lightbox-meta strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.gallery-lightbox-meta span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.gallery-lightbox-counter {
  margin-top: 8px !important;
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 0.8rem !important;
}
.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background .2s;
}
.gallery-lightbox-close:hover { background: rgba(255,255,255,0.3); }
.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .2s;
}
.gallery-lightbox-nav:hover { background: var(--gold); color: var(--navy); }
.gallery-lightbox-prev { left: 16px; }
.gallery-lightbox-next { right: 16px; }
@media (max-width: 640px) {
  .gallery-card img { height: 220px; }
  .gallery-lightbox-nav { width: 40px; height: 40px; }
  .gallery-lightbox-prev { left: 8px; }
  .gallery-lightbox-next { right: 8px; }
}
.map-embed { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); height: 400px; margin-bottom: 24px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info-card { background: var(--off-white); border-radius: 14px; padding: 24px; margin-bottom: 16px; }
.contact-info-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 0.95rem; }
.contact-form .form-group { margin-bottom: 16px; }
.video-embed {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  background: #000;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.about-video-wrap { align-self: stretch; display: flex; }
.about-video-wrap .video-embed { flex: 1; min-height: 300px; }
@media (max-width: 900px) { .about-video-wrap .video-embed { min-height: 320px; } }
@media (max-width: 900px) { .content-grid, .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .teachers-table { display: block; overflow-x: auto; } .header-phone span { font-size: 0.9rem; } .site-logo { height: 48px; max-width: 180px; } .hero-stats { gap: 8px; } .stat-item .num { font-size: 1.3rem; } .stat-item .lbl { font-size: 0.55rem; letter-spacing: 0; } }

/* About page */
.about-intro-strip { background: var(--navy); padding: 28px 20px; }
.about-intro-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.about-intro-stat .n { font-size: 1.75rem; font-weight: 800; color: var(--gold); line-height: 1; }
.about-intro-stat .l { font-size: 0.72rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.about-page { background: var(--off-white); }
.about-lead-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; margin-bottom: 48px; }
.about-hero-img { width: 100%; border-radius: 14px; margin-bottom: 20px; max-height: 320px; object-fit: cover; }
.about-lead-text { color: var(--gray); line-height: 1.75; margin-bottom: 12px; font-size: 0.92rem; }
.about-lead-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.about-btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; border: 1.5px solid var(--navy); color: var(--navy); font-weight: 600; font-size: 0.92rem; }
.about-btn-outline:hover { border-color: var(--saffron); color: var(--saffron); }
.about-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-highlight { background: linear-gradient(135deg, #EEF2FF, #E0E7FF); border-color: #C7D2FE; }
.sidebar-highlight h3 { display: flex; align-items: center; gap: 8px; color: var(--navy); }
.sidebar-highlight p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin-bottom: 10px; }
.btn-sm-link { color: var(--saffron); font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.btn-sm-link:hover { gap: 10px; }
.about-section-block { margin-bottom: 48px; }
.about-objectives-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.about-objective-card { background: var(--white); border-radius: 14px; padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--light-gray); transition: transform .3s; }
.about-objective-card:hover { transform: translateY(-4px); }
.about-objective-card i { font-size: 1.5rem; color: var(--saffron); margin-bottom: 12px; }
.about-objective-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.about-objective-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.about-benefits-section { background: var(--white); border-radius: 16px; padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--light-gray); }
.about-benefits-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.about-benefits-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.about-benefits-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--dark); line-height: 1.5; }
.about-benefits-list i { color: var(--success); margin-top: 3px; flex-shrink: 0; }
.about-methodology-card { background: var(--off-white); border-radius: 14px; padding: 28px; border: 1px solid var(--light-gray); }
.about-methodology-card h3 { color: var(--navy); margin-bottom: 20px; font-size: 1.1rem; }
.about-method-item { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.about-method-num { width: 32px; height: 32px; background: var(--saffron); color: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.about-method-item strong { display: block; color: var(--navy); font-size: 0.9rem; margin-bottom: 2px; }
.about-method-item p { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }
.about-bottom-cta { margin-top: 8px; }
@media (max-width: 900px) {
  .about-intro-grid { grid-template-columns: repeat(2, 1fr); }
  .about-lead-grid, .about-benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) { .about-intro-grid { grid-template-columns: 1fr 1fr; } }

/* Thirukkural motto — Karka Kasadara */
.kk-proverb {
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #F0E6C8;
  box-shadow: 0 4px 18px rgba(13, 31, 60, 0.08);
  background: #FFFDF8;
  text-align: center;
}
.kk-proverb-body {
  background: #FFFDF8;
  padding: 22px 18px 20px;
}
.kk-proverb-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  line-height: 1.6;
  font-family: 'Noto Sans Tamil', 'Latha', 'Vijaya', sans-serif;
  color: var(--navy);
  font-weight: 700;
}
.kk-proverb-meta {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 16px 16px;
  background: var(--navy);
  font-family: 'Poppins', sans-serif;
}
.kk-proverb-meta cite {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--saffron);
  letter-spacing: 0.2px;
}
.kk-proverb-meaning {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  line-height: 1.45;
  max-width: 260px;
}
.kk-proverb--card .kk-proverb-lines {
  font-size: 1rem;
}
.kk-proverb--featured {
  margin-top: 28px;
  max-width: 100%;
}
.kk-proverb--featured .kk-proverb-body {
  padding: 26px 22px 24px;
}
.kk-proverb--featured .kk-proverb-lines {
  font-size: 1.08rem;
}

/* Footer band — unified navy strip (all content together) */
.kk-proverb-footer-band {
  background: linear-gradient(180deg, #0f2344 0%, var(--navy) 100%);
  border-top: 3px solid var(--gold);
  padding: 36px 20px 40px;
  position: relative;
  overflow: hidden;
}
.kk-proverb-footer-band::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  font-family: 'Poppins', serif;
  color: rgba(245, 158, 11, 0.12);
  line-height: 1;
  pointer-events: none;
}
.kk-proverb--footer {
  max-width: 760px;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.kk-proverb--footer .kk-proverb-body {
  background: transparent;
  padding: 0;
}
.kk-proverb--footer .kk-proverb-lines {
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.7;
}
.kk-proverb--footer .kk-proverb-meta {
  background: transparent;
  padding: 0;
  flex-direction: column;
  gap: 8px;
}
.kk-proverb--footer .kk-proverb-meta cite {
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.3px;
}
.kk-proverb--footer .kk-proverb-meaning {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  max-width: 480px;
  line-height: 1.5;
}

/* Site footer — enhanced */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
}
.footer-main {
  padding: 0 20px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--dark) 120px);
}
.footer-cta-strip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 0 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  white-space: nowrap;
}
.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.footer-cta-call {
  background: linear-gradient(135deg, #166534, #14532d);
  color: var(--white);
}
.footer-cta-wa {
  background: linear-gradient(135deg, #25D366, #1aad4f);
  color: var(--white);
}
.footer-cta-enquire {
  background: linear-gradient(135deg, var(--gold), #f59e0b);
  color: var(--navy);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: 48px 0 52px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-about-text {
  font-size: 0.84rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  margin: 16px 0 20px;
  max-width: 340px;
}
.footer-logo-link {
  display: inline-block;
}
.footer-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: all 0.22s;
}
.footer-social a:hover {
  color: var(--white);
  transform: translateY(-2px);
}
.footer-social-fb:hover { background: #1877F2; border-color: #1877F2; }
.footer-social-ig:hover { background: linear-gradient(135deg, #f58529, #dd2a7b); border-color: transparent; }
.footer-social-wa:hover { background: #25D366; border-color: #25D366; }
.footer-social-yt:hover { background: #FF0000; border-color: #FF0000; }
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.68);
  padding: 7px 0;
  transition: color 0.2s, gap 0.2s;
}
.footer-links a i {
  font-size: 0.55rem;
  color: var(--gold);
  opacity: 0.8;
  transition: transform 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
  gap: 11px;
}
.footer-links a:hover i {
  transform: translateX(2px);
}
.footer-hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
}
.footer-hours-list li:last-child {
  border-bottom: none;
}
.footer-hours-day {
  color: rgba(255, 255, 255, 0.65);
}
.footer-hours-time {
  color: var(--white);
  font-weight: 600;
  white-space: nowrap;
}
.footer-hours-closed .footer-hours-time {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
}
.footer-contact-item strong {
  display: block;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}
.footer-contact-item a {
  color: var(--gold);
  transition: color 0.2s;
}
.footer-contact-item a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}
.footer-bottom a {
  color: var(--gold);
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-about {
    grid-column: 1 / -1;
  }
  .footer-about-text {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .kk-proverb-footer-band {
    padding: 28px 16px 32px;
  }
  .kk-proverb-footer-band::before {
    font-size: 3.5rem;
    top: 0;
  }
  .footer-cta-strip {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 0 28px;
  }
  .footer-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0 40px;
  }
  .footer-about {
    grid-column: auto;
    text-align: center;
  }
  .footer-logo-link {
    display: flex;
    justify-content: center;
  }
  .footer-about-text {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
  }
}

.sidebar-proverb {
  padding: 0;
  border: none;
  background: transparent;
}

/* Mobile bottom navigation */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99998;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  box-shadow: 0 -4px 20px rgba(13, 31, 60, 0.1);
  padding: 6px 4px max(6px, env(safe-area-inset-bottom, 6px));
  justify-content: space-around;
  align-items: stretch;
}
.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 4px;
  color: var(--gray);
  font-size: 0.65rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-item i {
  font-size: 1.15rem;
  line-height: 1;
}
.mobile-nav-item.active,
.mobile-nav-item:hover {
  color: var(--saffron);
}
.mobile-nav-item.active {
  background: rgba(234, 88, 12, 0.08);
}

/* ===== MOBILE RESPONSIVE (enhanced) ===== */
html.nav-open,
body.nav-open {
  overflow: hidden;
  height: 100%;
}

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 31, 60, 0.45);
  z-index: 999;
  border: none;
  padding: 0;
  margin: 0;
}
.mobile-nav-backdrop:not([hidden]) {
  display: block;
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: clip;
    overscroll-behavior-x: none;
    max-width: 100%;
  }

  body {
    touch-action: pan-y;
  }

  .notify-strip,
  .topbar {
    display: none;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  section,
  .hero,
  .quick-bar,
  footer,
  .page-content,
  .page-hero,
  .container,
  .kk-proverb-footer-band {
    max-width: 100%;
    overflow-x: clip;
  }

  .quick-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
  }
  .qbar-divider { display: none; }
  .quick-bar-item {
    background: rgba(255, 255, 255, 0.14);
    padding: 12px 10px;
    border-radius: 10px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .map-embed,
  .video-embed,
  .gallery-lightbox-content {
    max-width: 100%;
  }

  .header-inner { padding: 8px 14px; gap: 8px; }
  .header-nav.open ul li .header-cta {
    margin-left: 0;
    text-align: center;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 36px 16px 44px;
  }
  .hero-inner {
    gap: 28px;
    text-align: center;
  }
  .hero p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.92rem;
  }
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 12px;
    max-width: 100%;
  }
  .stat-item { text-align: center; }

  .section-header { margin-bottom: 32px; }
  .section-title { font-size: clamp(1.45rem, 5vw, 1.9rem); }

  .page-hero { padding: 32px 16px; }
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .page-content { padding: 40px 16px; }
  .content-card { padding: 22px 18px; }
  .content-grid { gap: 20px; }

  .about-lead-grid,
  .about-benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-lead-actions {
    flex-direction: column;
  }
  .about-lead-actions .btn-primary,
  .about-lead-actions .about-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .gallery-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .gallery-cta-actions .btn-primary,
  .gallery-cta-actions .btn-outline,
  .gallery-cta-actions .gallery-cta-call {
    width: 100%;
    justify-content: center;
  }

  .modal-overlay {
    align-items: flex-end;
    justify-content: center;
    padding: 0;
  }
  .modal-panel {
    max-width: 100%;
    width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 92dvh;
    padding: 24px 18px max(28px, env(safe-area-inset-bottom, 28px));
    transform: translateY(100%);
  }
  .modal-overlay.visible .modal-panel {
    transform: translateY(0);
  }

  .float-sidebar {
    top: auto;
    left: auto;
    right: 0;
    bottom: calc(68px + env(safe-area-inset-bottom, 0px));
    transform: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    width: 48px;
    max-width: 48px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    filter: none;
    box-shadow: none;
    overflow: hidden;
  }
  .float-slide-call,
  .float-slide-facebook,
  .float-slide-instagram,
  .float-slide-youtube {
    display: none !important;
  }
  .float-slide-item {
    flex: none;
    width: 48px;
    max-width: 48px;
    height: 48px;
    border-radius: 0 !important;
    overflow: hidden;
  }
  .float-slide-item:first-child,
  .float-slide-item:last-child {
    border-radius: 0 !important;
  }
  .float-slide-whatsapp {
    border-radius: 10px 0 0 0 !important;
  }
  .float-slide-enquire {
    border-radius: 0 0 0 10px !important;
  }
  .float-slide-item:hover,
  .float-slide-item:focus-visible,
  .float-slide-item:active {
    width: 48px !important;
    max-width: 48px !important;
  }
  .float-slide-whatsapp,
  .float-slide-enquire {
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.15);
  }
  .float-slide-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    border-radius: 0;
  }
  .float-slide-label {
    display: none !important;
  }

  .mobile-bottom-nav {
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  .kk-proverb-footer-band { padding: 24px 16px 28px; }
  .kk-proverb--featured { margin-top: 20px; }
}

@media (max-width: 640px) {
  section { padding: 48px 16px; }

  .quick-bar { padding: 14px 0; }

  .courses-grid,
  .testimonials-grid,
  .results-grid,
  .about-objectives-grid,
  .gallery-masonry,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .course-card { padding: 22px 18px; }
  .testi-card { padding: 22px 18px; }

  .why-visual { padding: 24px 18px; }
  .why-quote { font-size: 1.05rem; }
  .why-visual::after { font-size: 8rem; top: -10px; }

  .footer-grid { gap: 28px; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px 24px;
    gap: 8px;
  }

  .map-embed { height: 260px; }
  .video-embed { min-height: 200px !important; }
  .about-video-wrap .video-embed { min-height: 200px !important; }

  .gallery-cta { padding: 28px 18px; }

  .toast {
    left: 16px;
    right: 16px;
    width: auto;
    transform: translateY(20px);
    font-size: 0.82rem;
    padding: 12px 16px;
    bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }
  .toast.show { transform: translateY(0); }

  .teachers-table { font-size: 0.78rem; }
  .teachers-table th,
  .teachers-table td { padding: 10px 10px; }

  .about-benefits-section { padding: 24px 18px; }
  .about-bottom-cta .gallery-cta-actions { gap: 10px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .hero-badge { font-size: 0.68rem; padding: 5px 12px; }
  .hero-stats { gap: 10px; }
  .stat-item .num { font-size: 1.2rem; }
  .stat-item .lbl { font-size: 0.58rem; }

  .site-logo { height: 40px; max-width: 250px; }

  .about-intro-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .about-intro-stat .n { font-size: 1.35rem; }
  .about-intro-stat .l { font-size: 0.62rem; }

  .kk-proverb--card .kk-proverb-lines,
  .kk-proverb--featured .kk-proverb-lines {
    font-size: 0.92rem;
  }
}

@media (max-width: 360px) {
  .quick-bar-inner { grid-template-columns: 1fr; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { max-width: 100%; }
}
