/* ═══════════════════════════════════════════════════════
   KOTTAKKAL FAROOK — COMPLETE REDESIGN
   Theme: Deep Maroon #6B1A2A · Gold #C9913A · Cream #F9F4EC
   Fonts: Playfair Display + DM Sans
═══════════════════════════════════════════════════════ */

:root {
  --maroon:      #6B1A2A;
  --maroon-dark: #1d2e48;
  --maroon-deep: rgba(13,27,42,0.98);
  --gold:        #C9913A;
  --gold-light:  #E8B86D;
  --cream:       #F9F4EC;
  --cream-dark:  #EDE5D6;
  --off-white:   #FAF8F5;
  --text-dark:   #1A0A0E;
  --text-mid:    #5A3040;
  --text-muted:  #9A7080;
  --white:       #FFFFFF;
  --text-light:  rgba(255,255,255,0.78);
  --text-faint:  rgba(255,255,255,0.38);
  --border:      rgba(255,255,255,0.1);
  --tb-h:        44px;
  --shadow-maroon: 0 8px 40px rgba(107,26,42,0.18);
  --shadow-gold:   0 4px 20px rgba(201,145,58,0.25);
  --maroon-light: #9a7b3b;
  --gold-pale:    #f5e6c8;
  --text:         #2a2a2a;

   --bg:       #1e0610;
  --bg2:      #2d0c18;
  
  --gold-l:   #e8c96a;
  --gold-d:   #9a7a32;
  
  --maroon-l: #8b2035;
  
  --muted:    rgba(255,255,255,0.5);
  --muted2:   rgba(255,255,255,0.72);
  
 
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; overflow-x: hidden !important;}

body {
  font-family: 'Albert Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  /* overflow-x: hidden; */
}
h1,h2{
  font-family: 'Frank Ruhl Libre', serif;
}
/* ═══ TYPOGRAPHY ═══ */
.display-font { font-family: 'Frank Ruhl Libre', serif }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
}
.section-label::before, .section-label::after {
  content: ''; width: 32px; height: 1px; background: var(--gold); opacity: 0.6;
}
.section-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(32px, 5vw, 38px);
  font-weight: 700; color: var(--maroon-dark);
  line-height: 1.1; letter-spacing: -0.5px;
}
.section-title span { color: var(--gold); }

/* ═══ SCROLLBAR ═══ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--maroon); border-radius: 3px; }



/* popup */
 /* ── Backdrop ── */
    #popupBackdrop {
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: rgb(24 36 54 / 68%);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.7s ease;
    }
    #popupBackdrop.show  { opacity: 1; pointer-events: all; }
    #popupBackdrop.hide  { opacity: 0; pointer-events: none; }

    /* ── Card ── */
    .popup-card {
      position: relative;
      width: min(420px, 88vw);
      aspect-ratio: 3/4;
      border-radius: 22px;
      overflow: hidden;
      box-shadow:
        0 0 0 1.5px rgba(201,168,76,0.45),
        0 0 50px rgba(201,168,76,0.12),
        0 50px 120px rgba(0,0,0,0.75);
      transform: scale(0.7) translateY(80px);
      opacity: 0;
      transition:
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        opacity   0.9s ease;
      cursor: pointer;
    }
    .popup-card.enter {
      transform: scale(1) translateY(0);
      opacity: 1;
      animation: glowPulse 3s ease 1.4s infinite;
    }
    .popup-card.exit {
      transform: scale(0.78) translateY(100px) rotate(-2deg);
      opacity: 0;
      transition: transform 0.45s ease-in, opacity 0.45s ease-in;
      animation: none;
    }

    /* Glow pulse */
    @keyframes glowPulse {
      0%,100% { box-shadow: 0 0 0 1.5px rgba(201,168,76,0.45), 0 0 40px rgba(201,168,76,0.10), 0 50px 120px rgba(0,0,0,0.75); }
      50%      { box-shadow: 0 0 0 2.5px rgba(201,168,76,0.85), 0 0 80px rgba(201,168,76,0.35), 0 50px 120px rgba(0,0,0,0.75); }
    }

    /* ── Full cover image ── */
    .popup-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.2);
      transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
      will-change: transform;
    }
    .popup-card.enter .popup-img {
      transform: scale(1);
    }
    /* Hover zoom-in */
    .popup-card:hover .popup-img {
      transform: scale(1.09) !important;
      transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }
    /* Hover card lift */
    .popup-card.enter:hover {
      animation: none;
      transform: scale(1.035) translateY(-8px) !important;
      box-shadow:
        0 0 0 2.5px rgba(201,168,76,0.9),
        0 0 90px rgba(201,168,76,0.45),
        0 60px 130px rgba(0,0,0,0.85);
      transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease !important;
    }

    /* ── Gradient overlay ── */
    .popup-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        170deg,
        rgba(74,16,32,0.08) 0%,
        transparent 38%,
        transparent 52%,
        rgba(20,5,10,0.88) 100%
      );
      transition: background 0.55s ease;
    }
    .popup-card:hover .popup-overlay {
      background: linear-gradient(
        170deg,
        rgba(74,16,32,0.18) 0%,
        transparent 32%,
        transparent 48%,
        rgba(20,5,10,0.94) 100%
      );
    }

    /* ── Gold shimmer sweep ── */
    @keyframes shimmerSweep {
      0%   { left: -60%; opacity: 0.8; }
      100% { left: 160%; opacity: 0;   }
    }
    .popup-shimmer {
      position: absolute;
      top: 0; bottom: 0;
      left: -60%;
      width: 40%;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.22), transparent);
      z-index: 2;
      transform: skewX(-18deg);
      animation: shimmerSweep 1.3s ease 1.0s 1 forwards;
      pointer-events: none;
    }

    /* ── Badge ── */
    .popup-badge {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 4;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--maroon-dark);
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.66rem;
      font-weight: 800;
      letter-spacing: .15em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 50px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.4);
      opacity: 0;
      transform: translateX(-24px);
      transition: opacity 0.55s ease 1.05s, transform 0.55s cubic-bezier(0.16,1,0.3,1) 1.05s;
    }
    .popup-card.enter .popup-badge { opacity: 1; transform: translateX(0); }

    /* ── Close ── */
    .popup-close {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 10;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.25);
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(8px);
      color: #fff;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      transform: rotate(-90deg) scale(0.5);
      transition:
        opacity   0.45s ease 1.2s,
        transform 0.55s cubic-bezier(0.16,1,0.3,1) 1.2s,
        background 0.2s,
        border-color 0.2s;
    }
    .popup-card.enter .popup-close { opacity:1; transform: rotate(0deg) scale(1); }
    .popup-close:hover {
      background: rgba(201,168,76,0.3);
      border-color: var(--gold);
      transform: rotate(90deg) scale(1.12) !important;
      transition: transform 0.3s ease, background 0.2s, border-color 0.2s !important;
    }

    /* ── Corner ornaments ── */
    .corner {
      position: absolute;
      z-index: 3;
      width: 22px; height: 22px;
      opacity: 0;
      transition: opacity 0.6s ease 1.35s;
      pointer-events: none;
    }
    .popup-card.enter .corner { opacity: 1; }
    .corner-tl { top:10px;    left:10px;    border-top:   2px solid rgba(201,168,76,0.55); border-left:  2px solid rgba(201,168,76,0.55); border-radius:6px 0 0 0; }
    .corner-tr { top:10px;    right:10px;   border-top:   2px solid rgba(201,168,76,0.55); border-right: 2px solid rgba(201,168,76,0.55); border-radius:0 6px 0 0; }
    .corner-bl { bottom:10px; left:10px;    border-bottom:2px solid rgba(201,168,76,0.55); border-left:  2px solid rgba(201,168,76,0.55); border-radius:0 0 0 6px; }
    .corner-br { bottom:10px; right:10px;   border-bottom:2px solid rgba(201,168,76,0.55); border-right: 2px solid rgba(201,168,76,0.55); border-radius:0 0 6px 0; }

    /* ── Bottom strip ── */
    .popup-strip {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 4;
      padding: 24px 22px 20px;
      background: linear-gradient(to top, #04091eed 55%, transparent);
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 0.6s ease 0.9s, transform 0.6s cubic-bezier(0.16,1,0.3,1) 0.9s;
    }
    .popup-card.enter .popup-strip { opacity:1; transform:translateY(0); }

    .strip-line {
      height: 2px;
      width: 0;
      background: linear-gradient(90deg, var(--gold), transparent);
      border-radius: 2px;
      margin-bottom: 9px;
      transition: width 0.8s cubic-bezier(0.16,1,0.3,1) 1.15s;
    }
    .popup-card.enter .strip-line { width: 55px; }

    .strip-text {
      font-family: 'Segoe UI', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.85);
    }

    /* ── Floating gold particles ── */
    @keyframes floatUp {
      0%   { transform: translateY(0)    scale(1);   opacity: 0.7; }
      60%  { transform: translateY(-80px) scale(1.4); opacity: 0.5; }
      100% { transform: translateY(-160px) scale(0.6); opacity: 0; }
    }
    .particle {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 8999;
    }
/* popup */





/* ══════════════════════════════════════════════════
   TOP BAR SHELL
══════════════════════════════════════════════════ */
.top-bar {
  background: rgb(13 27 42 / 50%);
  height: var(--tb-h);
  border-bottom: 1px solid rgba(201,145,58,0.22);
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1200;
  overflow: visible;
}

.tb-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--tb-h);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   LEFT — Contact
━━━━━━━━━━━━━━━━━━━━━━━ */
.tb-left {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border);
  padding-right: 16px;
  flex-shrink: 0;
}

