
    /* ===== VARIABLES ===== */
    :root {
      --navy: #0a0e2a;
      --navy-mid: #0f1640;
      --navy-lite: #161d4e;
      --blue: #1a2580;
      --gold: #f5c518;
      --gold-lite: #fff3b0;
      --gold-glow: rgba(245, 197, 24, .18);
      --cyan: #00d4ff;
      --cyan-glow: rgba(0, 212, 255, .12);
      --white: #ffffff;
      --off: #f0f4ff;
      --text: #e8ecff;
      --muted: #8892b0;
      --border: rgba(255, 255, 255, .08);
      --card-bg: rgba(255, 255, 255, .04);
      --shadow: 0 8px 40px rgba(0, 0, 0, .4);
      --radius: 16px;
      --tr: .3s cubic-bezier(.4, 0, .2, 1);
    }

    /* ===== BASE ===== */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--navy);
      color: var(--text);
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Cinzel', serif;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ===== TOPBAR ===== */
    #topbar {
      background: linear-gradient(90deg, var(--blue), var(--navy-mid));
      border-bottom: 1px solid var(--border);
      padding: 7px 0;
      font-size: .8rem;
      color: rgba(255, 255, 255, .7);
    }

    #topbar a {
      color: var(--gold);
    }

    #topbar i {
      color: var(--gold);
    }

    /* ===== NAVBAR ===== */
    #mainNav {
      background: rgba(10, 14, 42, .95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 1000;
      transition: var(--tr);
    }

    #mainNav.scrolled {
      background: rgba(10, 14, 42, .99);
      box-shadow: 0 4px 30px rgba(0, 0, 0, .5);
    }

    .navbar-brand {
      font-family: 'Cinzel', serif;
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--white) !important;
      letter-spacing: 1px;
    }

    .navbar-brand span {
      color: var(--gold);
    }

    .navbar-brand small {
      display: block;
      font-family: 'Nunito', sans-serif;
      font-size: .6rem;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-top: -4px;
    }

    .nav-link {
      color: rgba(255, 255, 255, .75) !important;
      font-weight: 600;
      font-size: .88rem;
      padding: 8px 14px !important;
      border-radius: 8px;
      transition: var(--tr);
      letter-spacing: .3px;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--gold) !important;
      background: var(--gold-glow);
    }

    .navbar-toggler {
      border-color: var(--border);
    }

    .navbar-toggler-icon {
      filter: invert(1);
    }

    /* ===== HERO ===== */
    #hero {
      min-height: 100vh;
      background: var(--navy);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26, 37, 128, .5) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0, 212, 255, .06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 10%, rgba(245, 197, 24, .07) 0%, transparent 60%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
      background-size: 50px 50px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold-glow);
      border: 1px solid rgba(245, 197, 24, .3);
      border-radius: 30px;
      padding: 6px 18px;
      font-size: .8rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .5px;
      margin-bottom: 24px;
    }

    .hero-badge span {
      width: 7px;
      height: 7px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse-dot 1.5s ease infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .5;
        transform: scale(1.4)
      }
    }

    #hero h1 {
      font-size: clamp(2.2rem, 5.5vw, 4.2rem);
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 6px;
    }

    #hero h1 .gold {
      color: var(--gold);
    }

    #hero h1 .cyan {
      color: var(--cyan);
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--muted);
      margin: 18px 0 36px;
      line-height: 1.8;
      max-width: 520px;
    }

    .btn-primary-gold {
      background: var(--gold);
      color: var(--navy);
      border: none;
      border-radius: 40px;
      padding: 14px 34px;
      font-weight: 800;
      font-size: .95rem;
      cursor: pointer;
      transition: var(--tr);
      box-shadow: 0 6px 28px rgba(245, 197, 24, .35);
      letter-spacing: .3px;
    }

    .btn-primary-gold:hover {
      background: #ffd700;
      transform: translateY(-2px);
      box-shadow: 0 10px 36px rgba(245, 197, 24, .5);
      color: var(--navy);
    }

    .btn-outline-gold {
      background: transparent;
      color: var(--gold);
      border: 2px solid rgba(245, 197, 24, .5);
      border-radius: 40px;
      padding: 13px 30px;
      font-weight: 700;
      font-size: .95rem;
      cursor: pointer;
      transition: var(--tr);
    }

    .btn-outline-gold:hover {
      background: var(--gold-glow);
      border-color: var(--gold);
    }

    .hero-stats {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 44px;
    }

    .hstat {
      text-align: center;
    }

    .hstat .num {
      font-family: 'Cinzel', serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }

    .hstat .lbl {
      font-size: .75rem;
      color: var(--muted);
      font-weight: 600;
      margin-top: 4px;
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    .hstat-divider {
      width: 1px;
      background: var(--border);
      align-self: stretch;
    }

    /* Hero Visual Side */
    .hero-visual {
      position: relative;
    }

    .hero-orb {
      width: 380px;
      height: 380px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, rgba(26, 37, 128, .8), rgba(0, 212, 255, .15) 60%, transparent 80%);
      border: 1px solid rgba(0, 212, 255, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin: 0 auto;
      animation: orb-float 5s ease-in-out infinite;
    }

    @keyframes orb-float {

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

      50% {
        transform: translateY(-20px)
      }
    }

    .orb-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(245, 197, 24, .12);
      animation: ring-spin 18s linear infinite;
    }

    .orb-ring:nth-child(1) {
      width: 110%;
      height: 110%;
    }

    .orb-ring:nth-child(2) {
      width: 130%;
      height: 130%;
      border-color: rgba(0, 212, 255, .08);
      animation-direction: reverse;
      animation-duration: 25s;
    }

    @keyframes ring-spin {
      from {
        transform: rotate(0deg)
      }

      to {
        transform: rotate(360deg)
      }
    }

    .orb-icon {
      font-size: 7rem;
      filter: drop-shadow(0 0 30px rgba(245, 197, 24, .4));
    }

    .floating-chip {
      position: absolute;
      background: rgba(255, 255, 255, .06);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 12px;
      padding: 12px 16px;
      font-size: .8rem;
      font-weight: 700;
      color: var(--white);
      white-space: nowrap;
      animation: chip-float 4s ease-in-out infinite;
    }

    .chip-1 {
      top: 10%;
      left: -10%;
      animation-delay: 0s;
    }

    .chip-2 {
      bottom: 15%;
      right: -8%;
      animation-delay: 1.5s;
    }

    .chip-3 {
      top: 55%;
      left: -15%;
      animation-delay: .8s;
    }

    @keyframes chip-float {

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

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

    /* ===== SECTION STYLES ===== */
    .sec-pad {
      padding: 90px 0;
    }

    .sec-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .sec-tag {
      display: inline-block;
      background: var(--gold-glow);
      border: 1px solid rgba(245, 197, 24, .25);
      color: var(--gold);
      border-radius: 20px;
      padding: 4px 16px;
      font-size: .75rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .sec-header h2 {
      font-size: clamp(1.7rem, 3vw, 2.6rem);
      color: var(--white);
      margin-bottom: 12px;
    }

    .sec-header p {
      color: var(--muted);
      font-size: 1rem;
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .sec-line {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--cyan));
      border-radius: 3px;
      margin: 16px auto 0;
    }

    /* ===== ANNOUNCEMENT TICKER ===== */
    #ticker {
      background: linear-gradient(90deg, var(--navy-mid), var(--blue), var(--navy-mid));
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 11px 0;
      overflow: hidden;
    }

    .ticker-label {
      background: var(--gold);
      color: var(--navy);
      font-weight: 800;
      font-size: .78rem;
      padding: 3px 14px;
      border-radius: 4px;
      white-space: nowrap;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .ticker-track {
      display: flex;
      width: max-content;
      animation: ticker 35s linear infinite;
    }

    @keyframes ticker {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .ticker-item {
      padding: 0 48px;
      font-size: .85rem;
      font-weight: 600;
      color: rgba(255, 255, 255, .85);
      white-space: nowrap;
    }

    .ticker-item i {
      color: var(--gold);
      margin-right: 6px;
    }

    /* ===== REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .reveal.up {
      opacity: 1;
      transform: none;
    }

    /* ===== COURSES ===== */
    #courses {
      background: var(--navy-mid);
    }

    .course-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      height: 100%;
      transition: var(--tr);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .course-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--cyan));
      opacity: 0;
      transition: var(--tr);
    }

    .course-card:hover {
      background: rgba(255, 255, 255, .07);
      border-color: rgba(245, 197, 24, .25);
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
    }

    .course-card:hover::before {
      opacity: 1;
    }

    .course-icon {
      width: 60px;
      height: 60px;
      border-radius: 14px;
      background: var(--gold-glow);
      border: 1px solid rgba(245, 197, 24, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      margin-bottom: 18px;
    }

    .course-card h5 {
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      color: var(--white);
      margin-bottom: 10px;
    }

    .course-card p {
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .course-meta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .cmeta {
      font-size: .78rem;
      font-weight: 700;
      color: var(--muted);
    }

    .cmeta i {
      color: var(--gold);
      margin-right: 4px;
    }

    .course-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: .7rem;
      font-weight: 800;
      padding: 3px 10px;
      border-radius: 20px;
    }

    .cb-pop {
      background: rgba(245, 197, 24, .15);
      color: var(--gold);
      border: 1px solid rgba(245, 197, 24, .3);
    }

    .cb-new {
      background: rgba(0, 212, 255, .1);
      color: var(--cyan);
      border: 1px solid rgba(0, 212, 255, .25);
    }

    /* ===== FEE STRUCTURE ===== */
    #fees {
      background: var(--navy);
    }

    .fee-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: var(--tr);
      height: 100%;
    }

    .fee-card:hover {
      border-color: rgba(245, 197, 24, .3);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
    }

    .fee-card.featured {
      border-color: rgba(245, 197, 24, .4);
      background: linear-gradient(160deg, rgba(245, 197, 24, .06), rgba(0, 212, 255, .03));
    }

    .fee-header {
      padding: 28px 24px 20px;
      border-bottom: 1px solid var(--border);
      text-align: center;
      position: relative;
    }

    .fee-header h5 {
      font-family: 'Cinzel', serif;
      color: var(--white);
      font-size: 1rem;
      margin-bottom: 6px;
    }

    .fee-price {
      font-family: 'Cinzel', serif;
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--gold);
    }

    .fee-price small {
      font-family: 'Nunito', sans-serif;
      font-size: .8rem;
      color: var(--muted);
      font-weight: 400;
    }

    .fee-body {
      padding: 24px;
    }

    .fee-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      font-size: .88rem;
      color: var(--muted);
    }

    .fee-item i {
      color: var(--gold);
      font-size: .9rem;
      flex-shrink: 0;
    }

    .feat-badge {
      position: absolute;
      top: -1px;
      right: 20px;
      background: var(--gold);
      color: var(--navy);
      font-size: .7rem;
      font-weight: 800;
      padding: 4px 12px;
      border-radius: 0 0 8px 8px;
      letter-spacing: .5px;
    }

    /* ===== ANNOUNCEMENTS ===== */
    #announcements {
      background: var(--navy-mid);
    }

    .ann-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 22px 24px;
      display: flex;
      gap: 18px;
      align-items: flex-start;
      transition: var(--tr);
      margin-bottom: 16px;
    }

    .ann-card:hover {
      border-color: rgba(245, 197, 24, .2);
      background: rgba(255, 255, 255, .05);
    }

    .ann-icon-box {
      width: 46px;
      height: 46px;
      min-width: 46px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
    }

    .ai-gold {
      background: var(--gold-glow);
      color: var(--gold);
      border: 1px solid rgba(245, 197, 24, .2);
    }

    .ai-cyan {
      background: var(--cyan-glow);
      color: var(--cyan);
      border: 1px solid rgba(0, 212, 255, .2);
    }

    .ai-red {
      background: rgba(255, 80, 80, .1);
      color: #ff7070;
      border: 1px solid rgba(255, 80, 80, .2);
    }

    .ai-grn {
      background: rgba(0, 220, 130, .1);
      color: #00dc82;
      border: 1px solid rgba(0, 220, 130, .2);
    }

    .ann-card h6 {
      font-weight: 800;
      color: var(--white);
      margin-bottom: 4px;
      font-size: .92rem;
    }

    .ann-card p {
      color: var(--muted);
      font-size: .85rem;
      margin: 0;
      line-height: 1.6;
    }

    .ann-date {
      font-size: .75rem;
      color: var(--gold);
      font-weight: 700;
      margin-top: 6px;
    }

    /* ===== ABOUT ===== */
    #about {
      background: var(--navy);
    }

    .about-glow {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(26, 37, 128, .5), transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .value-item {
      display: flex;
      gap: 16px;
      margin-bottom: 28px;
    }

    .vi-icon {
      width: 50px;
      height: 50px;
      min-width: 50px;
      border-radius: 12px;
      background: var(--gold-glow);
      border: 1px solid rgba(245, 197, 24, .2);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
    }

    .vi-text h6 {
      color: var(--white);
      font-weight: 800;
      margin-bottom: 4px;
    }

    .vi-text p {
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.6;
      margin: 0;
    }

    .about-vis {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 36px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .about-vis::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(245, 197, 24, .06), transparent 60%);
    }

    .av-big {
      font-size: 5rem;
      margin-bottom: 16px;
    }

    .av-stat {
      margin-bottom: 20px;
    }

    .av-stat .num {
      font-family: 'Cinzel', serif;
      font-size: 2rem;
      color: var(--gold);
      font-weight: 900;
    }

    .av-stat .lbl {
      color: var(--muted);
      font-size: .8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .5px;
    }

    .av-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 16px 0;
    }

    .award-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--gold-glow);
      border: 1px solid rgba(245, 197, 24, .2);
      border-radius: 20px;
      padding: 5px 14px;
      font-size: .78rem;
      font-weight: 700;
      color: var(--gold);
      margin: 4px;
    }

    /* ===== TIMINGS ===== */
    #timings {
      background: var(--navy-mid);
    }

    .timing-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      height: 100%;
    }

    .timing-card h6 {
      font-family: 'Cinzel', serif;
      color: var(--white);
      font-size: .88rem;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }

    .timing-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 9px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .04);
      font-size: .85rem;
    }

    .timing-row:last-child {
      border-bottom: none;
    }

    .timing-row .day {
      color: var(--muted);
      font-weight: 600;
    }

    .timing-row .time {
      color: var(--gold);
      font-weight: 700;
    }

    .timing-row .open {
      color: #00dc82;
      font-size: .75rem;
      font-weight: 700;
    }

    .timing-row .closed {
      color: #ff7070;
      font-size: .75rem;
      font-weight: 700;
    }

    /* ===== TESTIMONIALS ===== */
    #testimonials {
      background: var(--navy);
    }

    .testi-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      height: 100%;
      transition: var(--tr);
      position: relative;
    }

    .testi-card:hover {
      border-color: rgba(245, 197, 24, .2);
      transform: translateY(-4px);
    }

    .testi-quote {
      font-family: 'Cinzel', serif;
      font-size: 3.5rem;
      color: var(--gold-glow);
      line-height: 1;
      margin-bottom: 6px;
      color: rgba(245, 197, 24, .2);
    }

    .testi-card p {
      color: var(--muted);
      font-size: .92rem;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .tav {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1rem;
      color: var(--white);
      min-width: 44px;
    }

    .tav.c {
      background: linear-gradient(135deg, var(--navy-lite), var(--cyan));
    }

    .ta-name {
      font-weight: 800;
      color: var(--white);
      font-size: .88rem;
    }

    .ta-class {
      color: var(--muted);
      font-size: .78rem;
    }

    .testi-stars {
      color: var(--gold);
      font-size: .85rem;
      margin-bottom: 12px;
    }

    /* ===== FEEDBACK ===== */
    #feedback {
      background: var(--navy-mid);
    }

    .fb-form-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 36px;
    }

    .form-label {
      font-weight: 700;
      font-size: .85rem;
      color: rgba(255, 255, 255, .8);
      margin-bottom: 7px;
    }

    .form-control,
    .form-select {
      background: rgba(255, 255, 255, .05) !important;
      border: 1px solid rgba(255, 255, 255, .12) !important;
      border-radius: 10px !important;
      color: var(--white) !important;
      padding: 12px 16px !important;
      font-size: .9rem !important;
      font-family: 'Nunito', sans-serif !important;
      transition: var(--tr) !important;
    }

    .form-control::placeholder {
      color: rgba(255, 255, 255, .25) !important;
    }

    .form-control:focus,
    .form-select:focus {
      border-color: rgba(245, 197, 24, .5) !important;
      box-shadow: 0 0 0 4px rgba(245, 197, 24, .08) !important;
      background: rgba(255, 255, 255, .07) !important;
    }

    .form-control.is-invalid {
      border-color: rgba(255, 100, 100, .5) !important;
    }

    .form-control.is-valid {
      border-color: rgba(0, 220, 130, .4) !important;
    }

    .form-select option {
      background: var(--navy-mid);
      color: var(--white);
    }

    .invalid-feedback {
      font-size: .78rem !important;
      color: #ff8080 !important;
    }

    .stars-row {
      display: flex;
      gap: 8px;
      font-size: 1.8rem;
      cursor: pointer;
    }

    .stars-row i {
      color: rgba(255, 255, 255, .15);
      transition: color .15s;
    }

    .stars-row i.lit,
    .stars-row i:hover {
      color: var(--gold);
    }

    .fb-list-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 14px;
      transition: var(--tr);
    }

    .fb-list-card:hover {
      border-color: rgba(245, 197, 24, .15);
    }

    .fb-name {
      font-weight: 800;
      color: var(--white);
      font-size: .88rem;
    }

    .fb-date {
      color: var(--muted);
      font-size: .75rem;
    }

    .fb-stars {
      color: var(--gold);
      font-size: .8rem;
      margin: 4px 0;
    }

    .fb-msg {
      color: var(--muted);
      font-size: .87rem;
      line-height: 1.6;
      margin: 0;
    }

    /* ===== CONTACT ===== */
    #contact {
      background: var(--navy);
    }

    .contact-info-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
    }

    .ci-row {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }

    .ci-row:last-child {
      border-bottom: none;
    }

    .ci-ico {
      width: 44px;
      height: 44px;
      min-width: 44px;
      background: var(--gold-glow);
      border: 1px solid rgba(245, 197, 24, .2);
      color: var(--gold);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .ci-title {
      font-weight: 800;
      font-size: .85rem;
      color: var(--white);
      margin-bottom: 3px;
    }

    .ci-val {
      font-size: .85rem;
      color: var(--muted);
    }

    .map-box {
      background: var(--card-bg);
      border: 1px dashed rgba(245, 197, 24, .25);
      border-radius: var(--radius);
      height: 200px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: var(--muted);
      font-size: .88rem;
      margin-top: 20px;
    }

    .map-box i {
      font-size: 3rem;
      color: var(--gold);
    }

    .social-row {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .soc-btn {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255, 255, 255, .05);
      border: 1px solid var(--border);
      color: var(--muted);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: var(--tr);
    }

    .soc-btn:hover {
      background: var(--gold-glow);
      border-color: rgba(245, 197, 24, .3);
      color: var(--gold);
    }

    .contact-form-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 36px;
    }

    .btn-submit-gold {
      background: var(--gold);
      color: var(--navy);
      border: none;
      border-radius: 10px;
      padding: 13px 32px;
      font-weight: 800;
      font-size: .95rem;
      cursor: pointer;
      transition: var(--tr);
      letter-spacing: .3px;
      width: 100%;
    }

    .btn-submit-gold:hover {
      background: #ffd700;
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(245, 197, 24, .3);
    }

    /* ===== ADMISSION SECTION ===== */
    #admission {
      background: var(--navy-mid);
    }

    .step-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 22px;
      text-align: center;
      height: 100%;
      transition: var(--tr);
      position: relative;
    }

    .step-card:hover {
      border-color: rgba(245, 197, 24, .2);
      transform: translateY(-5px);
    }

    .step-num {
      font-family: 'Cinzel', serif;
      font-size: 2.8rem;
      font-weight: 900;
      color: rgba(245, 197, 24, .15);
      line-height: 1;
      margin-bottom: 12px;
    }

    .step-icon {
      font-size: 2.4rem;
      margin-bottom: 14px;
    }

    .step-card h6 {
      font-family: 'Cinzel', serif;
      color: var(--white);
      font-size: .9rem;
      margin-bottom: 8px;
    }

    .step-card p {
      color: var(--muted);
      font-size: .85rem;
      line-height: 1.6;
      margin: 0;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--navy-mid);
      border-top: 1px solid var(--border);
      padding: 60px 0 0;
    }

    .footer-brand {
      font-family: 'Cinzel', serif;
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--white);
    }

    .footer-brand span {
      color: var(--gold);
    }

    .footer-brand small {
      display: block;
      font-family: 'Nunito', sans-serif;
      font-size: .7rem;
      color: var(--muted);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-top: -2px;
    }

    footer p {
      color: var(--muted);
      font-size: .85rem;
      line-height: 1.7;
      margin-top: 12px;
    }

    .fh {
      font-family: 'Cinzel', serif;
      color: var(--white);
      font-size: .85rem;
      letter-spacing: .5px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .fl {
      list-style: none;
      padding: 0;
    }

    .fl li {
      margin-bottom: 10px;
    }

    .fl a {
      color: var(--muted);
      font-size: .85rem;
      transition: var(--tr);
    }

    .fl a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding: 18px 0;
      margin-top: 40px;
      font-size: .8rem;
      color: var(--muted);
    }

    .nl-wrap {
      display: flex;
      gap: 8px;
    }

    .nl-wrap input {
      flex: 1;
      background: rgba(255, 255, 255, .05);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 9px 14px;
      color: var(--white);
      font-size: .85rem;
    }

    .nl-wrap input::placeholder {
      color: rgba(255, 255, 255, .25);
    }

    .nl-wrap input:focus {
      outline: none;
      border-color: rgba(245, 197, 24, .4);
    }

    .nl-wrap button {
      background: var(--gold);
      color: var(--navy);
      border: none;
      border-radius: 8px;
      padding: 9px 16px;
      font-weight: 800;
      font-size: .82rem;
      cursor: pointer;
      transition: var(--tr);
    }

    .nl-wrap button:hover {
      background: #ffd700;
    }

    /* ===== BACK TO TOP ===== */
    #btt {
      position: fixed;
      bottom: 28px;
      right: 28px;
      background: var(--gold);
      color: var(--navy);
      border: none;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      font-size: 1.3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 997;
      opacity: 0;
      transform: translateY(16px);
      transition: var(--tr);
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(245, 197, 24, .35);
    }

    #btt.show {
      opacity: 1;
      transform: translateY(0);
    }

    #btt:hover {
      background: #ffd700;
      transform: translateY(-2px);
    }

    /* ===== TOAST ===== */
    #toastWrap {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 9999;
      min-width: 320px;
    }

    .mytoast {
      background: rgba(20, 26, 60, .97);
      border: 1px solid rgba(245, 197, 24, .3);
      border-radius: 12px;
      padding: 14px 22px;
      color: var(--white);
      font-weight: 700;
      font-size: .9rem;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
      animation: toast-in .3s ease;
    }

    @keyframes toast-in {
      from {
        opacity: 0;
        transform: translateY(16px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    .mytoast i {
      color: var(--gold);
      font-size: 1.2rem;
    }

    /* ===== MODAL ===== */
    .modal-content {
      background: var(--navy-mid) !important;
      border: 1px solid rgba(245, 197, 24, .2) !important;
      border-radius: var(--radius) !important;
    }

    .modal-header {
      background: linear-gradient(90deg, var(--blue), var(--navy-mid)) !important;
      border-bottom: 1px solid var(--border) !important;
    }

    .modal-title {
      font-family: 'Cinzel', serif !important;
      color: var(--white) !important;
    }

    .modal-body {
      color: var(--text);
    }

    .modal-footer {
      border-top: 1px solid var(--border) !important;
    }

    .btn-close {
      filter: invert(1) !important;
    }

    .mod-detail-row {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: .88rem;
    }

    .mod-detail-row:last-child {
      border-bottom: none;
    }

    .mod-lbl {
      color: var(--muted);
      font-weight: 600;
    }

    .mod-val {
      color: var(--white);
      font-weight: 700;
    }

    /* ===== RESPONSIVE ===== */
    @media(max-width:768px) {
      #hero {
        min-height: auto;
        padding: 70px 0 50px;
      }

      .hero-orb {
        width: 260px;
        height: 260px;
      }

      .chip-1,
      .chip-2,
      .chip-3 {
        display: none;
      }

      .hstat-divider {
        display: none;
      }
    }

    @media(max-width:576px) {
      .hero-stats {
        gap: 14px;
      }

      .hstat .num {
        font-size: 1.6rem;
      }
    }
  




.map-box {
  width: 100%;
  max-width: 600px;   /* optional */
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
