 :root {
      --green-dark:   #01452c;
      --green-mid:    #0a6641;
      --green-light:  #1a8a56;
      --gold:         #c9a84c;
      --gold-light:   #e8cb7a;
      --cream:        #f9f5ee;
      --text-dark:    #1a1a1a;
      --text-muted:   #5a5a5a;
      --white:        #ffffff;
      --radius:       12px;
      --transition:   0.3s ease;
    }

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

    html { scroll-behavior: smooth; }

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

      /* ── SCROLL PROGRESS ── */
    #progress-bar {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, var(--gold), #fff176);
      z-index: 9999;
      transition: width 0.1s linear;
    }

    /* ── NAVBAR ── */
    .navbar {
      background: rgba(1,69,44,0.97) !important;
      backdrop-filter: blur(12px);
      padding: 0.6rem 0;
      transition: all 0.4s ease;
      border-bottom: 1px solid rgba(245,197,24,0.12);
    }

    .navbar.scrolled {
      padding: 0.35rem 0;
      box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .brand-logo {
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 2px solid rgba(245,197,24,0.5);
      background: white;
      padding: 4px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .brand-logo:hover {
      transform: rotate(-5deg) scale(1.08);
      box-shadow: 0 0 20px rgba(245,197,24,0.5);
    }

    .brand-text {
      display: flex; flex-direction: column;
    }

    .brand-text .name {
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      line-height: 1.2;
      letter-spacing: 0.01em;
    }

    .brand-text .tagline {
      color: var(--gold);
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .navbar-nav .nav-link {
      color: rgba(255,255,255,0.88) !important;
      font-weight: 500;
      font-size: 0.88rem;
      letter-spacing: 0.02em;
      padding: 0.5rem 0.75rem !important;
      position: relative;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 4px; left: 50%;
      width: 0; height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }

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

    .navbar-nav .nav-link:hover::after { width: 60%; }

    .navbar-nav .nav-link.active::after { width: 60%; }

    .dropdown-menu {
      background: #012e1e;
      border: 1px solid rgba(245,197,24,0.15);
      border-radius: var(--radius-md);
      padding: 0.5rem;
      margin-top: 8px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }

    .dropdown-item {
      color: rgba(255,255,255,0.8);
      font-size: 0.85rem;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      transition: all 0.25s ease;
    }

    .dropdown-item:hover {
      background: rgba(245,197,24,0.12);
      color: var(--gold);
      padding-left: 1.3rem;
    }

    .navbar-toggler {
      border: none;
      padding: 0;
    }

    /* ─── HERO ───────────────────────────────────────────────── */
    .hero {
      position: relative;
      height: 75vh;
      min-height: 480px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      transform: scale(1.05);
      transition: transform 8s ease;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(1,69,44,0.65) 0%,
        rgba(1,69,44,0.45) 50%,
        rgba(0,0,0,0.7) 100%
      );
    }
    .hero:hover .hero-bg { transform: scale(1); }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 1.5rem;
      animation: fadeUp 0.9s ease both;
    }
    .hero-eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid var(--gold);
      padding: 4px 16px;
      border-radius: 100px;
      margin-bottom: 1.2rem;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .hero-sub {
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      color: rgba(255,255,255,0.82);
      max-width: 600px;
      margin: 0 auto 2rem;
      line-height: 1.7;
    }
    .scroll-hint {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.5);
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .scroll-hint i { font-size: 1.2rem; animation: bounce 1.8s infinite; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(6px); }
    }

    /* ─── SECTION COMMON ─────────────────────────────────────── */
    .section { padding: 90px 2rem; }
    .container { max-width: 1200px; margin: 0 auto; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--green-light);
      margin-bottom: 0.75rem;
    }
    .section-label::before {
      content: '';
      width: 28px; height: 2px;
      background: var(--gold);
      border-radius: 2px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 900;
      color: var(--green-dark);
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .section-title span { color: var(--gold); }
    .section-lead {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.8;
      max-width: 650px;
    }

    /* ─── HISTORY TIMELINE ───────────────────────────────────── */
    .history-section { background: var(--white); }

    .timeline {
      position: relative;
      margin-top: 3rem;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 32px;
      top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--green-light), var(--gold));
    }
    .timeline-item {
      position: relative;
      padding: 0 0 3rem 80px;
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .timeline-item {
      opacity: 1;
      transform: translateX(0);
    }
    .timeline-dot {
      position: absolute;
      left: 20px;
      top: 4px;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--green-dark);
      border: 3px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .timeline-dot i { font-size: 0.65rem; color: var(--gold); }
    .timeline-year {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 0.4rem;
    }
    .timeline-card {
      background: var(--cream);
      border-radius: var(--radius);
      padding: 1.5rem 1.8rem;
      border-left: 3px solid var(--green-light);
    }
    .timeline-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--green-dark);
      margin-bottom: 0.6rem;
    }
    .timeline-card p {
      font-size: 0.93rem;
      line-height: 1.75;
      color: var(--text-muted);
      text-align: justify;
    }

    /* ─── MISSION SECTION ────────────────────────────────────── */
    .mission-section {
      background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
      position: relative;
      overflow: hidden;
    }
    .mission-section::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 300px; height: 300px;
      border-radius: 50%;
      border: 60px solid rgba(255,255,255,0.04);
    }
    .mission-section::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -40px;
      width: 240px; height: 240px;
      border-radius: 50%;
      border: 50px solid rgba(201,168,76,0.08);
    }
    .mission-section .section-title { color: var(--white); }
    .mission-section .section-label { color: var(--gold-light); }
    .mission-section .section-lead { color: rgba(255,255,255,0.7); }

    .mvv-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .mvv-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius);
      padding: 2rem;
      transition: background var(--transition), transform var(--transition);
      backdrop-filter: blur(4px);
    }
    .mvv-card:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-4px);
    }
    .mvv-icon {
      width: 48px; height: 48px;
      border-radius: 10px;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      font-size: 1.3rem;
      color: var(--gold);
    }
    .mvv-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
    .mvv-card p {
      font-size: 0.92rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.7);
    }

    /* Core values pill list */
    .values-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 0.75rem;
    }
    .values-list span {
      background: rgba(201,168,76,0.18);
      border: 1px solid rgba(201,168,76,0.35);
      color: var(--gold-light);
      padding: 4px 14px;
      border-radius: 100px;
      font-size: 0.83rem;
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    /* ─── LEADERSHIP SECTION ─────────────────────────────────── */
    .leadership-section { background: var(--cream); }

    .leaders-list {
      margin-top: 2.5rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1rem;
    }
    .leader-item {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--white);
      border-radius: var(--radius);
      padding: 1rem 1.2rem;
      border: 1px solid rgba(0,0,0,0.06);
      transition: box-shadow var(--transition), transform var(--transition);
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s, background 0.3s;
    }
    .leader-item{
      opacity: 1;
      transform: translateY(0);
    }
    .leader-item:hover {
      box-shadow: 0 6px 24px rgba(1,69,44,0.1);
      transform: translateY(-2px);
    }
    .leader-num {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: var(--green-dark);
      color: var(--gold);
      font-size: 0.78rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .leader-info { min-width: 0; }
    .leader-name {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--green-dark);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .leader-term {
      font-size: 0.78rem;
      color: var(--text-muted);
    }
    .leader-current .leader-num { background: var(--gold); color: var(--green-dark); }
    .leader-current { border-color: var(--gold); }
    .leader-current .leader-name { color: #8b6914; }

    /* ─── STATS STRIP ────────────────────────────────────────── */
    .stats-strip {
      background: var(--green-dark);
      padding: 50px 2rem;
    }
    .stats-grid {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 2rem;
      text-align: center;
    }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.82rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-top: 6px;
    }
/* ── FOOTER ── */
    .footer {
      background: #011c13;
      color: white;
      padding: 5rem 0 0;
    }

    .footer-brand p {
      color: rgba(255,255,255,0.55);
      font-size: 0.85rem;
      line-height: 1.7;
      margin-top: 1rem;
    }

    .footer-heading {
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .footer-links { list-style: none; padding: 0; margin: 0; }

    .footer-links li { margin-bottom: 0.5rem; }

    .footer-links a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: 0.85rem;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .footer-links a::before {
      content: '';
      display: inline-block;
      width: 0; height: 1.5px;
      background: var(--gold);
      transition: width 0.3s ease;
      vertical-align: middle;
    }

    .footer-links a:hover { color: var(--gold); }
    .footer-links a:hover::before { width: 10px; }

    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: rgba(255,255,255,0.55);
      font-size: 0.82rem;
      margin-bottom: 0.75rem;
      line-height: 1.5;
    }

    .footer-contact li i {
      color: var(--gold);
      margin-top: 2px;
      flex-shrink: 0;
    }

    .social-links { display: flex; gap: 10px; margin-top: 1.25rem; }

    .social-link {
      width: 38px; height: 38px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.65);
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--green-deep);
      transform: translateY(-3px);
    }

    .accred-section {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 2.5rem 0;
      margin-top: 4rem;
    }

    .accred-label {
      font-size: 0.65rem;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .accred-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .accred-logos img {
      max-height: 52px;
      max-width: 100px;
      width: auto;
      opacity: 0.45;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .accred-logos img:hover { opacity: 0.9; transform: scale(1.06); }

    .footer-bottom {
      background: #010f09;
      padding: 1.2rem 0;
      text-align: center;
      color: rgba(255,255,255,0.28);
      font-size: 0.78rem;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── DIVIDER ── */
    .section-divider {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin: 1.5rem 0;
    }

    .section-divider .line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(1,69,44,0.2), transparent);
    }

    .section-divider .dot {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
    }

    /* ── MOBILE ── */
    @media (max-width: 768px) {
      .hero-stats .d-flex { overflow-x: auto; }
      .hero-title { font-size: 1.9rem; }
      .programs-grid { grid-template-columns: 1fr; }
      .program-card { height: 380px; }
      .why-grid { grid-template-columns: 1fr; }
    }