.tb-contact {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  height: var(--tb-h);
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  transition: color 0.22s;
}
.tb-contact:first-child { padding-left: 0; }
.tb-contact:last-child  { border-right: none; }
.tb-contact:hover       { color: var(--gold-light); }
.tb-contact i           { font-size: 10.5px; color: var(--gold); flex-shrink: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━
   CENTER — Marquee
━━━━━━━━━━━━━━━━━━━━━━━ */
.tb-center {
  overflow: hidden;
  position: relative;
  height: var(--tb-h);
  display: flex;
  align-items: center;
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.tb-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

.tb-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  height: var(--tb-h);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.25px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.tb-link i { font-size: 7px; color: var(--gold); opacity: 0.65; }
.tb-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.tb-link:hover::after { transform: scaleX(1); }

.tb-badge {
  font-size: 7.5px; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 1px 5px;
  background: var(--gold);
  color: var(--maroon-deep);
  border-radius: 2px;
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   RIGHT — Socials + NAAC + Search + Burger
━━━━━━━━━━━━━━━━━━━━━━━ */
.tb-right {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--border);
  padding-left: 0;
  flex-shrink: 0;
}

.tb-social {
  width: 40px;
  height: var(--tb-h);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  text-decoration: none;
  font-size: 13px;
  border-right: 1px solid var(--border);
  transition: color 0.22s, background 0.22s;
}
.tb-social:first-child { border-left: 1px solid var(--border); }
.tb-social:hover { color: var(--gold-light); background: rgba(201,145,58,0.07); }

.tb-accred {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 11px;
  margin: 0 10px;
  background: rgba(201,145,58,0.11);
  border: 1px solid rgba(201,145,58,0.28);
  border-radius: 2px;
}
.tb-accred i    { font-size: 8px; color: var(--gold); }
.tb-accred span {
  font-size: 9.5px; font-weight: 800;
  letter-spacing: 1.8px; color: var(--gold-light);
  text-transform: uppercase;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   SEARCH BUTTON (top bar)
━━━━━━━━━━━━━━━━━━━━━━━ */
.tb-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: var(--tb-h);
  background: none;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.22s, background 0.22s;
  flex-shrink: 0;
  position: relative;
}
.tb-search-btn::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.tb-search-btn:hover {
  color: var(--gold-light);
  background: rgba(201,145,58,0.08);
}
.tb-search-btn:hover::before { transform: scaleX(1); }
.tb-search-btn.active {
  color: var(--gold);
  background: rgba(201,145,58,0.1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━
   HAMBURGER
━━━━━━━━━━━━━━━━━━━━━━━ */
.tb-burger {
  display: none;
  width: 44px;
  height: var(--tb-h);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  border-left: 1px solid var(--border);
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1300;
}
.burger-line {
  display: block;
  height: 1.8px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.32s cubic-bezier(0.34,1.56,0.64,1);
  transform-origin: center;
}
.burger-line:nth-child(1) { width: 22px; }
.burger-line:nth-child(2) { width: 15px; margin-left: auto; }
.burger-line:nth-child(3) { width: 22px; }

.tb-burger.open .burger-line:nth-child(1) { transform: translateY(6.8px) rotate(45deg); width: 22px; background: var(--gold-light); }
.tb-burger.open .burger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.tb-burger.open .burger-line:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); width: 22px; background: var(--gold-light); }

/* ══════════════════════════════════════════════════
   SEARCH OVERLAY — fullscreen
══════════════════════════════════════════════════ */
.search-overlay {
  position: fixed;
  inset: 0;
  /* z-index: 1400; */
  pointer-events: none;
  overflow: hidden;
}

/* Backdrop */
.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 5, 8, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Inner box */
.search-box {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 0 32px;
  transform: translateY(-100%);
  background: var(--maroon-deep);
  border-bottom: 2px solid rgba(201,145,58,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Input row */
.search-input-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.search-icon-wrap {
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.search-icon-wrap i { font-size: 18px; color: var(--gold); }

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  color: white;
  padding: 22px 0;
  letter-spacing: -0.5px;
}
.search-input::placeholder { color: rgba(255,255,255,0.2); }

.search-close-btn {
  width: 52px; height: 52px;
  margin-left: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.22s;
  flex-shrink: 0;
}
.search-close-btn:hover { background: var(--gold); color: var(--maroon-deep); border-color: var(--gold); transform: rotate(90deg); }

/* Hint row */
.search-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.search-hint kbd {
  padding: 2px 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  font-size: 10px;
  font-family: monospace;
  color: rgba(255,255,255,0.4);
}

/* Results area */
.search-results {
  padding: 12px 0 24px;
  overflow-y: auto;
  flex: 1;
  -ms-overflow-style: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,145,58,0.3) transparent;
}
.search-results::-webkit-scrollbar { width: 4px; }
.search-results::-webkit-scrollbar-thumb { background: rgba(201,145,58,0.3); border-radius: 2px; }

/* Results label */
.results-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 12px;
  padding: 0 4px;
}

/* Results grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 6px;
}

/* Single result card */
.result-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,145,58,0.06);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.result-card:hover, .result-card.focused {
  border-left-color: var(--gold);
  background: rgba(201,145,58,0.06);
}
.result-card:hover::before, .result-card.focused::before { transform: scaleX(1); }

.result-icon {
  width: 32px; height: 32px;
  background: rgba(201,145,58,0.12);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: background 0.2s;
  position: relative; z-index: 1;
}
.result-card:hover .result-icon,
.result-card.focused .result-icon {
  background: var(--gold);
  color: var(--maroon-deep);
}

.result-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative; z-index: 1;
  min-width: 0;
}
.result-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}
.result-card:hover .result-name,
.result-card.focused .result-name { color: var(--gold-light); }

.result-name mark {
  background: transparent;
  color: var(--gold);
  font-weight: 800;
}

.result-sub {
  font-size: 10.5px;
  color: rgba(255,255,255,0.3);
}

.result-badge {
  margin-left: auto;
  font-size: 7.5px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 1px 6px;
  background: rgba(201,145,58,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,145,58,0.25);
  border-radius: 2px;
  position: relative; z-index: 1;
  flex-shrink: 0;
}

/* No results */
.no-results {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.no-results i { font-size: 36px; color: rgba(255,255,255,0.1); margin-bottom: 16px; display: block; }
.no-results p { color: rgba(255,255,255,0.3); font-size: 15px; }
.no-results span { color: var(--gold-light); }

/* Popular / all-items state label */
.search-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin: 0 0 10px 4px;
}

/* State when overlay is open */
.search-overlay.open { pointer-events: all; z-index: 1400; }
.search-overlay.open .search-backdrop { opacity: 1; }

/* ══════════════════════════════════════════════════
   DRAWER OVERLAY
══════════════════════════════════════════════════ */
.tb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1220;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: opacity 0.3s ease;
}
.tb-overlay.show { opacity: 1; pointer-events: all; }

/* ══════════════════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════════════════ */
.tb-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(300px, 100vw);
  height: 100vh;
  background: var(--maroon-deep);
  z-index: 1250;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(201,145,58,0.15);
  box-shadow: -12px 0 50px rgba(0,0,0,0.5);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  height: 52px;
  border-bottom: 1px solid rgba(201,145,58,0.15);
  flex-shrink: 0;
}
.drawer-title {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--gold-light); letter-spacing: 2.5px; text-transform: uppercase;
}
.drawer-close {
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; border-radius: 50%;
  transition: all 0.22s;
}
.drawer-close:hover { background: var(--gold); color: var(--maroon-deep); border-color: var(--gold); transform: rotate(90deg); }

/* Drawer search bar */
.drawer-search-wrap {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.drawer-search-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0 12px;
  height: 38px;
  transition: border-color 0.22s;
}
.drawer-search-inner:focus-within { border-color: rgba(201,145,58,0.5); }
.drawer-search-inner i { font-size: 12px; color: var(--gold); flex-shrink: 0; }
.drawer-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: white;
}
.drawer-search-input::placeholder { color: rgba(255,255,255,0.3); }
.drawer-search-clear {
  background: none; border: none;
  color: rgba(255,255,255,0.3);
  cursor: pointer; font-size: 11px;
  transition: color 0.2s;
  display: none;
}
.drawer-search-clear.show { display: block; }
.drawer-search-clear:hover { color: var(--gold-light); }

.drawer-contact {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 9px;
  flex-shrink: 0;
}
.drawer-contact a {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color 0.2s;
}
.drawer-contact a:hover { color: var(--gold-light); }
.drawer-contact a i { font-size: 11px; color: var(--gold); width: 14px; text-align: center; flex-shrink: 0; }

.drawer-menu {
  flex: 1; overflow-y: auto;
  padding: 8px 0;
  -ms-overflow-style: none; scrollbar-width: none;
}
.drawer-menu::-webkit-scrollbar { display: none; }

.drawer-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: background 0.2s, color 0.2s, padding-left 0.22s;
}
.drawer-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); transform: scaleY(0);
  transition: transform 0.22s ease;
}
.drawer-item:hover { background: rgba(201,145,58,0.07); color: var(--gold-light); padding-left: 24px; }
.drawer-item:hover::before { transform: scaleY(1); }
.drawer-item i { font-size: 7px; color: var(--gold); opacity: 0.55; flex-shrink: 0; }
.drawer-item .tb-badge { margin-left: auto; }
.drawer-item.hidden { display: none; }

/* No results in drawer */
.drawer-no-results {
  padding: 24px 18px;
  text-align: center;
  display: none;
}
.drawer-no-results p { font-size: 13px; color: rgba(255,255,255,0.3); }
.drawer-no-results span { color: var(--gold-light); }

.drawer-socials {
  padding: 12px 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; gap: 8px; justify-content: center;
  flex-shrink: 0;
}
.drawer-social {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.13);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.48); text-decoration: none;
  font-size: 13px; border-radius: 50%;
  transition: all 0.22s;
}
.drawer-social:hover { background: var(--gold); border-color: var(--gold); color: var(--maroon-deep); transform: scale(1.12); }

.drawer-foot {
  padding: 12px 18px;
  border-top: 1px solid rgba(201,145,58,0.12);
  text-align: center; flex-shrink: 0;
}
.drawer-naac {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,145,58,0.1); border: 1px solid rgba(201,145,58,0.25);
  border-radius: 3px; padding: 5px 14px;
}
.drawer-naac i { font-size: 9px; color: var(--gold); }
.drawer-naac span { font-size: 10px; font-weight: 800; letter-spacing: 2px; color: var(--gold-light); text-transform: uppercase; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .tb-contact.loc { display: none; }
  .tb-accred      { display: none; }
}
@media (max-width: 900px) {
  /* .tb-social.hide-sm { display: none; } */
}
@media (max-width: 768px) {
  .tb-center { display: none; }
  .tb-burger { display: flex; }
  /* .tb-social.hide-mob { display: none; } */
  .tb-left { border-right: none; padding-right: 0; }
  .tb-contact span { display: none; }
  .tb-contact { padding: 0 9px; height: var(--tb-h); }
  .tb-contact:first-child { padding-left: 0; }
  .tb-right { padding-left: 0; }
  .tb-grid { padding: 0 14px; }

  /* Smaller search box on mobile */
  .search-input { font-size: 20px; padding: 16px 0; }
  .search-input-row { gap: 0; }
  .search-box { padding: 0 16px; }
  .results-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .tb-contact.email-link { display: none; }
  .results-grid { grid-template-columns: 1fr; }
}

/* Main Header */
:root {
  --green:      #1a4d2e;
  --green-mid:  #2e7d4f;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --cream:      #f8f4ec;
  --white:      #ffffff;
  --text:       #222;
  --shadow:     0 12px 48px rgba(0,0,0,0.2);
  --col-w:      185px;   /* width of one column in a flyout */
}


/* ── HEADER ─────────────────────────── */
header { position: sticky; width: 100%; top: 44px; z-index: 1000; background:#02020294; box-shadow: var(--shadow); }

.header-main { display: flex; align-items: center; justify-content: space-between; padding: 0 32px; height: 72px; }

/* ── LOGOS ──────────────────────────── */
.logos { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.logo-divider { width: 1px; height: 42px; background: rgba(201,168,76,.4); }
.logo-item { display: flex; align-items: center; gap: 9px; text-decoration: none; color: #fff; transition: opacity .2s; }
.logo-item:hover { opacity: .85; }
.logo-icon { width: 42px; height: 42px; border-radius: 7px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Frank Ruhl Libre', serif; font-size: 16px; font-weight: 700; color: var(--green); flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: 'Frank Ruhl Libre', serif; font-size: 13px; font-weight: 700; color: #fff; }
.logo-sub  { font-size: 9px; color: var(--gold-light); letter-spacing: 1.2px; text-transform: uppercase; }

a.logo-item img {
    max-height: 110px;
}
a.logo-item.max-62 img  {
    max-height: 62px;
}

/* ── NAV ────────────────────────────── */
nav { display: flex; align-items: center; }
.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    height: 72px;
    padding: 0px;
    margin: 0px;
}
.nav-item  { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 11px;
    height: 100%;
    color: rgb(225 225 225);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    transition: color .2s, background .2s;
    position: relative;
}
.nav-link::after { content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%); width:0; height:3px; background:var(--gold); transition:width .25s; }
.nav-item:hover > .nav-link { color: var(--gold-light); background: rgba(255,255,255,.06); }
.nav-item:hover > .nav-link::after { width: 70%; }
.arr { font-size: 15px; opacity: .65; transition: transform .25s; }
.nav-item:hover > .nav-link .arr { transform: rotate(180deg); opacity: 1; }

/* ══════════════════════════════════════
   L1 DROPDOWN — simple list below nav
══════════════════════════════════════ */
.l1-drop {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 8px 8px;
  z-index: 700;
  min-width: 210px;
  padding: 5px 0;
  list-style: none;
}
.l1-drop.open { display: block; animation: pop .17s ease; }
/* flip up */
.l1-drop.fu { top:auto; bottom:100%; border-top:none; border-bottom:3px solid var(--gold); border-radius:8px 8px 0 0; }

/* ── L1 row items ── */
.l1-item { position: relative; }
.l1-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 16px; color: var(--text); text-decoration: none;
  font-size: 13px; white-space: nowrap;
  transition: background .1s, color .1s, padding-left .1s;
}
.l1-link:hover,
.l1-item.has-sub:hover > .l1-link { background: var(--cream); color: #2e0810; padding-left: 22px; }
.sub-arr { font-size: 10px; color: var(--gold); margin-left: 10px; }

.l1-div { height: 1px; background: #eee; margin: 4px 12px; }
.l1-lbl { padding: 7px 16px 2px; font-size: 10px; font-weight: 600; letter-spacing: 1.3px; text-transform: uppercase; color: var(--green-mid); }

/* ══════════════════════════════════════
   L2 FLYOUT PANEL
   — flies right from .l1-item.has-sub
   — JS auto-sets column count based on
     number of link items inside:
       ≤ 7  → 1 col  (min-width: 1×185px)
       8–14 → 2 cols (min-width: 2×185px)
       ≥ 15 → 3 cols (min-width: 3×185px)
   — JS also flips left/up if needed
══════════════════════════════════════ */
.l2-drop {
  display: none;
  position: absolute;
  top: -8px; left: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold-light);
  border-radius: 0 8px 8px 8px;
  z-index: 800;
  padding: 6px 0;
  list-style: none;
  /* width set dynamically by JS via --cols */
  width: calc(var(--cols, 1) * var(--col-w));
}
.l2-drop.open { display: block; animation: pop .15s ease; }

/* flip helpers */
.l2-drop.fu { top:auto; bottom:-8px; border-radius: 8px 8px 8px 0; }
.l2-drop.fl { left:auto; right:100%; border-radius: 8px 0 8px 8px; }
.l2-drop.fu.fl { border-radius: 8px 8px 0 8px; }

/* CSS Grid columns, column count driven by --cols var */
.l2-drop.multi {
  display: none;
  grid-template-columns: repeat(var(--cols, 1), var(--col-w));
}
.l2-drop.multi.open { display: grid; }

/* section labels span all columns */
.l2-lbl {
  grid-column: 1 / -1;
  padding: 8px 14px 2px;
  font-size: 10px; font-weight: 600; letter-spacing: 1.3px; text-transform: uppercase;
  color: var(--maroon);
  border-top: 1px solid #eee; margin-top: 2px;
}
.l2-lbl:first-child { border-top: none; margin-top: 0; }
.l2-div { grid-column: 1/-1; height: 1px; background: #eee; margin: 3px 10px; }

/* L2 link */
.l2-link {
  display: block; padding: 9px 14px;
  color: var(--text); text-decoration: none;
  font-size: 12.5px; white-space: nowrap;
  break-inside: avoid;
  transition: background .1s, color .1s, padding-left .1s;
  white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.l2-link:hover { background: var(--cream); color: #2e0810; padding-left: 20px; }

@keyframes pop { from { opacity:0; transform:translateY(-5px); } to { opacity:1; transform:translateY(0); } }

/* ── HAMBURGER ──────────────────────── */
.hamburger { display:none; flex-direction:column; justify-content:space-between; width:24px; height:17px; cursor:pointer; background:none; border:none; padding:0; }
.hamburger span { display:block; height:2px; background:var(--gold-light); border-radius:2px; transition:transform .3s, opacity .3s; }
.hamburger.active span:nth-child(1) { transform:translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE NAV ─────────────────────── */
.mob-nav { display:none; position:fixed; top:115px; left:0; right:0; bottom:0; background:#0d172a; overflow-y:auto; z-index:999; padding:6px 0 40px; border-top:1px solid rgba(201,168,76,.3); }
.mob-nav.open { display:block; }
.mob-ul { list-style:none; }
.mb { display:flex; align-items:center; justify-content:space-between; padding:12px 24px; color:rgba(255,255,255,.9); text-decoration:none; font-family:'Source Sans 3',sans-serif; font-size:14px; font-weight:500; border-bottom:1px solid rgba(255,255,255,.06); cursor:pointer; background:none; border-left:none; border-right:none; border-top:none; width:100%; text-align:left; transition:background .15s, color .15s; }
.mb:hover { color:var(--gold-light); background:rgba(255,255,255,.05); }
.mb .ma { font-size:11px; color:var(--gold); transition:transform .25s; }
.mb.open .ma { transform:rotate(90deg); }
.mob-sub { display:none; list-style:none; background:rgba(0,0,0,.18); }
.mob-sub.open { display:block; }
.mob-sub .mb { padding-left:40px; font-size:13.5px; font-weight:400; color:rgba(255,255,255,.75); }
.mob-sub .mob-sub { background:rgba(0,0,0,.14); }
.mob-sub .mob-sub .mb { padding-left:56px; font-size:13px; }
.mob-sub .mob-sub .mob-sub { background:rgba(0,0,0,.11); }
.mob-sub .mob-sub .mob-sub .mb { padding-left:72px; font-size:12.5px; color:var(--gold-light); }

/* ── RESPONSIVE ─────────────────────── */
@media (max-width:1080px) { .nav-link { padding:0 8px; font-size:12px; } }
@media (max-width:900px)  { nav{display:none;} .hamburger{display:flex;} .header-main{padding:0 16px;} .logos{gap:10px;} .logo-icon{width:38px;height:38px;font-size:14px;} .logo-name{font-size:12px;} }
@media (max-width:480px)  { .logo-text{display:none;} .logo-divider{height:32px;} }
/* Main Header */




.marquee-inner {
  display: inline-block;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-inner span {
  padding: 0 40px; color: var(--gold-light);
  font-size: 11.5px; letter-spacing: 0.5px;
}
.marquee-inner span::before { content: '◆ '; color: var(--gold); font-size: 8px; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }


/* ══════════════════════════════════════════════════════
   TICKER / NOTICE BAR
══════════════════════════════════════════════════════ */
.notice-bar {
  background: var(--maroon);
  padding: 10px 0; overflow: hidden;
  border-top: 3px solid var(--gold);
}
.notice-bar-label {
  background: var(--gold); color: var(--maroon-deep);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  padding: 4px 16px; white-space: nowrap; flex-shrink: 0;
}
.notice-ticker {
  overflow: hidden; white-space: nowrap; flex: 1;
}
.notice-ticker-inner {
  display: inline-block;
  animation: marqueeScroll 30s linear infinite;
}
.notice-ticker-inner a {
  padding: 0 50px; color: rgba(255,255,255,0.9);
  text-decoration: none; font-size: 13px; font-weight: 300;
  transition: color 0.2s;
}
.notice-ticker-inner a:hover { color: var(--gold-light); }
.notice-ticker-inner a::before { content: '• '; color: var(--gold-light); }

/* ══════════════════════════════════════════════════════
   NEWS & ANNOUNCEMENTS
══════════════════════════════════════════════════════ */
.news-section { padding: 90px 0; background: var(--off-white); }

.news-tab-btns { display: flex; gap: 4px; margin-bottom: 40px; }
.news-tab-btn {
  padding: 9px 24px; background: transparent;
  border: 1.5px solid var(--cream-dark);
  font-size: 13px; font-weight: 500; cursor: pointer;
  color: var(--text-muted); transition: all 0.3s ease;
  letter-spacing: 0.3px;
}
.news-tab-btn.active {
  background: var(--maroon); border-color: var(--maroon);
  color: white;
}
.news-tab-btn:hover:not(.active) { border-color: var(--maroon); color: var(--maroon); }

/* News cards */
.news-card {
  background: white; padding: 20px;
  border: 1px solid rgba(107,26,42,0.08);
  border-left: 4px solid transparent;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all 0.35s ease; cursor: pointer;
  margin-bottom: 12px; position: relative; overflow: hidden;
}
.news-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(107,26,42,0.03), transparent);
  transform: translateX(-100%); transition: transform 0.35s ease;
}
.news-card:hover::before { transform: translateX(0); }
.news-card:hover { border-left-color: var(--maroon); transform: translateX(6px); }

.news-date-badge {
  background: var(--maroon); color: white;
  width: 50px; height: 56px; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Frank Ruhl Libre', serif;
}
.news-date-badge .day { font-size: 22px; font-weight: 700; line-height: 1; }
.news-date-badge .mon { font-size: 10px; letter-spacing: 1px; opacity: 0.85; }
.news-date-badge.gold { background: var(--gold); color: var(--maroon-deep); }

.news-body h6 {
  font-size: 14px; font-weight: 600; color: var(--text-dark);
  line-height: 1.4; margin-bottom: 4px;
}
.news-body p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.news-tag {
  display: inline-block; font-size: 9px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 2px 8px; border-radius: 2px;
  background: rgba(107,26,42,0.08); color: var(--maroon);
  margin-bottom: 6px;
}
.news-tag.gold { background: rgba(201,145,58,0.1); color: var(--gold); }

/* Announcement ticker */
.announcement-card {
  background: var(--maroon-dark); color: white;
  padding: 18px 22px; border-left: 4px solid var(--gold);
  margin-bottom: 10px; position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.announcement-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-maroon); }
.announcement-card::after {
  content: ''; position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%); width: 80px; height: 80px;
  background: rgba(201,145,58,0.08); border-radius: 50%;
}
.announcement-card h6 { font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.announcement-card p { font-size: 12px; opacity: 0.7; margin: 0; }
.ann-date { font-size: 10px; color: var(--gold-light); letter-spacing: 1px; margin-bottom: 6px; }
.ann-new-badge {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: var(--maroon-deep);
  font-size: 8px; font-weight: 800; padding: 3px 8px;
  letter-spacing: 1px;
}

/* Scroll list */
.news-scroll-wrap { height: 380px; overflow: hidden; position: relative; }
.news-scroll-inner { }
.news-scroll-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; background: linear-gradient(transparent, var(--off-white));
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   EXPLORE CAMPUS / PROGRAMS
══════════════════════════════════════════════════════ */

  /* ── Single card ── */
    .campus-card {
     
      position: relative;
      overflow: hidden;

      /* Wave float keyframe assigned per card via JS */
      animation-name: waveFloat;
      animation-timing-function: ease-in-out;
      animation-iteration-count: infinite;
      animation-direction: alternate;

      transition: background 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.35s;
    }

    /* Subtle inner top shine */
    .campus-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
    }

    /* Hover state */
    /* .campus-card:hover {
     
      box-shadow:
        0 0 0 1px rgba(201,168,76,0.4),
        0 20px 50px rgba(0,0,0,0.5),
        0 0 40px rgba(201,168,76,0.08);
      transform: translateY(-14px) scale(1.04) !important;
      animation-play-state: paused;
      z-index: 2;
    } */
    .campus-card:hover .icon-circle {
      background: rgba(201,168,76,0.15);
      transform: scale(1.18) rotate(-6deg);
      box-shadow: 0 0 28px rgba(201,168,76,0.25);
    }

    .card-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 6px;
      transition: color 0.3s;
    }
    .campus-card:hover .card-title { color: var(--gold-light); }

    .card-sub {
      font-size: 0.78rem;
      color: var(--text-muted);
      transition: color 0.3s;
    }
    .campus-card:hover .card-sub { color: rgba(232,201,106,0.75); }

    /* Gold bottom bar that slides up on hover */
    .campus-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--maroon-bg), var(--gold), var(--maroon-bg));
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    }
    .campus-card:hover::after { transform: scaleX(1); }

    /* ── Wave float keyframe ──
       Each card gets a different animation-duration and delay (set via JS)
       creating the rolling sea-wave feel left → right                      */
    @keyframes waveFloat {
      0%   { transform: translateY(0px); }
      100% { transform: translateY(-18px); }
    }

    /* ── Scroll-reveal: cards start invisible ── */
    .campus-card {
      opacity: 0;
      transform: translateY(30px);
    }
    .campus-card.revealed {
      opacity: 1;
      /* translateY handled by waveFloat once revealed */
    }
    /* reveal transition */
    .campus-card.reveal-anim {
      transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16,1,0.3,1);
    }


.programs-section {
  padding: 90px 0;
  background: linear-gradient(160deg, #1a2840 0%, var(--maroon-deep) 100%);
  position: relative; overflow: hidden;
}
/* .programs-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(201,145,58,0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(201,145,58,0.05) 0%, transparent 40%);
} */

/* Geometric decoration */
/* .programs-section::after {
  content: '';
  position: absolute; right: -120px; top: -120px;
  width: 400px; height: 400px;
  border: 80px solid rgba(201,145,58,0.05);
  background: conic-gradient(#5b2d28, #6a6a6a00, #c9913a4f);
    -webkit-mask: radial-gradient(circle, transparent 55%, black 56%);
    mask: radial-gradient(circle, #54535300 55%, black 65%);
    border-radius: 35%;
  animation: rotateCircle 30s linear infinite;

} */

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.program-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid transparent;
  padding: 32px 24px; text-align: center;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  cursor: pointer; position: relative; overflow: hidden;
}
.program-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.35s ease;
}
.program-card:hover { border-top-color: var(--gold); background: rgba(255,255,255,0.1); transform: translateY(-8px); }
.program-card:hover::before { transform: scaleX(1); }

.program-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: rgba(201,145,58,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; transition: all 0.4s ease;
}
.program-card:hover .program-icon { background: var(--gold); transform: scale(1.1) rotate(5deg); }
.program-card:hover .program-icon i { filter: brightness(0) invert(1) sepia(1); }
.program-name {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 17px; font-weight: 700; color: white; margin-bottom: 8px;
}
.program-count { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════════════
   INFRASTRUCTURE SLIDER
══════════════════════════════════════════════════════ */
.infra-section { padding: 90px 0;
   /* background: var(--cream); */
    overflow: hidden; }

.infra-track-wrap { position: relative; overflow: hidden; }
.infra-track {
  display: flex; gap: 20px;
  will-change: transform; cursor: grab;
}
.infra-track:active { cursor: grabbing; }

.infra-card {
  flex: 0 0 calc(33.333% - 14px);
  position: relative; overflow: hidden;
}
@media(max-width:992px) { .infra-card { flex: 0 0 calc(50% - 10px); } }
@media(max-width:576px) { .infra-card { flex: 0 0 85%; } }

.infra-card-inner { position: relative; height: 300px; overflow: hidden; }
.infra-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.infra-card:hover .infra-img { transform: scale(1.08); }
.infra-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,8,16,0.9) 0%, transparent 60%);
  transition: opacity 0.3s;
}
.infra-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; z-index: 1;
}
.infra-label h5 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 20px; font-weight: 700; color: white; margin: 0;
}
.infra-label p { font-size: 12px; color: rgba(255,255,255,0.65); margin: 4px 0 0; }
.infra-icon-badge {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; background: rgba(201,145,58,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: white;
}

.infra-nav { display: flex; gap: 8px; }
.infra-btn {
  width: 46px; height: 46px;
  background: transparent; border: 1.5px solid var(--maroon);
  color: var(--maroon); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.3s ease;
}
.infra-btn:hover { background: var(--maroon); color: white; }

.infra-progress {
  height: 2px; background: rgba(107,26,42,0.15); margin-top: 28px;
  position: relative; overflow: hidden;
}
.infra-progress-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--maroon); transition: width 0.4s ease;
}

/* ══════════════════════════════════════════════════════
   CLUBS & FORUMS
══════════════════════════════════════════════════════ */
.clubs-section { padding: 80px 0; background: var(--off-white); }

.club-card {
  background: white; border: 1px solid rgba(107,26,42,0.08);
  padding: 24px; text-align: center;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  position: relative; overflow: hidden;
}
.club-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--maroon); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.club-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-maroon); }
.club-card:hover::after { transform: scaleX(1); }
.club-emoji { font-size: 36px; margin-bottom: 12px; display: block; }
.club-name {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 15px; font-weight: 700; color: var(--maroon-dark);
}



/* ══════════════════════════════════════════════════════
   ACHIEVEMENTS / ACCREDITATION BANNER
══════════════════════════════════════════════════════ */
.achievement-band {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  padding: 60px 0; position: relative; overflow: hidden;
}
.achievement-band::before {
  content: '';
  position: absolute; left: -60px; top: -60px;
  width: 300px; height: 300px;
  border: 60px solid rgba(201,145,58,0.07);
   background: conic-gradient(#5b2d28, #6a6a6a00, #c9913a4f);
    -webkit-mask: radial-gradient(circle, transparent 55%, black 56%);
    mask: radial-gradient(circle, #54535300 55%, black 65%);
    border-radius: 50%;
  animation: rotateCircle 30s linear infinite;
}
.achievement-band::after {
  content: '';
  position: absolute; right: -80px; bottom: -80px;
  width: 350px; height: 350px;
  border: 80px solid rgba(201,145,58,0.05);
   background: conic-gradient(#5b2d28, #6a6a6a00, #c9913a4f);
    -webkit-mask: radial-gradient(circle, transparent 55%, black 56%);
    mask: radial-gradient(circle, #54535300 55%, black 65%);
    border-radius: 50%;
  animation: rotateCircle 30s linear infinite;
}

.achieve-item { text-align: center; position: relative; z-index: 1; }
.achieve-icon { font-size: 36px; color: var(--gold); margin-bottom: 8px; display: block; }
.achieve-num {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 48px; font-weight: 900; color: white;
  line-height: 1; margin-bottom: 4px;
}
.achieve-num sup { font-size: 22px; color: var(--gold-light); }
.achieve-label { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 1px; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.main-footer {
  background: linear-gradient(170deg, #01050b 0%, #070f1a 40%, #01050a 100%);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
  position: relative; overflow: hidden;
}
a.datastone {
    text-decoration: none;
    color: #c9a33c;
}
.main-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--maroon), var(--gold));
}
.footer-brand-name {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 20px; font-weight: 800; color: white;
  margin-bottom: 14px;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 12px; font-size: 13px;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.footer-heading {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 16px; font-weight: 700; color: var(--gold-light);
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,145,58,0.2);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 14px; transition: color 0.2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '›'; color: var(--gold); font-size: 16px; line-height: 1; }
.footer-links a:hover { color: var(--gold-light); }

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px;
  transition: all 0.3s ease;
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--maroon-deep); }

.footer-bottom {
  margin-top: 48px; padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════════════════════
   SCROLL ANIMATIONS (JS-triggered)
══════════════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(40px); }
.fade-left { opacity: 0; transform: translateX(-30px); }
.fade-right { opacity: 0; transform: translateX(30px); }
.scale-in { opacity: 0; transform: scale(0.9); }

/* ══════════════════════════════════════════════════════
   SECTION DIVIDERS
══════════════════════════════════════════════════════ */
.wave-divider { line-height: 0; }
.wave-divider svg { display: block; }

/* ══════════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 44px; height: 44px; background: var(--maroon);
  color: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; box-shadow: var(--shadow-maroon);
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s ease;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--maroon-deep); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-section { height: 55vh; }
  .hero-stats { display: none; }
  .hero-counter { display: none; }
  .hero-controls { bottom: 80px; right: 20px; display: none;}
  .hero-dots { bottom: 20px; right: 20px; }
  .topbar-links { display: none !important; }
  .news-section, .programs-section, .infra-section, .clubs-section, .updates-section { padding: 60px 0; }
  .vision-section { padding: 70px 0; }
  .vision-bg { background-attachment: scroll; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


@media(max-width: 676px){
  .contact-item {  
    font-size: .7em;
}
}

.announcement-wrapper { height: 380px; overflow: hidden; position: relative; }

/* GAllery */
/* kitchen section */
.kitchen {
  /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.pexels.com/photos/798721/pexels-photo-798721.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1") */
    /* url(../img/slider.jpg) */
      /* center center; */
  background-size: cover;
  padding: 50px 0;
  background-attachment: fixed;
}
.kitchen img {
  border-radius: 15px;
}
.kitchen img {
  --g: 3px; /* the gap */
  --b: 4px; /* border thickness*/
  --c: #1e4174; /* the color */

  padding: calc(var(--g) + var(--b));
  --_c: #0000 0 25%, var(--c) 0 50%;
  --_g1: repeating-linear-gradient(90deg, var(--_c)) repeat-x;
  --_g2: repeating-linear-gradient(180deg, var(--_c)) repeat-y;
  background: var(--_g1) var(--_p, 25%) 0, var(--_g2) 0 var(--_p, 125%),
    var(--_g1) var(--_p, 125%) 100%, var(--_g2) 100% var(--_p, 25%);
  background-size: 200% var(--b), var(--b) 200%;
  cursor: pointer;
  /* filter: grayscale(50%); */
  transition: 0.3s;
}
.kitchen img:hover {
  --_p: 75%;
  filter: grayscale(0%);
}
.menu h3 {
  background: #fff;
  color: #3498db;
  font-size: 36px;
  line-height: 100px;
  margin: 10px;
  padding: 2%;
  position: relative;
  text-align: center;
}

.menu h3 {
  opacity: 0.8;
  transition: all 300ms ease;
}

.slick-center h3 {
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
  -webkit-transform: scale(1.08);
  color: #e67e22;
  opacity: 1;
  transform: scale(1.08);
}

@media (max-width: 450px) {
  .revslider-initialised {
    min-height: 25vh !important;
    /* max-width: 300px !important; */
    width: 100% !important;
  }
  #rev_slider_18_1_wrapper {
    width: 100% !important;
  }
  .slider-type-one {
    top: 0px;
  }
}
/* GAllery */



/* About us Section */

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */
.about {
  background: var(--cream);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

/* subtle bg pattern */
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 20%, rgba(122,31,46,.04) 0%, transparent 50%),
    radial-gradient(circle at 92% 80%, rgba(201,151,58,.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Section label ── */
.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 56px;
  justify-content: center;

  /* animate */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.section-tag.show { opacity: 1; transform: translateY(0); }
.section-tag::before,
.section-tag::after {
  content: '';
  height: 1px;
  width: 50px;
  background: var(--gold);
}

/* ── Main grid ── */
.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

/* ══════════════════════════════
   LEFT COLUMN
══════════════════════════════ */
.about-left { position: relative; }

/* Years card */
.years-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 2px 4px rgba(0,0,0,.04),
    0 12px 40px rgba(122,31,46,.12),
    0 40px 80px rgba(122,31,46,.06);

  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.years-card.show { opacity: 1; transform: translateY(0); }

/* image area */
.card-img-about {
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(92, 22, 34, .3) 0%, rgb(14 31 56 / 84%) 100%), url(../img/gallery/g5.jpg) center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
}
.card-img-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

/* big number */
.about .card-body {
  padding: 28px 28px 24px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  border-bottom: 1px solid #f0ebe3;
}

.big-year {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 110px;
  font-weight: 700;
  line-height: .9;
  color: transparent;
  -webkit-text-stroke: 3px var(--maroon);
  position: relative;
  user-select: none;
}
.big-year::after {
  content: attr(data-n);
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0;
  color: transparent;
  /* fill animates in */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s cubic-bezier(.22,1,.36,1) .3s;
}
.years-card.show .big-year::after {
  clip-path: inset(0 0% 0 0);
}

.year-meta { padding-bottom: 10px; }
.year-meta strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--maroon);
  letter-spacing: .5px;
}
.year-meta span {
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* card footer badges */
.card-footer {
  padding: 18px 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cbadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: var(--cream-dark);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--maroon);
  border: 1px solid rgba(122,31,46,.1);
}
.cbadge svg { width: 12px; height: 12px; flex-shrink: 0; }

/* decorative elements */
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed #2125292b;
  pointer-events: none;
}
.deco-ring.r1 { width: 120px; height: 120px; top: -30px; left: -30px; animation: rotateCircle 30s linear infinite;}
.deco-ring.r2 { width: 70px;  height: 70px;  bottom: -20px; right: -20px; border-color: rgba(122,31,46,.2); animation: rotateCircle 30s linear infinite; }

.deco-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.deco-dot.d1 { top: 20px; right: -12px; }
.deco-dot.d2 { bottom: 40px; left: -12px; background: var(--maroon); }

/* dot matrix */
.dot-mat {
  position: absolute;
  width: 80px; height: 80px;
  background-image: radial-gradient(circle, rgba(201,151,58,.45) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  pointer-events: none;
}
.dot-mat.dm1 { top: -16px; right: -16px; }
.dot-mat.dm2 { bottom: 60px; left: -16px; }

/* Stats bar */
.stats-bar {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(92,22,34,.18);

  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease .2s, transform .7s ease .2s;
}
.stats-bar.show { opacity: 1; transform: translateY(0); }

.sbox {
  padding: 22px 16px 18px;
  text-align: center;
  position: relative;
}
.sbox:nth-child(1) { background: #203354; }
.sbox:nth-child(2) { background: #1c2e4a; }
.sbox:nth-child(3) { background: #192841; }
.sbox + .sbox::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.12);
}

.snum {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.snum sup { font-size: 14px; }
.slbl {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  display: block;
  margin-top: 5px;
}

/* ══════════════════════════════
   RIGHT COLUMN
══════════════════════════════ */
.about-right {
  padding-top: 10px;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1) .15s,
              transform .8s cubic-bezier(.22,1,.36,1) .15s;
}
.about-right.show { opacity: 1; transform: translateX(0); }

.about-headline {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
}
.about-headline span {
  color: var(--maroon);
  font-style: italic;
}

.gold-rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 24px;

  /* animate width */
  width: 0;
  transition: width .9s cubic-bezier(.22,1,.36,1) .5s;
}
.about-right.show .gold-rule { width: 56px; }

.about-intro {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.about-intro strong { color: var(--maroon); font-weight: 600; }

.about-body {
  font-size: 14.5px;
  line-height: 1.85;
  color: #5a5a5a;
  margin-bottom: 32px;
  padding: 18px 20px;
  background: var(--cream-dark);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  position: relative;
}
.about-body::before {
  content: '\201C';
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 52px;
  color: var(--gold-pale);
  position: absolute;
  top: -8px;
  left: 12px;
  line-height: 1;
}

/* highlights */
.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.hl-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(122,31,46,.08);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  cursor: default;

  /* stagger animation */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease,
              box-shadow .2s, border-color .2s;
}
.hl-item:nth-child(1) { transition-delay: .35s; }
.hl-item:nth-child(2) { transition-delay: .45s; }
.hl-item:nth-child(3) { transition-delay: .55s; }
.hl-item:nth-child(4) { transition-delay: .65s; }
.hl-item.show { opacity: 1; transform: translateY(0); }
.hl-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(122,31,46,.1); border-color: rgba(122,31,46,.2); }

.hl-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hl-icon svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 1.8; fill: none; }

.hl-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.hl-text span   { font-size: 11.5px; color: var(--text-mid); }

/* CTA */
.about-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: #fff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .4px;
  border-radius: 7px;
  box-shadow: 0 4px 20px rgba(92,22,34,.3);
  transition: transform .22s, box-shadow .22s, filter .22s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(92,22,34,.38); filter: brightness(1.08); }
