/* --- INDEX STYLES --- */

    /* ──────────────────────────────────────────
       RESET & BASE
    ────────────────────────────────────────── */
    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    :root {
      --navy:     #07173C;
      --navy-mid: #0F2556;
      --navy-lt:  #1A3A7A;
      --gold:     #C8930A;
      --gold-lt:  #E5A80C;
      --gold-br:  #FFD700;
      --cream:    #FDF8EF;
      --white:    #FFFFFF;
      --gray:     #6B7280;
      --gray-lt:  #F3F4F6;
      --font-head: 'Playfair Display', Georgia, serif;
      --font-body: 'Inter', system-ui, sans-serif;
      --radius: 12px;
      --shadow: 0 4px 24px rgba(0,0,0,0.10);
      --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
      --transition: 0.3s ease;
    }
    
    html { scroll-behavior: smooth; }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* Accessibility Focus States */
    :focus { outline: none; }
    :focus-visible {
      outline: 3px solid var(--gold);
      outline-offset: 3px;
    }

    body { font-family: var(--font-body); color: var(--navy); background: var(--white); line-height: 1.6; overflow-x: hidden; }
    img  { max-width: 100%; display: block; }
    a    { text-decoration: none; color: inherit; }
    ul   { list-style: none; }

    /* ──────────────────────────────────────────
       UTILITY
    ────────────────────────────────────────── */
    .container   { max-width: 92%; margin: 0 auto; padding: 0 24px; }
    .section     { padding: 96px 0; }
    .section-sm  { padding: 64px 0; }
    .label       { font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
    .heading     { font-family: var(--font-head); font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.2; color: var(--navy); }
    .heading-white { color: var(--white); }
    .subtext     { font-size: 17px; color: var(--gray); line-height: 1.8; margin-top: 16px; }
    .subtext-white { color: rgba(255,255,255,0.78); }
    .gold        { color: var(--gold); }
    .text-center { text-align: center; }
    .btn         { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 15px; letter-spacing: 0.5px; transition: var(--transition); cursor: pointer; border: none; }
    .btn-gold    { background: var(--gold); color: var(--white); }
    .btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,147,10,0.35); }
    .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); }
    .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
    .btn-navy   { background: var(--navy); color: var(--white); }
    .btn-navy:hover { background: var(--navy-lt); transform: translateY(-2px); }
    .divider     { width: 56px; height: 4px; background: var(--gold); border-radius: 2px; margin: 20px 0 32px; }
    .divider-center { margin: 20px auto 32px; }
    .fade-in     { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    
    .spinner {
      display: inline-block;
      width: 16px;
      height: 16px;
      border: 2.5px solid rgba(255,255,255,0.3);
      border-radius: 50%;
      border-top-color: white;
      animation: spin 0.8s ease-in-out infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ──────────────────────────────────────────
       NAVIGATION
    ────────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(7,23,60,0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(200,147,10,0.2);
      transition: var(--transition);
    }
    .nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
    .nav-brand { display: flex; align-items: center; gap: 12px; }
    .nav-brand img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
    .nav-brand-text { display: flex; flex-direction: column; }
    .nav-brand-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.2; }
    .nav-brand-sub  { font-size: 9px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 8px; }
    .nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.82); padding: 8px 14px; border-radius: 6px; transition: var(--transition); }
    .nav-links a:hover { color: var(--gold-br); background: rgba(255,255,255,0.06); }
    .nav-cta { background: var(--gold); color: var(--white) !important; padding: 10px 20px !important; border-radius: 6px !important; font-weight: 600 !important; }
    .nav-cta:hover { background: var(--gold-lt) !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
    .mobile-menu { display: none; flex-direction: column; background: var(--navy); padding: 16px 24px 24px; gap: 4px; border-top: 1px solid rgba(200,147,10,0.2); }
    .mobile-menu a { color: rgba(255,255,255,0.85); font-size: 15px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .mobile-menu a:last-child { border: none; }
    .mobile-menu.open { display: flex; }

    /* ──────────────────────────────────────────
       HERO — Vivid photos + directional scrim
    ────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      background: #06122E; /* fallback while images load */
      display: flex; align-items: center;
      position: relative; overflow: hidden; padding-top: 72px;
    }

    /* PHOTO LAYER — now shows at near-full brightness */
    .hero-slider { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
    .hero-slider .slide {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0;
      animation: fadeCycle 28s infinite ease-in-out;
      /* Full brightness; mild saturation + contrast for pop */
      filter: saturate(1.10) contrast(1.06) brightness(1);
    }
    .hero-slider .slide:nth-child(1) { animation-delay: 0s; }
    .hero-slider .slide:nth-child(2) { animation-delay: 7s; }
    .hero-slider .slide:nth-child(3) { animation-delay: 14s; }
    .hero-slider .slide:nth-child(4) { animation-delay: 21s; }

    /* Ken Burns — slow zoom+drift so static feel disappears */
    @keyframes fadeCycle {
      0%  { opacity: 0; transform: scale(1.10) translateX(0); }
      7%  { opacity: 1; transform: scale(1.06) translateX(-0.5%); }
      22% { opacity: 1; transform: scale(1.00) translateX(-1.2%); }
      28% { opacity: 0; transform: scale(1.00) translateX(-1.5%); }
      100%{ opacity: 0; transform: scale(1.10) translateX(0); }
    }

    /* DIRECTIONAL SCRIM — dark on the left where text+badge sit, clear on the right where the photo can breathe */
    .hero::before {
      content: '';
      position: absolute; inset: 0; z-index: 2;
      background:
        linear-gradient(90deg,
          rgba(6,18,46,0.90) 0%,
          rgba(6,18,46,0.74) 35%,
          rgba(6,18,46,0.35) 60%,
          rgba(6,18,46,0.10) 85%,
          rgba(6,18,46,0.00) 100%),
        linear-gradient(180deg,
          rgba(6,18,46,0.45) 0%,
          transparent 18%,
          transparent 78%,
          rgba(6,18,46,0.65) 100%);
      pointer-events: none;
    }

    /* Subtle gold dot texture — very light so it doesn't fight the photo */
    .hero::after {
      content: '';
      position: absolute; inset: 0; z-index: 2;
      background-image: radial-gradient(rgba(200,147,10,0.06) 1px, transparent 1px);
      background-size: 36px 36px;
      pointer-events: none;
      mix-blend-mode: overlay;
    }

    .hero-content {
      position: relative; z-index: 3;
      display: grid;
      /* Pin both columns to the left so more photo shows on the right */
      grid-template-columns: minmax(0, 540px) minmax(0, 380px);
      justify-content: start;
      gap: 40px;
      align-items: center;
    }

    .hero-badge-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(200,147,10,0.22); border: 1px solid rgba(200,147,10,0.5);
      color: #FFE7A8; font-size: 12px; font-weight: 700; letter-spacing: 2px;
      padding: 8px 18px; border-radius: 50px; margin-bottom: 28px; text-transform: uppercase;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    }
    .hero-badge-pill span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
    .hero-title {
      font-family: var(--font-head);
      font-size: clamp(36px, 5vw, 68px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 8px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 8px 32px rgba(0,0,0,0.7);
    }
    .hero-title .accent { color: var(--gold-br); display: block; text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 0 40px rgba(200,147,10,0.35); }
    .hero-motto {
      font-size: clamp(13px, 1.5vw, 16px);
      letter-spacing: 4px; font-weight: 700;
      color: #F5CF55; text-transform: uppercase;
      margin: 20px 0 16px;
      text-shadow: 0 2px 8px rgba(0,0,0,0.85);
    }
    .hero-motto span { margin: 0 6px; opacity: 0.5; }
    .hero-desc {
      font-size: 17px; color: rgba(255,255,255,0.95); line-height: 1.8;
      margin-bottom: 36px; max-width: 440px;
      text-shadow: 0 1px 3px rgba(0,0,0,0.65), 0 2px 12px rgba(0,0,0,0.55);
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .hero-badge-wrap {
      display: flex; justify-content: center; align-items: center;
      position: relative;
    }
    .hero-badge-ring {
      position: relative;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgba(6,18,46,0.55) 0%, rgba(6,18,46,0.28) 60%, rgba(6,18,46,0) 100%);
      border: 1px solid rgba(200,147,10,0.4);
      display: flex; align-items: center; justify-content: center;
      animation: float 6s ease-in-out infinite;
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.45), inset 0 0 40px rgba(200,147,10,0.08);
    }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
    .hero-badge-ring::before {
      content: ''; position: absolute; inset: -16px;
      border-radius: 50%; border: 1px solid rgba(200,147,10,0.22);
    }
    .hero-badge-ring::after {
      content: ''; position: absolute; inset: -32px;
      border-radius: 50%; border: 1px solid rgba(200,147,10,0.10);
    }
    .hero-badge-img {
      width: 250px; height: 250px;
      border-radius: 50%;
      object-fit: cover;
      filter: drop-shadow(0 0 32px rgba(200,147,10,0.5)) drop-shadow(0 8px 20px rgba(0,0,0,0.5));
    }

    /* ──────────────────────────────────────────
       STATS BAR
    ────────────────────────────────────────── */
    .stats-bar { background: var(--gold); padding: 0; }
    .stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
    .stat-item { padding: 28px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.25); position: relative; }
    .stat-item:last-child { border-right: none; }
    .stat-num  { font-family: var(--font-head); font-size: 38px; font-weight: 900; color: var(--navy); line-height: 1; }
    .stat-lbl  { font-size: 12px; font-weight: 600; color: rgba(7,23,60,0.7); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }

    /* ──────────────────────────────────────────
       ABOUT
    ────────────────────────────────────────── */
    .about { background: var(--white); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .about-img-wrap { position: relative; }
    .about-img-main { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; max-height: 440px; }
    .about-img-badge {
      position: absolute; bottom: -24px; right: -24px;
      width: 130px; height: 130px; border-radius: 50%;
      object-fit: cover;
      border: 5px solid var(--white);
      box-shadow: var(--shadow-lg);
    }
    .about-accent {
      position: absolute; top: -16px; left: -16px;
      width: 90px; height: 90px; border-radius: 50%;
      background: var(--gold); opacity: 0.15;
    }
    .about-card {
      background: var(--cream); border-left: 4px solid var(--gold);
      border-radius: 8px; padding: 20px 24px; margin-top: 28px;
    }
    .about-card p { font-size: 15px; color: var(--gray); font-style: italic; line-height: 1.7; }
    .about-card strong { color: var(--navy); }

    /* ──────────────────────────────────────────
       PROGRAMS
    ────────────────────────────────────────── */
    .programs { background: var(--cream); }
    .programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
    .program-card {
      background: var(--white); border-radius: var(--radius);
      overflow: hidden; box-shadow: var(--shadow);
      transition: var(--transition);
    }
    .program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .program-card-header {
      background: var(--navy); padding: 36px 36px 28px;
      position: relative; overflow: hidden;
    }
    .program-card-header::before {
      content: ''; position: absolute; top: -40px; right: -40px;
      width: 140px; height: 140px; border-radius: 50%;
      background: rgba(200,147,10,0.12);
    }
    .program-icon { width: 56px; height: 56px; background: var(--gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
    .program-icon svg { width: 28px; height: 28px; fill: var(--white); }
    .program-card-header h3 { font-family: var(--font-head); font-size: 26px; color: var(--white); }
    .program-card-header p { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 6px; }
    .program-card-body { padding: 32px 36px; }
    .program-ages { display: inline-flex; align-items: center; gap: 8px; background: var(--cream); border-radius: 50px; padding: 6px 16px; font-size: 13px; font-weight: 600; color: var(--gold); margin-bottom: 20px; }
    .program-features { display: flex; flex-direction: column; gap: 12px; }
    .program-feat { display: flex; align-items: flex-start; gap: 12px; }
    .program-feat .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 6px; flex-shrink: 0; }
    .program-feat p { font-size: 14px; color: var(--gray); line-height: 1.6; }

    /* ──────────────────────────────────────────
       VALUES (INNOVATE · EDUCATE · ELEVATE)
    ────────────────────────────────────────── */
    .values { background: var(--navy); overflow: hidden; position: relative; }
    .values::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background-image: radial-gradient(rgba(200,147,10,0.06) 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .values-inner { position: relative; z-index: 1; }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
    .value-card { background: rgba(255,255,255,0.04); padding: 48px 36px; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
    .value-card::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--gold); transition: width 0.4s ease; }
    .value-card:hover::after { width: 80%; }
    .value-card:hover { background: rgba(200,147,10,0.08); }
    .value-num { font-family: var(--font-head); font-size: 72px; font-weight: 900; color: rgba(200,147,10,0.12); line-height: 1; position: absolute; top: 20px; right: 24px; }
    .value-icon-wrap { width: 72px; height: 72px; border-radius: 50%; background: rgba(200,147,10,0.15); border: 1px solid rgba(200,147,10,0.3); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
    .value-icon-wrap svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
    .value-word { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
    .value-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.75; }

    /* ──────────────────────────────────────────
       WHY CHOOSE US
    ────────────────────────────────────────── */
    .why { background: var(--white); }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
    .why-card { border: 1px solid #E5E7EB; border-radius: var(--radius); padding: 32px 28px; transition: var(--transition); }
    .why-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(200,147,10,0.12); transform: translateY(-4px); }
    .why-card-icon { width: 52px; height: 52px; border-radius: 10px; background: var(--cream); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
    .why-card-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 2; }
    .why-card h4 { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .why-card p  { font-size: 14px; color: var(--gray); line-height: 1.7; }

    /* ──────────────────────────────────────────
       ADMISSIONS
    ────────────────────────────────────────── */
    .admissions { background: var(--cream); }
    .admissions-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
    .steps { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
    .step { display: flex; gap: 20px; position: relative; padding-bottom: 32px; }
    .step:last-child { padding-bottom: 0; }
    .step::after { content: ''; position: absolute; left: 19px; top: 48px; bottom: 0; width: 2px; background: #E5E7EB; }
    .step:last-child::after { display: none; }
    .step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--white); font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; }
    .step-content h4 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .step-content p  { font-size: 14px; color: var(--gray); line-height: 1.65; }
    .admissions-cta { background: var(--navy); border-radius: var(--radius); padding: 48px; text-align: center; }
    .admissions-cta h3 { font-family: var(--font-head); font-size: 28px; color: var(--white); margin-bottom: 10px; }
    .admissions-cta p  { color: rgba(255,255,255,0.65); margin-bottom: 28px; font-size: 15px; }
    .admissions-contacts { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
    .contact-chip { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.06); border-radius: 8px; padding: 12px 16px; color: var(--white); font-size: 15px; font-weight: 500; }
    .contact-chip svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }

    /* ──────────────────────────────────────────
       GALLERY
    ────────────────────────────────────────── */
    .gallery { background: var(--white); }
    .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 16px; margin-top: 48px; }
    .gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    .gallery-item:hover img { transform: scale(1.05); }
    .gallery-item-1 { grid-column: 1/3; height: 320px; }
    .gallery-item-2 { height: 320px; }
    .gallery-item-3, .gallery-item-4, .gallery-item-5 { height: 220px; }
    /* Placeholder tiles for items 3-5 (no real photos) */
    .gallery-placeholder { background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; height: 100%; min-height: 220px; }
    .gallery-placeholder svg { width: 36px; height: 36px; stroke: rgba(200,147,10,0.5); fill: none; stroke-width: 1.5; }
    .gallery-placeholder span { font-size: 13px; color: rgba(255,255,255,0.4); letter-spacing: 1px; }

    /* ──────────────────────────────────────────
       TESTIMONIALS
    ────────────────────────────────────────── */
    .testimonials { background: var(--cream); }
    .testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
    .testi-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); position: relative; }
    .testi-card::before { content: '\201C'; font-family: var(--font-head); font-size: 72px; color: var(--gold); opacity: 0.3; position: absolute; top: 10px; left: 22px; line-height: 1; }
    .testi-text { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 20px; font-style: italic; padding-top: 20px; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); flex-shrink: 0; }
    .testi-name { font-weight: 600; font-size: 14px; color: var(--navy); }
    .testi-role { font-size: 12px; color: var(--gray); }

    /* ──────────────────────────────────────────
       CONTACT
    ────────────────────────────────────────── */
    .contact { background: var(--navy); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; }

    .contact-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
    .contact-item-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(200,147,10,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .contact-item-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
    .contact-item-text h4 { font-weight: 600; font-size: 14px; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
    .contact-item-text p, .contact-item-text a { font-size: 16px; color: var(--white); line-height: 1.55; }
    .contact-item-text a:hover { color: var(--gold); }
    .contact-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 40px; }
    .contact-form h3 { font-family: var(--font-head); font-size: 24px; color: var(--white); margin-bottom: 28px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .form-group label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }
    .form-group input, .form-group select, .form-group textarea {
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px; padding: 12px 16px; font-size: 15px; color: var(--white);
      font-family: var(--font-body); transition: var(--transition); outline: none;
    }
    .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: rgba(200,147,10,0.06); }
    .form-group select option { background: var(--navy); }
    .form-group textarea { resize: vertical; min-height: 110px; }

    /* ──────────────────────────────────────────
       FOOTER
    ────────────────────────────────────────── */
    .footer { background: #04102A; border-top: 1px solid rgba(200,147,10,0.15); }
    .footer-top { padding: 64px 0 48px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
    .footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-brand-logo img { width: 50px; height: 50px; border-radius: 50%; }
    .footer-brand-name { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); }
    .footer-brand-sub  { font-size: 10px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
    .footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 260px; margin-bottom: 20px; }
    .footer-motto { font-size: 11px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; opacity: 0.8; }
    .footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.45); transition: var(--transition); }
    .footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
    .footer-contact p { font-size: 14px; color: rgba(255,255,255,0.45); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
    .footer-contact p svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
    .footer-bottom .gold { color: var(--gold); }

    /* ──────────────────────────────────────────
       VACANCIES
    ────────────────────────────────────────── */
    .vacancies { background: var(--white); }
    .vacancies-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
    .vacancy-grid { display: flex; flex-direction: column; gap: 20px; }
    .vacancy-card { border: 1px solid #E5E7EB; border-radius: var(--radius); padding: 28px 32px; display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; transition: var(--transition); }
    .vacancy-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(200,147,10,0.1); }
    .vacancy-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--cream); border-radius: 50px; padding: 4px 12px; font-size: 12px; font-weight: 600; color: var(--gold); margin-bottom: 8px; }
    .vacancy-tag.urgent { background: #FEF2F2; color: #DC2626; }
    .vacancy-card h4 { font-family: var(--font-head); font-size: 19px; color: var(--navy); margin-bottom: 6px; }
    .vacancy-meta { display: flex; gap: 18px; font-size: 13px; color: var(--gray); flex-wrap: wrap; margin-top: 8px; }
    .vacancy-meta span { display: flex; align-items: center; gap: 5px; }
    .vacancy-meta svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2; }
    .vacancy-desc { font-size: 14px; color: var(--gray); line-height: 1.65; margin-top: 8px; }
    .vacancy-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
    .no-vacancies { text-align: center; padding: 56px; background: var(--cream); border-radius: var(--radius); color: var(--gray); }
    .no-vacancies svg { width: 40px; height: 40px; stroke: var(--gold); fill: none; stroke-width: 1.5; margin: 0 auto 14px; display: block; }

    /* ──────────────────────────────────────────
       SOCIAL MEDIA
    ────────────────────────────────────────── */
    .social-links { display: flex; gap: 10px; }
    .social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
    .social-link:hover { background: var(--gold); transform: translateY(-2px); }
    .social-link svg { width: 16px; height: 16px; fill: white; }
    .social-link.wa:hover { background: #25D366; }
    .social-link.fb:hover { background: #1877F2; }
    .social-link.ig:hover { background: #E4405F; }
    .social-link.yt:hover { background: #FF0000; }
    .social-link.tw:hover { background: #1DA1F2; }

    /* WhatsApp floating button */
    .whatsapp-float {
      position: fixed; bottom: 88px; right: 28px; z-index: 999;
      width: 52px; height: 52px; border-radius: 50%;
      background: #25D366; color: white;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45);
      transition: var(--transition); cursor: pointer;
      text-decoration: none;
      animation: wa-pulse 3s infinite;
    }
    @keyframes wa-pulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.45)} 50%{box-shadow:0 4px 32px rgba(37,211,102,0.75)} }
    .whatsapp-float:hover { transform: scale(1.1); animation: none; }
    .whatsapp-float svg { width: 28px; height: 28px; fill: white; }

    /* ──────────────────────────────────────────
       SCROLL TO TOP
    ────────────────────────────────────────── */
    .scroll-top {
      position: fixed; bottom: 28px; right: 28px; z-index: 999;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--gold); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(200,147,10,0.4);
      opacity: 0; pointer-events: none; transition: var(--transition);
      cursor: pointer; border: none;
    }
    .scroll-top.show { opacity: 1; pointer-events: auto; }
    .scroll-top:hover { background: var(--gold-lt); transform: translateY(-2px); }
    .scroll-top svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2.5; }

    /* ──────────────────────────────────────────
       RESPONSIVE
    ────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero-content    { grid-template-columns: 1fr; text-align: center; gap: 48px; }
      .hero-badge-wrap { order: -1; }
      .hero-badge-ring { width: 280px; height: 280px; }
      .hero-badge-img  { width: 220px; height: 220px; }
      .hero-desc       { max-width: 100%; }
      .hero-btns       { justify-content: center; }
      .about-grid      { grid-template-columns: 1fr; gap: 40px; }
      .about-img-badge { right: 10px; bottom: -16px; width: 100px; height: 100px; }
      .footer-top      { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 768px) {
      .section         { padding: 64px 0; }
      .nav-links       { display: none; }
      .hamburger       { display: flex; }
      .stats-inner     { grid-template-columns: repeat(2,1fr); }
      .stat-item       { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.25); }
      .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.25); }
      .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
      .programs-grid   { grid-template-columns: 1fr; }
      .values-grid     { grid-template-columns: 1fr; gap: 0; }
      .why-grid        { grid-template-columns: 1fr 1fr; }
      .admissions-grid { grid-template-columns: 1fr; gap: 40px; }
      .gallery-grid    { grid-template-columns: 1fr 1fr; }
      .gallery-item-1  { grid-column: 1/3; }
      .testi-grid      { grid-template-columns: 1fr; }
      .contact-grid    { grid-template-columns: 1fr; gap: 40px; }
      .footer-top      { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom   { flex-direction: column; gap: 8px; text-align: center; }
      .form-row        { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .why-grid        { grid-template-columns: 1fr; }
      .gallery-grid    { grid-template-columns: 1fr; }
      .gallery-item-1  { grid-column: 1/2; }
      .hero-badge-ring { width: 220px; height: 220px; }
      .hero-badge-img  { width: 170px; height: 170px; }
    }
  
/* --- REGISTER STYLES --- */

    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    :root {
      --navy:    #07173C;
      --navy-mid:#0F2556;
      --gold:    #C8930A;
      --gold-lt: #E5A80C;
      --cream:   #FDF8EF;
      --white:   #FFFFFF;
      --gray:    #6B7280;
      --gray-lt: #F3F4F6;
      --red:     #DC2626;
      --green:   #16A34A;
      --font-head:'Playfair Display', Georgia, serif;
      --font-body:'Inter', system-ui, sans-serif;
      --radius: 12px;
      --shadow: 0 4px 24px rgba(0,0,0,0.08);
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); background: var(--gray-lt); color: var(--navy); min-height: 100vh; }
    a    { text-decoration: none; color: inherit; }

    /* ── TOPBAR ── */
    .topbar {
      background: var(--navy);
      border-bottom: 3px solid var(--gold);
      padding: 0 24px;
    }
    .topbar-inner { max-width: 92%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 64px; }
    .topbar-brand { display: flex; align-items: center; gap: 12px; }
    .topbar-brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
    .topbar-brand-name { font-family: var(--font-head); font-size: 16px; color: var(--white); }
    .topbar-brand-sub  { font-size: 9px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
    .topbar-back { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
    .topbar-back:hover { color: var(--gold); }
    .topbar-back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

    /* ── HERO STRIP ── */
    .reg-hero {
      background: linear-gradient(135deg, #06122E, #1A3A7A);
      padding: 48px 24px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .reg-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(200,147,10,0.07) 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .reg-hero-inner { position: relative; z-index: 1; }
    .reg-hero h1 { font-family: var(--font-head); font-size: clamp(24px, 4vw, 38px); color: var(--white); margin-bottom: 8px; }
    .reg-hero h1 span { color: var(--gold); }
    .reg-hero p  { font-size: 15px; color: rgba(255,255,255,0.65); margin-top: 8px; }
    .steps-progress { display: flex; justify-content: center; gap: 0; margin-top: 32px; }
    .step-pill { display: flex; align-items: center; gap: 0; }
    .step-dot  { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); transition: all 0.3s; }
    .step-dot.active   { background: var(--gold); border-color: var(--gold); color: var(--white); }
    .step-dot.complete { background: var(--green); border-color: var(--green); color: var(--white); }
    .step-line { width: 60px; height: 2px; background: rgba(255,255,255,0.15); }
    .step-line.active { background: var(--gold); }
    .step-label { font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 6px; letter-spacing: 1px; text-align: center; max-width: 72px; }
    .step-pill-wrap { display: flex; flex-direction: column; align-items: center; }

    /* ── FORM WRAPPER ── */
    .form-wrap { max-width: 1000px; margin: -20px auto 60px; padding: 0 16px; }
    .form-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }

    /* ── SECTION HEADER ── */
    .form-section { display: none; padding: 40px 48px; }
    .form-section.active { display: block; }
    .fs-header { border-bottom: 1px solid #F0F0F0; padding-bottom: 20px; margin-bottom: 28px; display: flex; align-items: center; gap: 14px; }
    .fs-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--cream); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .fs-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; }
    .fs-header h2 { font-family: var(--font-head); font-size: 22px; color: var(--navy); }
    .fs-header p  { font-size: 13px; color: var(--gray); margin-top: 2px; }

    /* ── FORM ELEMENTS ── */
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
    .form-group.full { grid-column: 1/-1; }
    label { font-size: 13px; font-weight: 600; color: var(--navy); }
    label span.req { color: var(--red); margin-left: 3px; }
    input, select, textarea {
      padding: 11px 14px; border: 1.5px solid #E5E7EB; border-radius: 8px;
      font-size: 14px; color: var(--navy); font-family: var(--font-body);
      background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none;
    }
    input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,147,10,0.12); }
    input.error, select.error { border-color: var(--red); }
    .error-msg { font-size: 11px; color: var(--red); margin-top: 3px; display: none; }
    input.error + .error-msg { display: block; }
    textarea { resize: vertical; min-height: 90px; }
    select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8930A' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
    .hint { font-size: 11px; color: var(--gray); margin-top: 4px; line-height: 1.5; }
    .radio-group, .checkbox-group { display: flex; flex-direction: column; gap: 10px; }
    .radio-item, .checkbox-item { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: var(--navy); }
    .radio-item input[type=radio], .checkbox-item input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }
    .section-divider { border: none; border-top: 1px solid #F0F0F0; margin: 8px 0 24px; }
    .form-note { background: var(--cream); border-left: 3px solid var(--gold); border-radius: 6px; padding: 14px 18px; font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 20px; }
    .form-note strong { color: var(--navy); }

    /* ── NAVIGATION BUTTONS ── */
    .form-nav { display: flex; justify-content: space-between; align-items: center; padding: 24px 48px; border-top: 1px solid #F0F0F0; background: var(--gray-lt); }
    .btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: all 0.2s; font-family: var(--font-body); }
    .btn-gold  { background: var(--gold); color: var(--white); }
    .btn-gold:hover  { background: var(--gold-lt); transform: translateY(-1px); }
    .btn-outline { background: transparent; color: var(--navy); border: 1.5px solid #D1D5DB; }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .btn-green { background: var(--green); color: var(--white); }
    .btn-green:hover { background: #15803D; }
    .btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; }

    /* ── SUCCESS SCREEN ── */
    .success-screen { display: none; text-align: center; padding: 64px 48px; }
    .success-screen.show { display: block; }
    .success-icon { width: 80px; height: 80px; border-radius: 50%; background: #DCFCE7; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
    .success-icon svg { width: 40px; height: 40px; stroke: var(--green); fill: none; stroke-width: 2.5; }
    .success-screen h2 { font-family: var(--font-head); font-size: 28px; color: var(--navy); margin-bottom: 12px; }
    .success-screen p  { font-size: 15px; color: var(--gray); line-height: 1.75; max-width: 480px; margin: 0 auto 28px; }
    .ref-code { display: inline-block; background: var(--cream); border: 1.5px dashed var(--gold); border-radius: 8px; padding: 10px 24px; font-family: monospace; font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: 3px; margin: 16px 0; }
    .success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 640px) {
      .form-section { padding: 28px 20px; }
      .form-nav     { padding: 20px; }
      .form-row, .form-row-3 { grid-template-columns: 1fr; }
      .step-line { width: 32px; }
    }
  
/* ──────────────────────────────────────────
   GALLERY ENHANCEMENTS & LIGHTBOX
────────────────────────────────────────── */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.gallery-item:hover::after {
  opacity: 0.9;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  z-index: 2;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.3s ease;
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

/* Lightbox Modal */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}
.lightbox.show {
  opacity: 1; pointer-events: auto;
}
.lightbox-content {
  position: relative;
  max-width: 90%; max-height: 85vh;
  transform: scale(0.95); transition: transform 0.3s ease;
}
.lightbox.show .lightbox-content { transform: scale(1); }
.lightbox img {
  max-width: 100%; max-height: 85vh;
  border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  display: block;
}
.lightbox-close {
  position: absolute; top: -40px; right: 0;
  color: white; font-size: 32px; background: none; border: none; cursor: pointer;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: white; font-size: 48px; background: none; border: none; cursor: pointer;
  padding: 20px; z-index: 10;
  transition: transform 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }


/* ──────────────────────────────────────────
   WHATSAPP & NEW FEATURES
────────────────────────────────────────── */
.wa-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}
.wa-widget:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(37,211,102,0.6);
}
.wa-widget svg {
  width: 34px;
  height: 34px;
  fill: white;
}

/* FAQ Accordion */
.faq-wrap { margin-top: 40px; }
.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(200,147,10,0.1);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  color: var(--navy);
  user-select: none;
}
.faq-question span { font-size: 16px; font-weight: 700; }
.faq-icon {
  width: 24px; height: 24px;
  position: relative;
  transition: transform 0.3s;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--navy);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.active .faq-question { color: var(--gold); }
.faq-item.active .faq-question .faq-icon::before { background: var(--gold); }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--gray);
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  padding: 0 24px 20px;
  max-height: 300px;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.team-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.team-img {
  width: 100%; height: 260px;
  background-color: #E5E7EB;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.team-img svg { width: 64px; height: 64px; fill: #9CA3AF; }
.team-info { padding: 24px; }
.team-name { font-family: var(--font-head); font-size: 20px; color: var(--navy); margin-bottom: 4px; font-weight: 700; }
.team-role { font-size: 13px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; display: block; }
.team-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }
