    /* ===== GLOBAL COLORS===== */
    *{ margin: 0; 
      padding: 0; 
      box-sizing: border-box; 
    }

:root {
  --navy:       #8B0000;  
  --navy-light: #B11212;  
  --gold:       #D4AF37;   
  --gold-light: #F2C94C;   
  --cream:      #F5F5F5;  
  --white:      #FFFFFF;
  --gray:       #555555;   
  --gray-light: #E5E7EB;  
  --dark-text: #1a1a1a;
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', sans-serif;
  --shadow:     0 6px 20px rgba(13, 27, 76, 0.12);
  --radius:     10px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--navy);
      background: var(--cream);
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { 
      text-decoration: 
      none !important; 
      color: inherit; 
    }

    h1,
    h2,
    h3,
    h4{
      font-weight: 700;
    }
    /* ===== TOP BAR ===== */
    #top-bar {
      background: var(--navy);
      color: rgba(255,255,255,0.80);
      font-size: 0.80rem;
      padding: 8px 0;
      border-bottom: 2px solid var(--gold);
    }

    .top-bar-inner {
      max-width: 1280px; margin: 0 auto;
      padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px; flex-wrap: wrap;
    }

    .top-bar-left,
      .top-bar-right { 
      display: flex; 
      gap: 20px; 
      flex-wrap: wrap; 
    }

    .top-bar-left span { 
      display: flex; 
      align-items: 
      center; gap: 6px;
     }

    .top-bar-left i { 
      color: var(--gold);
     }
    .top-bar-right a {
      color: rgba(255,255,255,0.75);
      transition: color var(--transition);
      font-size: 0.95rem;
    }
    .top-bar-right
     a:hover { 
      color: var(--gold); 
    }

    #splash-screen {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--navy);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

#splash-screen img {
    width: 100px;
    height: 100px;
    border: none;
    object-fit: cover;
}
@media screen and (max-width: 780px) {
    #splash-screen img {
        width: 80px;
        height: 80px;
    }
    #splash-screen h3, #splash-screen h4 {
        font-size: 1.2rem;
    }
  
}

/* ============BUTTONS======= */
    .btn-admit-top {
      background: var(--gold);
      color: var(--navy) !important;
      font-weight: 600;
      font-size: 0.75rem !important;
      padding: 5px 14px;
      border-radius: 20px;
      letter-spacing: .04em;
      text-transform: uppercase;
      transition: background var(--transition);
    }
    .btn-admit-top:hover { background: var(--gold-light) !important; }

       .btn-enroll {
      background: var(--gold);
      color: var(--navy) !important;
      font-weight: 600 !important;
      padding: 10px 22px !important;
      border-radius: 30px !important;
      font-size: 0.85rem !important;
      letter-spacing: .03em;
      margin-left: 8px;
      transition: background var(--transition), transform var(--transition) !important;
    }
    .btn-enroll:hover { background: var(--gold-light) !important; transform: translateY(-1px) !important; }

    /* ===== MAIN HEADER / NAV ===== */
    #main-header {
      background: var(--white);
      box-shadow: 0 2px 16px rgba(11,31,58,0.08);
      position: sticky; top: 0; z-index: 1000;
    }
    .header-inner {
      max-width: 1280px; margin: 0 auto;
      padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between;
      height: 76px;
    }
    /* Logo */
    .logo-wrap { display: flex; align-items: center; gap: 12px; }
    .logo-icon {
      width: 52px; height: 52px;
      background: var(--navy);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .logo-icon i { color: var(--gold); font-size: 1.4rem; }
    .logo-text-wrap { line-height: 1.15; }
    .logo-name {
      font-family: var(--font-head);
      font-size: 1.25rem; font-weight: 700;
      color: var(--navy);
    }
    .logo-motto {
      display: block;
      margin-top: 2px;
      font-size: 0.68rem; color: var(--gold);
      text-transform: uppercase; letter-spacing: .08em; font-weight: 500;
    }

    /* Nav */
    nav { display: flex; align-items: center; gap: 4px; }
    nav a {
      font-size: 0.88rem; font-weight: 500;
      color: var(--navy);
      padding: 8px 14px;
      border-radius: var(--radius);
      transition: background var(--transition), color var(--transition);
      position: relative;
    }
    nav a::after {
      content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform var(--transition);
    }
    nav a:hover, nav a.active { color: var(--gold); }
    nav a:hover::after,  nav a.active::after  { transform: scaleX(1); }

    /* ===== HERO SLIDER ===== */
    #hero {
      position: relative;
      overflow: hidden;
      height: 620px;
    }
    .slides { display: flex; height: 100%; transition: transform 0.85s cubic-bezier(.77,0,.175,1); }
    .slide {
      min-width: 100%; height: 100%; position: relative;
      background-size: cover; background-position: center;
      display: flex; align-items: center;
      background-image: url('images/banner1.jpeg');
    }
    .slide-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(19, 54, 100, 0.82) 45%, rgba(16, 45, 82, 0.25) 100%);
    }
    .slide-content {
      position: relative; z-index: 2;
      max-width: 640px; margin-left: 8%;
      color: var(--white);
      animation: slideIn 0.9s ease forwards;
    }
    @keyframes slideIn {
      from { opacity: 0; transform: translateX(-40px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .slide-content h1 {
      font-family: var(--font-head);
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 900; line-height: 1.15;
      margin-bottom: 18px;
    }
    .slide-content h1 em { color: var(--gold-light); font-style: normal; }
    .slide-content p {
      font-size: 1.05rem; line-height: 1.7;
      color: rgba(255,255,255,0.85);
      margin-bottom: 28px; max-width: 480px;
    }
    .slide-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold); color: var(--navy);
      font-weight: 700; font-size: 0.9rem;
      padding: 14px 28px; border-radius: 40px;
      letter-spacing: .04em;
      transition: background var(--transition), transform var(--transition);
      box-shadow: 0 4px 18px rgba(201,150,44,0.38);
    }
    .slide-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
    .slide-cta-outline {
      display: inline-flex; align-items: center; gap: 8px;
      border: 2px solid rgba(255,255,255,0.6);
      color: var(--white); font-weight: 600;
      padding: 12px 26px; border-radius: 40px;
      margin-left: 12px;
      transition: border-color var(--transition), background var(--transition);
    }
    .slide-cta-outline:hover { border-color: var(--gold); background: rgba(201,150,44,0.15); }

    /* Slider controls */
    .slider-dots {
      position: absolute; bottom: 44px; left: 50%;
      transform: translateX(-50%);
      display: flex; gap: 8px; z-index: 10;
    }
    .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,0.4); cursor: pointer;
      transition: background var(--transition), transform var(--transition);
      border: none;
    }
    .dot.active { background: var(--gold); transform: scale(1.35); }

     .btn-navy {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--navy); color: var(--white);
      font-weight: 600; font-size: 0.9rem;
      padding: 13px 28px; border-radius: 30px;
      transition: background var(--transition);
    }
    .btn-navy:hover { background: var(--navy-light); color: var(--white) !important;}

 /* Solid download button */
  .btn-dl-solid,  .btn-dl-outline  {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    padding: 12px 28px;
    border-radius: 8px;
    transition: background var(--ease), transform var(--ease);
  }
  .btn-dl-solid:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-1px);
  }
 
  /* Outline download button */
  .btn-dl-outline {
    background: transparent;
    color: var(--navy);
    font-weight: 700;
    padding: 10px 26px;
    border-radius: 8px;
    border: 2px solid var(--navy);
    transition: background var(--ease), color var(--ease), border-color var(--ease);
  }
  .btn-dl-outline:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
  }

    /* ===== CTA FINAL ===== */
    #cta-final {
      background: var(--cream);
      padding: 90px 0;
    }
    .cta-box {
      background: var(--gold);
      border-radius: 20px;
      padding: 64px 48px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px; flex-wrap: wrap;
      position: relative; overflow: hidden;
    }
    .cta-box::before {
      content: '';
      position: absolute; right: 48px; top: 50%;
      transform: translateY(-50%);
      font-size: 12rem; color: rgba(11,31,58,.06);
      pointer-events: none;
    }
    .cta-text h2 {
      font-family: var(--font-head);
      font-size: clamp(1.5rem, 2.5vw, 2.2rem);
      font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 10px;
    }
    .cta-text p { font-size: 0.95rem; color: rgba(11,31,58,.70); }
    .cta-btns { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
    .btn-navy-solid {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--navy);
      color: var(--white);
      font-weight: 700;
      font-size: 0.9rem;
      padding: 14px 32px;
      border-radius: 30px;
      transition: all var(--transition);
      box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
      border: none;
      cursor: pointer;
    }
    .btn-navy-solid:hover {
      background: var(--gold);
      color: var(--navy);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    }
    .btn-outline-navy {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 2px solid var(--navy);
      color: var(--navy);
      background: transparent;
      font-weight: 700;
      font-size: 0.9rem;
      padding: 12px 28px;
      border-radius: 30px;
      transition: all var(--transition);
      cursor: pointer;
    }
    .btn-outline-navy:hover {
      background: var(--navy);
      color: var(--white);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(139, 0, 0, 0.2);
    }

 /* ===== PAGE HERO For every page ===== */
    #page-hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, rgba(201,150,44,.18) 100%);
      padding: 80px 0 70px; position: relative; overflow: hidden;
      background: url('images/banner2.jpeg'); background-size: cover; background-position: center;
      display: flex; align-items: center;
    }
    .page-hero-inner {
      max-width: 1280px; margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; text-align: center;
    }
    .page-hero-text { color: var(--white);}
    .page-hero-text h1 {
      font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900; line-height: 1.15; margin-bottom: 14px;
    }

    /* ===== SECTION BASE ===== */
    .section { padding: 90px 0; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
    .section-label {
      display: inline-block;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 10px;
    }
    .section-title {
      font-family: var(--font-head);
      font-size: clamp(1.75rem, 3vw, 2.6rem);
      font-weight: 800; color: var(--navy);
      line-height: 1.2; margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1rem; color: var(--gray);
      line-height: 1.7; max-width: 560px;
    }
    .divider {
      width: 52px; height: 4px;
      background: var(--gold); border-radius: 2px;
      margin: 16px 0 32px;
    }

    /*  ====HOME PAGE */

    /* ===== QUICK STATS ===== */
    #stats { background: var(--cream); padding: 70px 0; }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .stat-card {
      background: var(--white);
      border-radius: 12px;
      padding: 36px 24px;
      text-align: center;
      box-shadow: var(--shadow);
      border-top: 4px solid var(--gold);
      transition: transform var(--transition);
    }
    .stat-card:hover { transform: translateY(-6px); }
    .stat-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 14px; }
    .stat-num {
      font-family: var(--font-head);
      font-size: 2.8rem; font-weight: 900; color: var(--navy);
      line-height: 1;
    }
    .stat-label { font-size: 0.85rem; color: var(--gray); margin-top: 6px; font-weight: 500; }

    /* ===== WELCOME  STRIP ===== */
    #welcome { background: var(--white); }
    .welcome-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
      align-items: center;
    }
    .welcome-img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
    .welcome-img-placeholder {
      height: 480px;
      background-image: url('images/Proprietor.jpeg');
      background-size: cover; 
      border-radius: 16px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      color: var(--white); gap: 12px;
      border-top: 4px solid var(--navy);
    }
    .welcome-img-placeholder i { font-size: 4rem; color: var(--gold); opacity: .7; }
    .welcome-img-placeholder span { font-size: 0.85rem; opacity: .5; }
    .founder-badge {
      position: absolute; bottom: 24px; left: 24px;
      background: var(--white); border-radius: 12px;
      padding: 14px 18px;
      box-shadow: 0 8px 32px rgba(11,31,58,.15);
      display: flex; align-items: center; gap: 12px;
    }
    .founder-badge i { font-size: 2rem; color: var(--gold); }
    .founder-badge-text strong { font-size: 0.88rem; color: var(--navy); display: block; }
    .founder-badge-text span { font-size: 0.75rem; color: var(--gray); }
    .values-list { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
    .values-list li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 0.92rem; color: var(--gray);
    }
    .values-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
    .values-list li strong { color: var(--navy); }

    /* ===== PROGRAMS ===== */
    #programs { background: var(--gray-light); }
    .programs-header { text-align: center; margin-bottom: 50px; }
    .programs-header .section-sub { margin: 0 auto; }
    .programs-header .divider { margin: 16px auto 0; }
    .programs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
    .prog-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .prog-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(11,31,58,.14); }
    .prog-card-top {
      padding: 40px 28px 28px;
      text-align: center;
    }
    .prog-icon {
      width: 72px; height: 72px; border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px;
      font-size: 2rem; color: var(--gold);
    }
    .prog-card-top h3 {
      font-family: var(--font-head);
      font-size: 1.25rem; font-weight: 700; color: var(--navy);
      margin-bottom: 10px;
    }
    .prog-card-top p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
    .prog-card-bottom {
      background: var(--navy); padding: 16px 28px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .prog-card-bottom span { font-size: 0.78rem; color: rgba(255,255,255,.65); }
    .prog-card-bottom a {
      color: var(--gold); font-weight: 600; font-size: 0.82rem;
      display: flex; align-items: center; gap: 5px;
      transition: gap var(--transition);
    }
    .prog-card-bottom a:hover { gap: 10px; }
/* GALLERY */
    .gallery-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.03);
}


  /* Download Card */
  .download-card {
    background: #fff;
    border: 1.5px solid #e8eaf0;
    border-radius: 16px;
    padding: 36px 32px;
    height: 100%;
    transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  }
  .download-card:hover {
    box-shadow: 0 16px 48px rgba(11,31,58,.10);
    transform: translateY(-5px);
    border-color: var(--gold);
  }
 
  /* Icon box */
  .dl-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy), var(--navy-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--gold);
  }    

    /* ===== SCROLL TO TOP ===== */
    #scroll-top {
      position: fixed; bottom: 28px; right: 28px; z-index: 999;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--gold); border: none;
      color: var(--navy); font-size: 1rem;
      cursor: pointer; display: none; align-items: center; justify-content: center;
      box-shadow: 0 4px 18px rgba(201,150,44,.35);
      transition: background var(--transition), transform var(--transition);
    }
    #scroll-top.show { display: flex; }
    #scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }
    /* =============ABOUT PAGE ======= */
/* ===== IN-PAGE ANCHOR NAV ===== */
    #anchor-nav {
      background: var(--white); border-bottom: 2px solid #eee;
      position: sticky; top: 76px; z-index: 900;
    }
    .anchor-nav-inner {
      max-width: 1280px; margin: 0 auto; padding: 0 24px;
      display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
    }
    .anchor-nav-inner::-webkit-scrollbar { display: none; }
    .anchor-nav-inner a {
      font-size: .83rem; font-weight: 600; color: var(--gray);
      padding: 14px 22px; white-space: nowrap;
      border-bottom: 3px solid transparent; transition: color var(--transition), border-color var(--transition);
    }
    .anchor-nav-inner a:hover, .anchor-nav-inner a.an-active { color: var(--gold); border-bottom-color: var(--gold); }

    /* ===== MISSION & VISION ===== */
    #mission { background: var(--white); }
    .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 60px; }
    .mv-card {
      border-radius: 20px; padding: 44px 36px;
      position: relative; overflow: hidden;
    }
    .mv-card.mission { background: var(--navy); }
    .mv-card.vision { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); }
    .mv-card::before {
      content: ''; position: absolute; bottom: -30px; right: -30px;
      width: 150px; height: 150px; border-radius: 50%;
      background: rgba(255,255,255,.05);
    }
    .mv-card-icon { font-size: 2.5rem; margin-bottom: 18px; }
    .mv-card.mission .mv-card-icon { color: var(--gold); }
    .mv-card.vision .mv-card-icon { color: var(--navy); }
    .mv-card h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; margin-bottom: 14px; }
    .mv-card.mission h3 { color: var(--white); }
    .mv-card.vision h3 { color: var(--navy); }
    .mv-card p { font-size: .95rem; line-height: 1.80; }
    .mv-card.mission p { color: rgba(255,255,255,.78); }
    .mv-card.vision p { color: rgba(11,31,58,.80); }
 
    /* ===== CORE VALUES ===== */
    #values { background: var(--gray-light); }
    .values-header { text-align: center; margin-bottom: 50px; }
    .values-header .divider { margin: 16px auto; }
    .values-header .section-sub { margin: 0 auto; }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .val-card {
      background: var(--white); border-radius: 16px; padding: 36px 28px;
      box-shadow: var(--shadow); text-align: center;
      border-bottom: 4px solid transparent;
      transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }
    .val-card:hover { transform: translateY(-8px); border-bottom-color: var(--gold); box-shadow: 0 16px 40px rgba(11,31,58,.12); }
    .val-icon {
      width: 68px; height: 68px; border-radius: 50%;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 18px; font-size: 1.7rem; color: var(--gold);
    }
    .val-card h4 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .val-card p { font-size: .86rem; color: var(--gray); line-height: 1.65; }
 
    /* ===== FOUNDER'S MESSAGE ===== */
    #founder { background: var(--white); }
    .founder-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: center; }
    .founder-photo-wrap { text-align: center; }
    .founder-photo {
      background-image: url('images/logo.png'); background-size: cover; background-position: center ;
      width: 100%; max-width: 320px; aspect-ratio: 3/4;
      border-radius: 16px; margin: 0 auto;
       position: relative;
    }
    .founder-name-tag { background: var(--navy); border-radius: 12px; padding: 16px 20px; display: inline-block; }
    .founder-name-tag strong { display: block; font-family: var(--font-head); font-size: 1.05rem; color: var(--white); }
    .founder-name-tag span { font-size: .75rem; color: var(--gold-light); }
    .founder-message-wrap { position: relative; }
    .big-quote { font-family: Georgia, serif; font-size: 7rem; color: var(--gold); opacity: .12; position: absolute; top: -30px; left: -20px; line-height: 1; pointer-events: none; }
    .founder-message-wrap p { font-size: .97rem; color: var(--gray); line-height: 1.85; margin-bottom: 18px; }
    .founder-sig { margin-top: 28px; padding-top: 24px; border-top: 1px solid #eee; }
    .founder-sig strong { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); display: block; }
    .founder-sig span { font-size: .80rem; color: var(--gold); font-weight: 600; }
 
    /* ===== TEAM ===== */
    #team { background: var(--gray-light); }
    .team-header { text-align: center; margin-bottom: 50px; }
    .team-header .divider { margin: 16px auto; }
    .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

    /* Responsive: 2 columns on medium, 1 on small */
    @media (max-width: 992px) {
      .team-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 576px) {
      .team-grid { grid-template-columns: 1fr; }
    }
    .team-card {
      background: var(--white); border-radius: 16px; overflow: hidden;
      box-shadow: var(--shadow); text-align: center;
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .team-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(11,31,58,.13); }
    .team-image { width: 100%; height: 240px; object-fit: cover; display: block; }
    .team-body { padding: 24px 20px; }
    .team-body h4 { font-family: var(--font-head); font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .team-role { font-size: .78rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
    .team-body p { font-size: .84rem; color: var(--gray); line-height: 1.6; }

    /* ========ACADEMICS PAGE=========== */

/* ── Calendar wrapper ── */
.school-calendar-wrap {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  box-shadow: var(--shadow);
  padding: 28px;
}

/* ── Calendar carousel card ── */
.calendar-carousel { position: relative; }
.calendar-month-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-light);
}
.calendar-month-head {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 14px 20px;
}
.calendar-month-head h5 {
  font-size: 17px; font-weight: 700;
  color: var(--gold); margin: 0;
}
.calendar-month-head small { color: rgba(255,255,255,0.65); font-size: 12px; }

/* ── Calendar table ── */
.calendar-table {
  width: 100%; border-collapse: collapse;
  padding: 0 16px 16px;
  margin-top: 4px;
}
.calendar-table th {
  text-align: center; font-size: 11px;
  font-weight: 600; color: var(--gray);
  padding: 10px 4px 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.calendar-table td {
  text-align: center; font-size: 13px;
  padding: 9px 4px; border-radius: 8px;
  color: var(--dark-text); cursor: default;
  transition: background var(--transition);
}
.calendar-table td:hover { background: var(--cream); }
.calendar-table td.event-day {
  font-weight: 700; border-radius: 50%;
  width: 32px; height: 32px;
  position: relative;
}
.calendar-table td.event-day::after {
  content: '';
  position: absolute; bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  border-radius: 50%; background: var(--gold);
}
.calendar-table td.term-one   { background: rgba(192,57,43,0.14); color: #c0392b; }
.calendar-table td.term-two   { background: rgba(41,128,185,0.14); color: #2980b9; }
.calendar-table td.term-three { background: rgba(39,174,96,0.14);  color: #27ae60; }

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: 1;
  position: absolute;
}
.carousel-control-prev { left: -18px; }
.carousel-control-next { right: -18px; }
.carousel-control-prev:hover,
.carousel-control-next:hover { background: var(--navy-light); }
.carousel-control-prev-icon,
.carousel-control-next-icon { width: 16px; height: 16px; }

/* ── Sidebar info card ── */
.info-card {
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  padding: 24px;
}
.info-card h5, .info-card h6 {
  font-weight: 700; color: var(--navy);
}

/* ── Legend ── */
.calendar-legend { display: flex; flex-direction: column; gap: 10px; margin-bottom: 0; }
.calendar-legend li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--gray);
}
.legend-dot {
  width: 12px; height: 12px;
  border-radius: 50%; flex-shrink: 0;
}
.legend-dot.term-one   { background: #c0392b; }
.legend-dot.term-two   { background: #2980b9; }
.legend-dot.term-three { background: #27ae60; }

/* ── Key dates list in sidebar ── */
.calendar-events { display: flex; flex-direction: column; gap: 8px; }
.calendar-events li { font-size: 13px; color: var(--gray); }
.calendar-events li strong { color: var(--navy); display: block; }

 /* =======ACADEMICS PAGE */
 .info-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(11,31,58,.09);
    border-left: 4px solid var(--gold, #c9962c);
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .info-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(11,31,58,.13); }

  .admission-mini-card {
    text-align: center;
    border-left: none;
    border-top: 4px solid var(--gold, #c9962c);
  }
  .admission-mini-card i {
    font-size: 2.2rem;
    color: var(--gold, #c9962c);
    margin-bottom: 14px;
    display: block;
  }
  .admission-mini-card h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--navy, #0b1f3a);
    margin-bottom: 8px;
  }
  .admission-mini-card p { font-size: .88rem; color: #6b7280; }


  /* ── Admission Checklist ── */
  .admission-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: .92rem;
    color: #6b7280;
  }
  .admission-checklist li:last-child { border-bottom: none; }
  .admission-checklist li i { color: #22c55e; margin-top: 3px; flex-shrink: 0; }

  /* ── Admission Dates ── */
  .admission-dates li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: .90rem;
  }
  .admission-dates li:last-child { border-bottom: none; }
  .admission-dates li span  { color: #6b7280; }
  .admission-dates li strong { color: var(--navy, #0b1f3a); font-weight: 700; }

  /* ── Process Cards ── */
  .process-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 22px;
    box-shadow: 0 4px 24px rgba(11,31,58,.09);
    height: 100%;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .process-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(11,31,58,.13); }

  .admission-process-card .step {
    display: inline-block;
    background: rgba(201,150,44,.13);
    color: var(--gold, #c9962c);
    border: 1px solid rgba(201,150,44,.3);
    border-radius: 20px;
    font-size: .70rem;
    font-weight: 700;
    padding: 3px 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .admission-process-card h6 {
    font-weight: 700;
    color: var(--navy, #0b1f3a);
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .admission-process-card p { font-size: .86rem; color: #6b7280; }

  /* ── Help Sidebar Card ── */
  .admission-help-card { background: var(--navy, #0b1f3a) !important; }
  .admission-help-card h5 { color: #fff; font-family: var(--font-head) }
  .admission-help-card p  { color: rgba(255,255,255,.70); font-size: .88rem; }
  .admission-help-card .bi { color: var(--gold, #c9962c); }

  /* WhatsApp green button */
  .btn-wa-green {
    background: #25d366;
    color: #fff !important;
    border: none;
    border-radius:40px;
    font-weight: 700;
    padding: 12px;
    width: 100%;
    display: block;
    text-align: center;
    transition: background .3s ease;
  }
  .btn-wa-green:hover { background: #1ebe59; color: #fff !important; }

    /*  =====CONTACT PAGE =======  */

  .contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 4px 24px rgba(11,31,58,.09);
  }
  .contact-card .form-control,
  .contact-card .form-select {
    border: 1.5px solid #e2e5ea;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: .92rem;
    transition: border-color .3s ease, box-shadow .3s ease;
  }
  .contact-card .form-control:focus,
  .contact-card .form-select:focus {
    border-color: var(--gold, #c9962c);
    box-shadow: 0 0 0 3px rgba(201,150,44,.12);
    outline: none;
  }
  .contact-card .form-control::placeholder { color: #adb5bd; font-size: .88rem; }
  .contact-card textarea.form-control { resize: vertical; min-height: 120px; }
  .contact-card .btn-school.btn-lg { padding: 14px 40px; font-size: 1rem; }

  /* ===== DONATION PAGE ===== */
  .donation-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(11,31,58,.09);
    height: 100%;
  }
  .donation-form .section-sub { max-width: 100%; }
  .donation-form .form-control,
  .donation-form .form-select {
    border: 1.5px solid #e2e5ea;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: .95rem;
    transition: border-color .3s ease, box-shadow .3s ease;
  }
  .donation-form .form-control:focus,
  .donation-form .form-select:focus {
    border-color: var(--gold, #c9962c);
    box-shadow: 0 0 0 3px rgba(201,150,44,.12);
    outline: none;
  }
  .donation-form .form-control::placeholder { color: #adb5bd; font-size: .9rem; }
  .donation-summary {
    background: linear-gradient(145deg, var(--navy) 0%, #123058 100%);
    color: #fff;
    border: none;
  }
  .donation-summary .section-label,
  .donation-summary .section-title,
  .donation-summary p,
  .donation-summary li,
  .donation-summary h4,
  .donation-summary h5 {
    color: #fff;
  }
  .donation-summary .section-label { color: var(--gold-light); }
  .donation-summary .section-sub { color: rgba(255,255,255,.76); }
  .donation-highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
  }
  .donation-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .92rem;
    color: rgba(255,255,255,.82);
    line-height: 1.6;
  }
  .donation-highlight-list i {
    color: var(--gold-light);
    margin-top: 3px;
    flex-shrink: 0;
  }
  .donation-impact {
    display: grid;
    gap: 14px;
  }
  .donation-impact-item {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 18px 18px 18px 16px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .donation-impact-item i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(212,175,55,.14);
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .donation-impact-item h5 {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  .donation-impact-item p {
    font-size: .88rem;
    margin: 0;
    color: rgba(255,255,255,.76);
  }
  .donation-cta-panel {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 14px 36px rgba(11,31,58,.16);
  }
  .donation-cta-panel p,
  .donation-cta-panel li,
  .donation-cta-panel h3,
  .donation-cta-panel h4 {
    color: #fff;
  }
  .donation-cta-panel .btn-wa-green {
    margin-top: 18px;
  }
  .donation-meta {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }
  .donation-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .9rem;
    color: rgba(255,255,255,.8);
    line-height: 1.6;
  }
  .donation-meta-item i {
    color: var(--gold-light);
    margin-top: 4px;
  }

  @media (max-width: 768px) {
    .donation-card,
    .donation-cta-panel { padding: 24px; }
    .donation-impact-item { padding: 16px; }
  }

  @media (max-width: 480px) {
    .donation-card,
    .donation-cta-panel { padding: 20px; }
    .donation-impact-item {
      flex-direction: column;
      gap: 10px;
    }
  }

  /* ================= TESTIMONIALS ================= */
.testimonial-section {
    background: linear-gradient(160deg, #f4f0fb 0%, #fff 100%);
}

.testimonial-card {
    background: var(--white);
    border-radius: 40px;
    box-shadow: var(--shadow);
    padding: 28px 24px 22px;
    height: 100%;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-top: 4px solid var(--navy-light);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.testimonial-quote {
    font-size: 2.4rem;
    line-height: 1;
    color: var(--navy-light);
    opacity: 0.25;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 0.93rem;
    color: #444;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

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