.btn-primary svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 2.2; fill: none; transition: transform .22s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: transparent;
  color: var(--maroon);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  border: 2px solid var(--maroon);
  border-radius: 7px;
  transition: background .22s, color .22s;
}
.btn-ghost:hover { background: var(--maroon); color: #fff; }
.btn-ghost svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2; fill: none; transition: transform .22s; }
.btn-ghost:hover svg { transform: rotate(45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-left { max-width: 400px; margin: 0 auto; }
  .about-right { transform: translateY(40px); }
  .about-right.show { transform: none; }
}
@media (max-width: 600px) {
  .about { padding: 35px 0 60px; }
  .about-wrap { padding: 0 20px; }
  .highlights { grid-template-columns: 1fr; }
  .big-year { font-size: 80px; }
  .about-cta-row { flex-direction: column; align-items: flex-start; }
}
/* About us Section */


/* Update Section */

  :root {
    --maroon:    #0d1f39;
    --maroon-mid:#7a1428;
    --maroon-lt: #9e1c35;
    --gold:      #c9a227;
    --gold-lt:   #e8c14a;
    --cream:     #f5f0e8;
    --cream-dk:  #ede6d8;
    --text-dark: #323232;
    --text-mid:  #4a2028;
    --white:     #ffffff;
  }
  /* ─── SECTION ─── */
  .updates-section {
    padding: 88px 48px 20px;
    max-width: 1440px;
    margin: 0 auto;
  }

  /* ─── HEADER ─── */
  .updates-section .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 44px;
  }
  .updates-section .section-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px;
  }
  .updates-section .section-label::before, .section-label::after {
    content: ''; display: inline-block;
    width: 36px; height: 1px; background: var(--gold);
  }
  .updates-section .section-title {
    /* font-family: 'Playfair Display', serif;
    font-size: clamp(42px,4.5vw,68px);
    font-weight: 700; line-height: 1.04;
    color: var(--maroon); */
  }
  .updates-section .section-title span { color: var(--gold); }

 /* ─── TAB NAV ─── */
  .tab-nav {
    display: flex; gap: 6px;
    background: var(--cream-dk);
    padding: 5px; border-radius: 50px;
    position: relative;
  }
  .tab-btn {
    position: relative; z-index: 2;
    padding: 11px 24px; border: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 500;
    color: var(--text-mid);
    border-radius: 50px; cursor: pointer;
    transition: color .3s ease; white-space: nowrap;
  }
  .tab-btn:hover { color: var(--maroon); }
  .tab-btn.active { color: var(--white); }

  /* ─── PROGRESS BAR ─── */
  .progress-bar {
    width: 100%; height: 2px;
    background: var(--cream-dk);
    border-radius: 2px; margin-bottom: 40px; overflow: hidden;
  }
  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--maroon), var(--gold));
    width: 0%; transition: width linear;
  }

  /* ─── CARDS WRAP ─── */
  .updates-section .cards-wrap { position: relative; }

  .updates-section .cards-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: absolute; inset: 0;
    opacity: 0; pointer-events: none;
    transform: translateY(30px);
    transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
  }
  .updates-section .cards-panel.active {
    opacity: 1; pointer-events: auto;
    transform: translateY(0); position: relative;
  }

  /* staggered card fade-in */
  .updates-section .cards-panel .card {
    opacity: 0; transform: translateY(22px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .cards-panel.active .card { opacity: 1; transform: translateY(0); }
  .updates-section .cards-panel.active .card:nth-child(1) { transition-delay: .04s; }
  .updates-section .cards-panel.active .card:nth-child(2) { transition-delay: .13s; }
  .updates-section .cards-panel.active .card:nth-child(3) { transition-delay: .22s; }
  .updates-section .cards-panel.active .card:nth-child(4) { transition-delay: .31s; }
  .updates-section .cards-panel.active .card:nth-child(5) { transition-delay: .40s; }
  .updates-section .cards-panel.active .card:nth-child(6) { transition-delay: .49s; }

  /* ─── CARD — height follows image, no cropping ─── */
  .updates-section .card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    /* background: #0d0204; */
    box-shadow: 0 6px 28px rgba(90,10,26,.10);
    transition: box-shadow .4s ease;
  }
  .updates-section  .card:hover { box-shadow: 0 22px 64px rgba(90,10,26,.24); }

  /* image container — flows with natural image height */
  .updates-section  .card-img {
    position: relative;
    width: 100%;
    display: block;
    line-height: 0;
    overflow: hidden;
    font-size: 0;
  }
  /* actual <img> inside .card-img */
  .updates-section .card-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform .65s cubic-bezier(.4,0,.2,1);
  }
  .updates-section .card:hover .card-img img { transform: scale(1.04); }
  .updates-section .card:hover .card-img { transform: none; }

  /* always-on bottom vignette — sits over the image */
   .updates-section .card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0) 40%,
      rgba(8,1,3,.55) 68%,
      rgba(8,1,3,.92) 100%
    );
    pointer-events: none;
    z-index: 2;
  }

  /* badge */
  .updates-section  .card-badge {
    position: absolute; top: 18px; left: 18px; z-index: 6;
    padding: 5px 13px; border-radius: 5px;
    font-size: 10px; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    background: var(--gold); color: var(--maroon);
  }
  .updates-section  .card-badge.event  { background: var(--maroon); color: var(--gold-lt); }
  .updates-section  .card-badge.news   { background: #1a4a7a; color: #a8d4f5; }
  .updates-section  .card-badge.career { background: #1a4a2a; color: #a8f5c0; }

  /* date top-right */
 
.updates-section  .card-date-top {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 6;
    font-size: 11px;
    font-weight: 500;
    color: white;
    background: rgb(29 26 21);
    padding: 4px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}
  /* title — sits over the image at bottom, slides up on hover */
  .updates-section  .card-title-wrap {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
    padding: 0 20px 22px;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    pointer-events: none;
  }
  .updates-section  .card:hover .card-title-wrap { transform: translateY(-145px); }

  .updates-section  .card-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: clamp(14px,1.2vw,18px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.32;
    text-shadow: 0 2px 10px rgba(0,0,0,.6);
  }

  /* ── HOVER OVERLAY (desc + link) ── */
  .updates-section  .card-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
    padding: 28px 20px 24px;
    background: linear-gradient(to top, rgb(14 31 56) 0%, rgb(14 31 56) 65%, rgba(90, 10, 26, 0) 100%);
    transform: translateY(100%);
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    display: flex; flex-direction: column; gap: 14px;
  }
  .updates-section  .card:hover .card-overlay { transform: translateY(0); }

  .updates-section  .card-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,.84);
    line-height: 1.68;
    opacity: 0; transform: translateY(14px);
    transition: opacity .38s ease .14s, transform .38s ease .14s;
  }
  .updates-section  .card:hover .card-desc { opacity: 1; transform: translateY(0); }

  .updates-section  .card-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 600;
    color: var(--gold-lt); text-decoration: none;
    width: fit-content;
    border-bottom: 1px solid rgba(232,193,74,.4);
    padding-bottom: 2px;
    opacity: 0; transform: translateY(10px);
    transition: opacity .38s ease .22s, transform .38s ease .22s, gap .25s, color .2s;
  }
  .updates-section  .card:hover .card-link { opacity: 1; transform: translateY(0); }
  .updates-section  .card-link:hover { gap: 12px; color: var(--white); border-color: var(--white); }
  .updates-section  .card-link svg { transition: transform .25s ease; }
  .updates-section  .card-link:hover svg { transform: translateX(4px); }

  /* ─── VIEW ALL ─── */
  .updates-section .view-all-wrap { text-align: center; margin-top: 62px; }
 .updates-section .view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    background: var(--maroon);
    color: var(--gold-lt);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--maroon);
    cursor: pointer;
    transition: all .3s ease;
}
  .updates-section .view-all-btn:hover {
    background: transparent; color: var(--maroon);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(90,10,26,.18);
  }
  .updates-section .view-all-btn svg { transition: transform .3s ease; }
  .updates-section .view-all-btn:hover svg { transform: translateX(4px); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .updates-section .cards-panel { grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width: 640px) {
    .updates-section { padding: 60px 20px 80px; }
    .updates-section .cards-panel { grid-template-columns: 1fr; }
  }
/* Update Section */



/* vision mission */

/* ══════════════════════════════
   BACKGROUND
══════════════════════════════ */
.bg-canvas{
  position:absolute;inset:0;z-index:0;
  pointer-events:none;overflow:hidden;
}
/* Subtle noise grain */
.bg-canvas::before{
  content:'';position:absolute;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity:.35;
}
.orb{
  position:absolute;border-radius:50%;
  filter:blur(90px);pointer-events:none;
  animation:orbPulse ease-in-out infinite alternate;
}
.orb1{width:700px;height:700px;
  /* background:radial-gradient(circle, #71442f3b, transparent 70%); */
  top:-200px;left:-200px;animation-duration:10s;}
.orb2{width:500px;height:500px;background:radial-gradient(circle,rgba(201,168,76,.12),transparent 70%);bottom:-100px;right:-100px;animation-duration:13s;animation-delay:2s;}
.orb3{width:400px;height:400px;background:radial-gradient(circle, rgb(78 90 14 / 40%), transparent 70%);top:50%;left:40%;animation-duration:8s;animation-delay:1s;}
@keyframes orbPulse{
  from{transform:scale(1) translate(0,0);}
  to  {transform:scale(1.12) translate(25px,35px);}
}

/* Floating tiny particles */
.particle{
  position:absolute;border-radius:50%;
  background:var(--gold);
  animation:floatParticle linear infinite;
  pointer-events:none;
}
@keyframes floatParticle{
  0%  {transform:translateY(100vh) scale(0);opacity:0;}
  10% {opacity:.6;}
  90% {opacity:.3;}
  100%{transform:translateY(-20vh) scale(1.5);opacity:0;}
}

/* ══════════════════════════════
   SECTION WRAPPER
══════════════════════════════ */
.vision{
  width:100%;
  /* max-width:1240px; */
  position:relative;z-index:1;
  background-color:var(--maroon);
  padding: 90px 20px;
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.vision .header{text-align:center;margin-bottom:70px;}

.eyebrow{
  display:inline-flex;align-items:center;gap:12px;
  font-size:.68rem;font-weight:600;letter-spacing:.3em;
  text-transform:uppercase;color:var(--gold);margin-bottom:20px;
}
.eyebrow::before,.eyebrow::after{
  content:'';display:block;width:44px;height:1px;
  background:linear-gradient(90deg,transparent,var(--gold));
}
.eyebrow::after{transform:scaleX(-1);}

.vision .main-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.8rem,5.5vw,4.4rem);
  font-weight:700;color:var(--white);
  line-height:1.05;letter-spacing:-.02em;
}
.vision .main-title em{
  font-style:italic;color:var(--gold);
}

/* ══════════════════════════════
   CARDS ROW
══════════════════════════════ */
.vision .cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  align-items:start;
}

/* ══════════════════════════════
   SINGLE CARD
══════════════════════════════ */
.vmcard{
  position:relative;
  border-radius:36px;
  padding:48px 36px 25px;
  overflow:hidden;
  cursor:pointer;
  /* glass morphism */
  background:linear-gradient(145deg,rgba(255,255,255,.04),rgba(255,255,255,.015));
  border:1px solid rgba(201,168,76,.14);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);

  /* reveal start */
  opacity:0;
  transform:translateY(60px) scale(.95);
  transition:
    opacity .7s ease,
    transform .7s cubic-bezier(.16,1,.3,1),
    border-color .4s,
    box-shadow .4s;

  /* idle breathe */
  animation:breathe ease-in-out infinite alternate;
  animation-play-state:paused;
}
.vmcard.visible{
  opacity:1;transform:translateY(0) scale(1);
  animation-play-state:running;
}
/* stagger breathe per card */
.vmcard:nth-child(1){animation-duration:4s;  animation-delay:0s;}
.vmcard:nth-child(2){animation-duration:4.5s;animation-delay:.6s;}
.vmcard:nth-child(3){animation-duration:3.8s;animation-delay:1.2s;}

@keyframes breathe{
  0%  {transform:translateY(0px);}
  100%{transform:translateY(-10px);}
}

/* ── Coloured glow per card ── */
.vmcard:nth-child(1) .card-glow{background:radial-gradient(ellipse at 20% 0%,rgba(201,168,76,.22),transparent 65%);}
/*.vmcard:nth-child(2) .card-glow{background:radial-gradient(ellipse at 50% 0%, #212529, transparent 65%);}*/
.vmcard:nth-child(3) .card-glow{background:radial-gradient(ellipse at 80% 0%,rgba(201,168,76,.18),transparent 65%);}
.card-glow{
  position:absolute;inset:0;z-index:0;
  pointer-events:none;
  opacity:.7;
  transition:opacity .5s;
}

/* ── Animated top border ── */
.vmcard::before{
  content:'';
  position:absolute;top:0;left:15%;right:15%;height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  border-radius:2px;
  opacity:.4;
  transition:left .5s cubic-bezier(.16,1,.3,1),right .5s cubic-bezier(.16,1,.3,1),opacity .4s;
}

/* ── Animated side accent (left edge) ── */
.vmcard::after{
  content:'';
  position:absolute;top:20%;left:0;bottom:20%;width:2px;
  background:linear-gradient(180deg,transparent,var(--gold),transparent);
  border-radius:2px;
  opacity:0;
  transform:scaleY(0);
  transition:opacity .45s,transform .55s cubic-bezier(.16,1,.3,1);
  transform-origin:center;
}

/* ── Icon ── */
.icon-ring{
  position:relative;z-index:1;
  width:72px;height:72px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:28px;
  background:linear-gradient(135deg,rgba(201,168,76,.18),rgba(201,168,76,.04));
  border:1.5px solid rgba(201,168,76,.28);
  transition:transform .55s cubic-bezier(.16,1,.3,1),background .4s,box-shadow .4s;
}
.icon-ring i{
  font-size:1.6rem;color:var(--gold);
  transition:transform .4s,color .3s;
}

/* ── Orbiting dot on icon ── */
.icon-ring .orbit{
  position:absolute;width:100%;height:100%;
  border-radius:50%;
  border:1px dashed rgba(201,168,76,.2);
  animation:spinOrbit 8s linear infinite;
}
.icon-ring .orbit::after{
  content:'';position:absolute;top:-3px;left:50%;
  width:6px;height:6px;border-radius:50%;
  background:var(--gold);margin-left:-3px;
  box-shadow:0 0 8px var(--gold);
}
@keyframes spinOrbit{to{transform:rotate(360deg);}}

/* ── Card body text ── */


.vision .card-body {
    position: relative;
    z-index: 1;
    display: block;
    border: none;
}

.vision .card-label{
  font-size:.65rem;font-weight:600;letter-spacing:.2em;
  text-transform:uppercase;color:var(--gold-d);
  margin-bottom:8px;
  opacity:0;transform:translateX(-12px);
  transition:opacity .4s ease .05s,transform .45s ease .05s;
}
.vmcard.visible .card-label{opacity:1;transform:translateX(0);}

.vision .card-title{
  font-size:2rem;font-weight:700;
  color:var(--white);line-height:1.1;
  margin-bottom:16px;
  transition:color .3s;
}

/* Animated underline beneath title */
.title-line{
  width:0;height:2px;
  background:linear-gradient(90deg,var(--gold),var(--gold-d));
  border-radius:2px;margin-bottom:20px;
  transition:width .65s cubic-bezier(.16,1,.3,1) .35s;
}
.vmcard.visible .title-line{width:48px;}

.vision .card-text{
  font-size:15px;font-weight:300;
  color:var(--muted2);line-height:1.75;
  transition:color .3s;
}

/* ── Number watermark ── */
.vision .card-num{
  position:absolute;bottom:20px;right:28px;z-index:0;
  font-family:'Cormorant Garamond',serif;
  font-size:3rem;font-weight:700;
  color:rgba(201,168,76,.05);line-height:1;
  letter-spacing:-.05em;pointer-events:none;
  transition:color .4s;
}

/* ── Read more chip ── */
.card-chip{
  position:relative;z-index:1;
  display:inline-flex;align-items:center;gap:8px;
  margin-top:26px;
  font-size:.78rem;font-weight:600;letter-spacing:.04em;
  color:rgba(201,168,76,.65);
  opacity:0;transform:translateY(8px);
  transition:opacity .4s ease .1s,transform .45s ease .1s,color .3s;
}
.card-chip i{
  font-size:.65rem;
  transition:transform .35s cubic-bezier(.16,1,.3,1);
}

/* ══════════════════════════════
   HOVER
══════════════════════════════ */
.vmcard:hover{
  border-color:rgba(201,168,76,.45);
  box-shadow:
    0 0 0 1px rgba(201,168,76,.18),
    0 40px 90px rgba(0,0,0,.6),
    0 0 80px rgba(201,168,76,.07);
  transform:translateY(-20px) scale(1.025) !important;
  animation-play-state:paused;
}
.vmcard:hover .card-glow{opacity:1;}
.vmcard:hover::before{left:0;right:0;opacity:.85;}
.vmcard:hover::after{opacity:1;transform:scaleY(1);}
.vmcard:hover .icon-ring{
  transform:scale(1.15) rotate(-8deg);
  background:linear-gradient(135deg,rgba(201,168,76,.3),rgba(201,168,76,.08));
  box-shadow:0 10px 40px rgba(201,168,76,.22);
}
.vmcard:hover .icon-ring i{transform:scale(1.1);color:var(--gold-l);}
.vmcard:hover .card-title{color:var(--gold-l);}
.vmcard:hover .card-text{color:rgba(255,255,255,.85);}
.vmcard:hover .card-num{color:rgba(201,168,76,.11);}
.vmcard:hover .card-chip{opacity:1;transform:translateY(0);color:var(--gold);}
.vmcard:hover .card-chip i{transform:translateX(5px);}

/* ── Ripple ── */
.ripple{
  position:absolute;border-radius:50%;
  background:rgba(201,168,76,.12);
  transform:scale(0);
  animation:rippleOut .7s ease-out forwards;
  pointer-events:none;z-index:0;
}
@keyframes rippleOut{to{transform:scale(5);opacity:0;}}

/* ══════════════════════════════
   BOTTOM CONNECTOR
══════════════════════════════ */
.connector{
  display:flex;align-items:center;justify-content:center;
  gap:0;margin-top:48px;
}
.conn-dot{
  width:8px;height:8px;border-radius:50%;
  background:rgba(201,168,76,.25);
  animation:connPulse 2.4s ease-in-out infinite;
}
.conn-line{
  flex:1;max-width:120px;height:1px;
  background:linear-gradient(90deg,rgba(201,168,76,.08),rgba(201,168,76,.3),rgba(201,168,76,.08));
}
.conn-dot:nth-child(1){animation-delay:0s;}
.conn-dot:nth-child(3){animation-delay:.4s;}
.conn-dot:nth-child(5){animation-delay:.8s;}
.conn-dot:nth-child(7){animation-delay:1.2s;}
@keyframes connPulse{
  0%,100%{transform:scale(1);background:rgba(201,168,76,.25);}
  50%{transform:scale(1.9);background:var(--gold);box-shadow:0 0 10px rgba(201,168,76,.5);}
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media(max-width:900px){.cards{grid-template-columns:1fr;max-width:520px;margin:0 auto;}}
@media(max-width:600px){
  .vmcard{padding:36px 28px 32px;}
  .card-title{font-size:1.6rem;}
}
/* vision mission */


/* footer dots */

.f-particle{
  position:absolute;border-radius:50%;
  background:#c9a84c;pointer-events:none;z-index:0;
  animation:fPartFloat linear infinite;opacity:0;
}
@keyframes fPartFloat{
  0%  {transform:translateY(0) scale(0);opacity:0;}
  10% {opacity:.4;}
  90% {opacity:.15;}
  100%{transform:translateY(-220px) scale(1.4);opacity:0;}
}

/* footer dots */



/* whatsapp icon */
.go-top-area {
  position: relative;
  z-index: 999;
}
.go-top-wrap {
  position: relative;
}
.go-top-area .go-top.active {
  top: 89%;
  -webkit-transform: translateY(-98%);
  -moz-transform: translateY(-98%);
  -ms-transform: translateY(-98%);
  -o-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
  border-radius: 10px;
  right: 20px;
}

.go-top-wrap .go-top-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  top: 3px;
  z-index: 1;
  background: #1c6e48;
  border-radius: 10px;
}
.go-top-area .go-top {
  position: fixed;
  cursor: pointer;
  top: 0;
  right: 24px;
  color: #ffffff;
  background-color: #00c255;
  z-index: 9999;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.9s ease-out 0s;
  -moz-transition: all 0.9s ease-out 0s;
  -ms-transition: all 0.9s ease-out 0s;
  -o-transition: all 0.9s ease-out 0s;
  transition: all 0.9s ease-out 0s;
  border-radius: 10px;
}

.go-top-wrap .go-top-btn:hover {
  background-color: #1d1729;
  color: #fff;
}
.go-top-area .go-top:focus::before,
.go-top-area .go-top:hover::before {
  opacity: 1;
  visibility: visible;
}
.go-top-area .go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #1c6e48;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  border-radius: 10px;
}
.go-top-wrap .go-top-btn::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  /* -webkit-animation: ripple 1.6s ease-out infinite;
  -moz-animation: ripple 1.6s ease-out infinite;
  -o-animation: ripple 1.6s ease-out infinite;
  animation: ripple 1.6s ease-out infinite; */
  opacity: 0;
  background: #00c255;
  border-radius: 10px;
}
@keyframes ripple {
  0%,
  35% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
  }
}
.go-top-area .go-top:focus i:first-child, .go-top-area .go-top:hover i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}
.go-top-wrap .go-top-btn i {
    font-size: 20px;
    font-weight: 700;
    padding-left: 4px;
    color: #fff;
}
.go-top-area .go-top i {
    position: absolute;
    top: 50%;
    left: -4px;
    right: 0;
    margin: 0 auto;
    font-size: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.go-top-area .go-top:focus i:last-child, .go-top-area .go-top:hover i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}
.go-top-area .go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}
.go-top-wrap .go-top-btn i {
    font-size: 20px;
    font-weight: 700;
    padding-left: 4px;
    color: #fff;
}
.go-top-area .go-top i {
    position: absolute;
    top: 50%;
    left: -4px;
    right: 0;
    margin: 0 auto;
    font-size: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.go-top.go-top-btn.active.two {
    top: 82%;
}



.icon2 {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

.wave {
  animation: waveIn 1.2s infinite ease-out;
  transform-origin: 50% 50%;
}

.wave-sm {
  animation-delay: .3s;
}

.wave-md {
  animation-delay: .45s;
}

.wave-lg {
  animation-delay: .6s;
}

@keyframes waveIn {
  from {
    opacity: 0;
    transform: scale(.3) translate(-20px,10px);
  }
  
  50% {
    transform: translate(0,0);
    opacity: 1;
  }
}


/*Banner*/
.youtube-container {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    pointer-events: none;
    margin-top: -213px;
}
.iframe1 {
    width: 100%;
    height: 100%;
    /* margin-top: -500%; */
    /* position: absolute; */
    /* top: -53px; */
}
/*Banner*/

/* COURSES AND PRINCIPAL */
.bk-root{width:100%;overflow:hidden}
.bk-hdr{padding:3rem 2rem 2rem;display:flex;align-items:flex-end;justify-content:space-between;flex-wrap:wrap;gap:1rem}
.bk-hdr-left .bk-eyebrow{font-size:10px;letter-spacing:3px;text-transform:uppercase;color:#c8962a;font-weight:500;margin-bottom:.5rem}
.bk-hdr-left h2{font-size:28px;font-weight:500;color:#1a2a4a;line-height:1.2}
.bk-hdr-left h2 em{font-style:normal;color:#c8962a}
.bk-hdr-right{font-size:12px;color:#6b7a8d;max-width:220px;line-height:1.6;text-align:right}

.bk-ticker-wrap{background:#1a2a4a;overflow:hidden}
.bk-ticker-track{display:flex;width:max-content;animation:bkTick 32s linear infinite}
.bk-ticker-track:hover{animation-play-state:paused}
@keyframes bkTick{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.bk-tick-item{display:flex;align-items:center;gap:8px;padding:10px 28px;border-right:1px solid rgba(232,184,75,0.15);white-space:nowrap;cursor:pointer;transition:background .2s}
.bk-tick-item:hover{background:rgba(200,150,42,0.15)}
.bk-tick-item i{font-size:14px;color:#e8b84b}
.bk-tick-item span{font-size:12px;color:rgba(232,237,245,0.75);font-weight:500;letter-spacing:.3px}
.bk-tick-sep{color:#c8962a;font-size:18px;display:flex;align-items:center;padding:0 6px;opacity:.4}

.bk-slider-section{padding:2rem 0 0}
.bk-scroll-label{padding:0 2rem;font-size:11px;letter-spacing:2px;text-transform:uppercase;color:#6b7a8d;margin-bottom:1.2rem;display:flex;align-items:center;gap:10px}
.bk-scroll-label::after{content:'';flex:1;height:1px;background:rgba(26,42,74,0.1)}

.bk-viewport{overflow:hidden;padding:0 2rem 2rem}
.bk-track{display:flex;gap:20px;transition:transform .6s cubic-bezier(.4,0,.2,1)}

.bk-dcard{flex:0 0 220px;height:310px;border-radius:16px;overflow:hidden;position:relative;cursor:pointer;background:#1a2a4a;flex-shrink:0}
.bk-dcard-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.bk-dcard:hover .bk-dcard-img{transform:scale(1.08)}
.bk-dcard-overlay{position:absolute;inset:0;background:linear-gradient(160deg,transparent 30%,rgba(10,18,36,.88) 70%)}
.bk-dcard-accent{position:absolute;top:0;left:0;width:5px;height:100%;background:#c8962a;transition:width .3s}
.bk-dcard:hover .bk-dcard-accent{width:7px}
.bk-dcard-num{position:absolute;top:14px;right:16px;font-size:42px;font-weight:500;color:rgba(255,255,255,.08);line-height:1;font-family:Georgia,serif}
.bk-dcard-badge{position:absolute;top:14px;left:16px;background:rgba(200,150,42,.2);border:0.5px solid rgba(200,150,42,.5);border-radius:20px;padding:3px 10px;font-size:9px;letter-spacing:1.5px;text-transform:uppercase;color:#e8b84b;font-weight:500}
.bk-dcard-body{position:absolute;bottom:0;left:0;right:0;padding:16px 18px 18px}
.bk-dcard-dept{font-size:10px;color:rgba(232,237,245,.5);letter-spacing:1px;text-transform:uppercase;margin-bottom:5px}
.bk-dcard-title{font-size:14px;font-weight:500;color:#e8edf5;line-height:1.35;margin-bottom:12px}
.bk-dcard-btn{display:inline-flex;align-items:center;gap:5px;font-size:11px;font-weight:500;color:#1a2a4a;background:#c8962a;border-radius:20px;padding:5px 13px;transition:background .2s,transform .2s}
.bk-dcard:hover .bk-dcard-btn{background:#e8b84b;transform:translateX(3px)}
.bk-dcard-btn i{font-size:11px}

.bk-nav-row{display:flex;align-items:center;justify-content:space-between;padding:0 2rem 2.5rem}
.bk-nav-btns{display:flex;gap:8px}
.bk-nbtn{width:38px;height:38px;border-radius:50%;border:1.5px solid rgba(26,42,74,.25);background:transparent;color:#1a2a4a;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s,border-color .2s;font-size:16px}
.bk-nbtn:hover{background:#1a2a4a;border-color:#1a2a4a;color:#e8b84b}
.bk-dots{display:none;gap:7px;align-items:center}
.bk-dot{width:7px;height:7px;border-radius:50%;background:rgba(26,42,74,.18);transition:background .3s,transform .3s;cursor:pointer}
.bk-dot.active{background:#c8962a;transform:scale(1.35)}
.bk-auto-indicator{display:flex;align-items:center;gap:6px;font-size:11px;color:#6b7a8d;cursor:pointer;user-select:none}
.bk-auto-indicator i{font-size:14px}
.bk-auto-indicator:hover{color:#1a2a4a}

.bk-pr-section{background:#1a2a4a;padding:3rem 2rem}
.bk-pr-eyebrow{font-size:11px;letter-spacing:3px;text-transform:uppercase;color:#e8b84b;font-weight:500;margin-bottom:.5rem;text-align:center}
.bk-pr-htitle{font-size:38px;font-weight:500;color:#e8edf5;text-align:center;margin-bottom:2rem}
.bk-pr-htitle span{color:#e8b84b}
.bk-pr-layout{display:grid;grid-template-columns:auto 1fr;gap:2.5rem;align-items:center;max-width:820px;margin:0 auto}
@media(max-width:580px){.bk-pr-layout{grid-template-columns:1fr;text-align:center}.bk-pr-body,.bk-pr-extra{border-left:none;border-top:3px solid #c8962a;padding-left:0;padding-top:12px}}
.bk-pr-photo-col{display:flex;flex-direction:column;align-items:center}
.bk-pr-frame{width: 225px;
    height: 275px;;border-radius:100px 100px 16px 16px;overflow:hidden;border:3px solid #c8962a;background:#0f1e36;flex-shrink:0}
.bk-pr-frame img{width:100%;height:100%;object-fit:cover;object-position:top}
.bk-pr-ribbon{background:#c8962a;color:#1a2a4a;font-size:11px;font-weight:500;padding:6px 16px;border-radius:0 0 8px 8px;text-align:center;line-height:1.4;width:160px}
.bk-pr-qmark{font-size:56px;color:rgba(200,150,42,.25);line-height:.8;margin-bottom:.5rem;font-family:Georgia,serif}
.bk-pr-quote{font-size:16px;font-style:italic;color:#e8b84b;margin-bottom:1rem;font-weight:500;line-height:1.5}
.bk-pr-body{font-size:13.5px;line-height:1.85;color:rgba(232,237,245,.75);border-left:3px solid #c8962a;border-radius:0;padding-left:16px;margin-bottom:.8rem}
.bk-pr-extra{display:none;font-size:13.5px;line-height:1.85;color:rgba(232,237,245,.75);border-left:3px solid rgba(200,150,42,.3);border-radius:0;padding-left:16px;margin:.6rem 0 .8rem}
.bk-pr-extra.open{display:block}
.bk-pr-rm{background:transparent;border:1px solid rgba(200,150,42,.4);color:#e8b84b;font-size:12px;font-weight:500;border-radius:20px;padding:6px 16px;cursor:pointer;display:inline-flex;align-items:center;gap:5px;transition:background .2s,color .2s}
.bk-pr-rm:hover{background:#c8962a;color:#1a2a4a;border-color:#c8962a}
.bk-pr-rm i{font-size:13px;transition:transform .25s}
.bk-pr-rm.open i{transform:rotate(180deg)}
.bk-pr-stats{display:flex;gap:12px;margin-top:1.5rem;flex-wrap:wrap}
.bk-pr-stat{background:rgba(255,255,255,.06);border:0.5px solid rgba(232,184,75,.2);border-radius:10px;padding:10px 16px;text-align:center;flex:1;min-width:55px}
.bk-pr-stat-n{font-size:18px;font-weight:500;color:#e8b84b}
.bk-pr-stat-l{font-size:10px;color:rgba(232,237,245,.45);text-transform:uppercase;letter-spacing:1px;margin-top:2px}
/* COURSES AND PRINCIPAL */


/* Cta */
/* ══════════════════════════════════
     CONTACT / CTA BANNER
  ══════════════════════════════════ */
  #contact-cta {
    background: linear-gradient(rgb(2 2 2 / 30%), rgb(0 0 0 / 89%)), url(../img/bg/11.jpg) fixed center center;
    position: relative; overflow: hidden;
    text-align: center;
    padding: 120px 5%;
  }
  #contact-cta::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 50%, rgba(0, 0, 0, .6) 0%, #00000000 50%), radial-gradient(ellipse at 70% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%)
  }
  .cta-gold-line {
    width: 1px; height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    margin: 0 auto 40px;
  }
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 300; color: var(--white);
    line-height: 1.15; margin-bottom: 20px;
    position: relative; z-index: 1;
  }
  .cta-title em { font-style: italic; color: var(--gold-light); }
  .cta-sub {
    font-size: 14px; color: rgba(255,255,255,0.45);
    max-width: 500px; margin: 0 auto 48px;
    line-height: 1.7; font-weight: 300;
    position: relative; z-index: 1;
  }
  .cta-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    position: relative; z-index: 1;
  }
  .contact-info-row {
    display: flex; gap: 60px; justify-content: center;
    margin-top: 72px; flex-wrap: wrap;
    position: relative; z-index: 1;
    padding-top: 48px;
    border-top: 1px solid rgba(201,168,76,0.1);
  }
  .contact-info-item { text-align: center; }
  .contact-info-icon { font-size: 24px; margin-bottom: 10px; display: block; opacity: 0.7; }
  .contact-info-label {
    font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 6px;
  }
  .contact-info-value { font-size: 14px; color: rgba(255,255,255,0.7); }
.btn-outline {
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: var(--gold-light);
    padding: 14px 36px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    padding: 14px 36px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
/* Cta */

/* wave section */
.wave-top-container {
    width: 100%;
    height: 120px;
    height: 90px;
    overflow: hidden;
    line-height: 0;
}
.wave-top-container svg {
    display: block;
    width: 100%;
    height: 120%;
    /* transform: rotate(180deg); */
}
.wave-top-container.mis svg {
    display: block;
    width: 100%;
    height: 120%;
    transform: rotate(180deg);
}
/* wave section */


/* scroll header */
.top-bar,
.main-header {
  transition: 0.3s ease;
}

.top-bar.scrolled {
  background: #1a2840;
}

.main-header.scrolled {
  background: #172437;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

header.innerpage-header, .top-bar.innerpage-header {
    background: rgb(23, 36, 55);
}
.testimonial__content {
    text-align: center;
    margin-top: 20px !important;
}
.course-btn {
 
    text-decoration: none;
}

@media(max-width:767px){
    header{
        background:#0e1f38;
    }
    .top-bar {
        background: rgb(15 31 55);
    }
    .youtube-container {
       
        margin-top: 0px;
    }
}


/*========================= OLD CSS ===========================*/

/*========================= OLD CSS ===========================*/