/* -----------------------------------------------
   DESIGN TOKENS
----------------------------------------------- */
:root {
  /* Brand */
  --purple:      #2c166c;
  --purple-d:    #1a0a4a;
  --purple-m:    #3d2090;
  --purple-l:    #4a2aaa;
  --red:         #db261c;
  --red-d:       #b51e15;
  --red-l:       #ff3b30;
  /* Secondary / accent */
  --amber:       #f5a623;
  --amber-d:     #d4891a;
  --lavender:    #f0ecff;
  --lavender-m:  #e0d8ff;
  --sky:         #e8f4ff;
  /* Neutrals */
  --white:       #ffffff;
  --off-white:   #f9f7ff;
  --text:        #1a1028;
  --muted:       #6b6880;
  --border:      rgba(44,22,108,0.12);
  --border-red:  rgba(219,38,28,0.2);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

/* -----------------------------------------------
   TOP BAR
----------------------------------------------- */
.top-bar {
  background: var(--purple-d);
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 40px; font-size: 11.5px; color: rgba(255,255,255,0.62);
  flex-wrap: wrap; gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s; }
.top-bar a:hover { color: var(--amber); }
.top-bar-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: flex-end; }
.top-bar-right .top-bar-sep {
  width: 1px; height: 12px; background: rgba(255,255,255,0.18); display: inline-block;
}

/* -----------------------------------------------
   NAVBAR  (white header, red top rule, hamburger menu)
----------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: 0 2px 10px rgba(44,22,108,0.08);
}
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto;
  padding: 0 40px; min-height: 68px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 1; min-width: 0; }
.logo img { height: 38px; width: auto; max-width: 100%; object-fit: contain; }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; min-width: 0; }
.header-search {
  display: flex; align-items: center; gap: 8px;
  min-width: 0; width: min(340px, 38vw); max-width: 340px; flex: 1 1 auto;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 8px 6px 14px;
}
.header-search svg { color: var(--muted); flex-shrink: 0; }
.header-search input {
  flex: 1; min-width: 0; border: none; outline: none;
  background: transparent; color: var(--text);
  font-size: 13px; font-family: 'Inter', sans-serif;
}
.header-search input::placeholder { color: var(--muted); }
.header-search button {
  border: none; cursor: pointer; flex-shrink: 0;
  background: var(--red); color: var(--white);
  border-radius: 999px; padding: 8px 14px;
  font-size: 12px; font-weight: 700; font-family: 'Inter', sans-serif;
  transition: background 0.2s ease, transform 0.2s ease;
}
.header-search button:hover { background: var(--red-d); transform: translateY(-1px); }
.logo-fallback { display: flex; align-items: center; gap: 10px; min-width: 0; }
.logo-mark {
  width: 38px; height: 38px; background: var(--white);
  border: 2px solid var(--red); border-radius: 8px; display: grid; place-items: center;
  font-family: 'Playfair Display', serif; font-weight: 900; font-size: 15px; color: var(--purple);
  letter-spacing: -0.5px; flex-shrink: 0;
}
.logo-text { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; min-width: 0; }
.logo-text strong { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 900; color: var(--purple); letter-spacing: -0.02em; }
.logo-text span { font-size: 14.5px; font-weight: 700; color: var(--purple); overflow-wrap: anywhere; }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; color: var(--purple); cursor: pointer; transition: all 0.2s;
}
.menu-toggle:hover { background: var(--lavender); border-color: var(--purple-l); }

/* Slide-out nav panel */
.nav-panel {
  position: fixed; top: 0; right: 0; z-index: 1100;
  width: min(320px, 88vw); height: 100vh;
  background: var(--white);
  box-shadow: -16px 0 40px rgba(20,10,50,0.18);
  padding: 26px 24px;
  transform: translateX(100%); transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; gap: 4px; overflow-y: auto;
}
.nav-panel.open { transform: translateX(0); }
.nav-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.nav-panel-head strong { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--purple); }
.menu-close {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--off-white); border: 1px solid var(--border); border-radius: 8px;
  color: var(--purple); cursor: pointer; transition: all 0.2s;
}
.menu-close:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.nav-panel nav { display: flex; flex-direction: column; gap: 2px; }
.nav-panel nav a {
  color: var(--text); text-decoration: none; padding: 12px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 600; transition: all 0.2s;
}
.nav-panel nav a:hover, .nav-panel nav a.active { background: var(--lavender); color: var(--purple); }
.nav-menu,
.nav-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-menu > .nav-item + .nav-item {
  margin-top: 4px;
}
.nav-menu a,
.nav-submenu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(44,22,108,0.08);
  background: #fff;
  color: #2c166c;
  text-decoration: none;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.nav-menu a:hover,
.nav-menu a.active,
.nav-submenu-toggle:hover,
.nav-item.is-open > .nav-submenu-toggle {
  background: #f6f1ff;
  border-color: rgba(44,22,108,0.16);
  color: #1c0c57;
}
.nav-submenu-toggle {
  appearance: none;
}
.nav-submenu-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-caret {
  flex-shrink: 0;
  font-size: 13px;
  color: #6d5b9f;
  transition: transform 0.2s ease;
}
.nav-item.is-open > .nav-submenu-toggle .nav-caret {
  transform: rotate(180deg);
}
.nav-submenu {
  display: none;
  margin-top: 8px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 2px solid rgba(44,22,108,0.1);
}
.nav-item.is-open > .nav-submenu {
  display: block;
}
.nav-submenu li + li {
  margin-top: 6px;
}
.nav-submenu a {
  padding: 10px 12px;
  font-weight: 500;
  font-size: 14px;
}
.nav-panel .nav-cta {
  margin: 14px 14px 0; text-align: center; padding: 12px 16px;
}
.nav-panel .search-btn { margin: 10px 14px 0; justify-content: center; }
.nav-scrim {
  position: fixed; inset: 0; z-index: 1050;
  background: rgba(20,10,50,0.42);
  opacity: 0; visibility: hidden; transition: opacity 0.28s ease, visibility 0.28s ease;
}
.nav-scrim.open { opacity: 1; visibility: visible; }

.nav-cta {
  background: var(--red) !important; color: var(--white) !important; font-weight: 700 !important;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(219,38,28,0.4);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 14px;
}
.nav-cta:hover { background: var(--red-d) !important; transform: translateY(-1px); box-shadow: 0 5px 16px rgba(219,38,28,0.5) !important; }
.search-btn {
  background: var(--off-white); border: 1px solid var(--border);
  color: var(--purple); padding: 9px 14px; border-radius: 6px;
  cursor: pointer; font-size: 12.5px; display: flex; align-items: center; gap: 6px; font-family: 'Inter', sans-serif;
  font-weight: 600; transition: all 0.2s;
}
.search-btn:hover { background: var(--lavender); border-color: var(--purple-l); }

/* -----------------------------------------------
   TICKER (fade in/out, no horizontal scroll)
----------------------------------------------- */
.ticker-bar {
  background: var(--red); padding: 10px 0 11px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-direction: row; gap: 14px;
}
.ticker-label {
  background: var(--purple-d); color: var(--white); font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 18px;
  white-space: nowrap; flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px;
  border-radius: 999px;
}
.ticker-dot { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.ticker-track { overflow: hidden; flex: 0 1 auto; width: min(980px, calc(100% - 190px)); max-width: 980px; position: relative; height: 20px; }
.ticker-inner { position: relative; width: 100%; height: 100%; }
.ticker-inner span {
  position: absolute; top: 0; left: 0; right: 0;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.92);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-align: center; padding: 0 16px;
  opacity: 0; visibility: hidden;
  animation: tickerFade 45s linear infinite;
}
.ticker-inner span strong { color: var(--white); font-weight: 800; }
.ticker-inner span:nth-child(1) { animation-delay: 0s; }
.ticker-inner span:nth-child(2) { animation-delay: 5s; }
.ticker-inner span:nth-child(3) { animation-delay: 10s; }
.ticker-inner span:nth-child(4) { animation-delay: 15s; }
.ticker-inner span:nth-child(5) { animation-delay: 20s; }
.ticker-inner span:nth-child(6) { animation-delay: 25s; }
.ticker-inner span:nth-child(7) { animation-delay: 30s; }
.ticker-inner span:nth-child(8) { animation-delay: 35s; }
.ticker-inner span:nth-child(9) { animation-delay: 40s; }
@keyframes tickerFade {
  0%      { opacity: 0; visibility: visible; transform: translateY(4px); }
  3%      { opacity: 1; transform: translateY(0); }
  10%     { opacity: 1; transform: translateY(0); }
  11%     { opacity: 0; visibility: visible; transform: translateY(-4px); }
  11.01%  { visibility: hidden; }
  100%    { visibility: hidden; }
}
.ticker-bar.paused .ticker-inner span { animation-play-state: paused; }

/* -----------------------------------------------
   HERO SLIDER
----------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--purple-d);
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 1920 / 620;
  padding: 0;
}
.slides { display: flex; height: 100%; transition: transform 0.75s cubic-bezier(.4,0,.2,1); will-change: transform; }
.slide { min-width: 100%; height: 100%; position: relative; flex-shrink: 0; overflow: hidden; background: var(--purple-d); }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 10, 48, 0.08) 0%, rgba(18, 10, 48, 0.18) 44%, rgba(18, 10, 48, 0.62) 100%);
  pointer-events: none;
}
.slide-heading {
  position: absolute; left: 28px; bottom: 28px; z-index: 3;
  max-width: min(680px, calc(100% - 132px));
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px); line-height: 1.25;
  color: var(--white); margin: 0;
  padding: 10px 16px;
  background: rgba(18, 10, 48, 0.28);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  text-shadow: 0 2px 14px rgba(0,0,0,0.32);
  white-space: normal; overflow: hidden;
}
.slide-heading em { font-style: normal; color: var(--amber); }
.btn-red {
  background: var(--red); color: var(--white); font-weight: 700; font-size: 14px;
  padding: 13px 28px; border-radius: 8px; text-decoration: none;
  transition: all 0.22s; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(219,38,28,0.45);
}
.btn-red:hover { background: var(--red-d); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(219,38,28,0.55); }
.btn-ghost {
  background: transparent; color: var(--white); font-weight: 600; font-size: 14px;
  padding: 12px 26px; border-radius: 8px; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3); transition: all 0.22s; cursor: pointer;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); background: rgba(245,166,35,0.08); }

/* Slider nav */
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: all 0.2s; font-size: 18px;
}
.slider-prev { left: 22px; } .slider-next { right: 22px; }
.slider-prev:hover, .slider-next:hover { background: var(--red); border-color: var(--red); }
.slider-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; transition: all 0.3s; border: none; }
.dot.active { background: var(--amber); width: 26px; border-radius: 4px; }

/* -- Notice board (About section, right side) -- */
.about-notice-panel {
  background: linear-gradient(135deg, rgba(58,18,18,0.98) 0%, rgba(24,12,12,0.96) 100%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(219,38,28,0.18);
  box-shadow: 0 24px 64px rgba(0,0,0,0.26);
}
.about-notice-head {
  background: linear-gradient(135deg, rgba(219,38,28,0.96) 0%, rgba(181,30,21,0.94) 100%);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 22px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-notice-head svg { flex-shrink: 0; width: 22px; height: 22px; }
.about-notice-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.5) rgba(255,255,255,0.08);
}
.about-notice-list::-webkit-scrollbar {
  width: 10px;
}
.about-notice-list::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}
.about-notice-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.45);
  border-radius: 999px;
  border: 2px solid rgba(24,12,12,0.96);
}
.about-notice-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.62);
}
.about-notice-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.92);
}
.about-notice-badge {
  flex-shrink: 0;
  background: rgba(255,255,255,0.94);
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  margin-top: 3px;
}
.about-notice-body strong {
  display: block;
  color: var(--amber);
  font-size: 15px;
  margin-bottom: 6px;
}
.about-notice-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
}

.reach-panel {
  background: linear-gradient(135deg, rgba(44,22,108,0.96) 0%, rgba(26,10,74,0.96) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 26px 70px rgba(44,22,108,0.22);
}
.reach-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 20px;
  padding: 18px 22px 0;
  color: rgba(255,255,255,0.96);
}
.reach-list { display: grid; gap: 12px; padding: 22px; }
.reach-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.reach-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.9);
}
.reach-text strong { display: block; font-size: 14px; font-weight: 900; color: rgba(255,255,255,0.92); }
.reach-text span { display: block; font-size: 12.5px; color: rgba(255,255,255,0.62); margin-top: 2px; overflow-wrap: anywhere; }
.reach-panel a { color: rgba(255,255,255,0.78); text-decoration: none; }
.reach-panel a:hover { color: var(--amber); }
.reach-socials { display: flex; gap: 10px; padding: 0 22px 22px; }
.reach-panel .social-btn {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.8);
}
.reach-panel .social-btn:hover { background: var(--amber); color: var(--purple-d); border-color: var(--amber); }

/* -----------------------------------------------
   STATS BAR
----------------------------------------------- */
.stats-bar {
  background: var(--purple); display: flex; align-items: stretch; justify-content: center;
  border-bottom: 4px solid var(--red);
}
.stat-item { padding: 24px 52px; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); flex: 1; max-width: 230px; }
.stat-item:last-child { border-right: none; }
.stat-item strong { display: block; font-size: 30px; font-weight: 800; color: var(--amber); line-height: 1; margin-bottom: 4px; }
.stat-item span { font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

/* -----------------------------------------------
   SHARED SECTION STYLES
----------------------------------------------- */
section { padding: 88px 0; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 44px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--red); border-radius: 2px; }
.section-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(26px, 3vw, 40px); line-height: 1.18; color: var(--purple); margin-bottom: 18px;
}
.section-title em { font-style: normal; color: var(--red); }
.section-title.on-dark { color: var(--white); }
.section-sub { color: var(--muted); font-size: 15.5px; line-height: 1.75; max-width: 620px; }
.section-sub.on-dark { color: rgba(255,255,255,0.62); }
.section-head-center { text-align: center; }
.section-head-center .section-eyebrow { justify-content: center; }
.section-head-center .section-sub { margin: 0 auto; }

/* -----------------------------------------------
   ABOUT SECTION  (moved up in page order)
----------------------------------------------- */
.about-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ff 100%);
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(44,22,108,0.14) 0%, transparent 70%);
}
.about-section::after {
  content: '';
  position: absolute;
  bottom: -140px;
  left: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(219,38,28,0.12) 0%, transparent 70%);
}
.about-shell {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94) 0%, rgba(245,240,255,0.88) 100%);
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(44,22,108,0.14);
  padding: 38px;
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.about-shell::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--amber) 45%, var(--purple-l) 100%);
}
.about-shell::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(44,22,108,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); gap: 34px; align-items: start; }
.about-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 8px;
}
.about-lead {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  max-width: 680px;
}
.about-body { color: var(--muted); font-size: 14.5px; line-height: 1.85; margin-bottom: 0; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 2px;
}
.about-stat {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(44,22,108,0.96) 0%, rgba(61,32,144,0.92) 100%);
  color: var(--white);
  box-shadow: 0 18px 46px rgba(44,22,108,0.2);
}
.about-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.about-img-block {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: auto;
}
.about-main-img {
  width: 100%; border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(44,22,108,0.16);
  border: 1px solid rgba(44,22,108,0.12);
  flex: 0 0 auto;
  min-height: 710px;
}
.about-main-img img { width: 120%; height: 710px; object-fit: cover; display: block; }
.about-caption-card {
  background: linear-gradient(135deg, rgba(219,38,28,0.98) 0%, rgba(181,30,21,0.94) 58%, rgba(128,20,16,0.94) 100%);
  color: var(--white);
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 0 20px 44px rgba(219,38,28,0.26);
  position: relative;
  overflow: hidden;
}
.about-caption-card::after {
  content: '';
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 72%);
}
.about-caption-card strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.about-caption-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
}
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 2px 0 0; }
.pillar {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(244,240,255,0.82) 100%);
  border: 1px solid rgba(44,22,108,0.08);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 24px rgba(44,22,108,0.06);
}
.pillar h4 { font-size: 13px; font-weight: 800; color: var(--purple); margin-bottom: 6px; }
.pillar p { font-size: 12.5px; color: var(--muted); line-height: 1.65; }
.about-vision {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(240,236,255,0.8) 100%);
  border: 1px solid rgba(44,22,108,0.1);
  border-radius: 22px;
  padding: 24px 26px 22px;
  margin-top: 28px;
  box-shadow: 0 12px 28px rgba(44,22,108,0.06);
}
.about-vision h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--purple); margin-bottom: 10px; }
.about-vision p { color: var(--muted); font-size: 14px; line-height: 1.8; }

/* -----------------------------------------------
   LEADERSHIP
----------------------------------------------- */
.leadership-section {
  background:
    radial-gradient(circle at top right, rgba(245,166,35,0.16) 0%, transparent 28%),
    linear-gradient(180deg, #fcfbff 0%, #f1edff 54%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.leadership-section::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -140px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(44,22,108,0.14) 0%, transparent 68%);
}
.leadership-section::after {
  content: '';
  position: absolute;
  right: -140px;
  bottom: -220px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(219,38,28,0.12) 0%, transparent 72%);
}
.leadership-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 30px;
  align-items: stretch;
  margin-bottom: 42px;
}
.leadership-copy {
  padding: 34px 36px;
  border-radius: 28px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(44,22,108,0.12);
  box-shadow: 0 24px 60px rgba(44,22,108,0.12);
  backdrop-filter: blur(10px);
}
.leadership-copy .section-sub {
  max-width: 720px;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.85;
}
.leadership-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.leadership-highlight {
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(44,22,108,0.96) 0%, rgba(61,32,144,0.94) 100%);
  color: var(--white);
  box-shadow: 0 22px 54px rgba(44,22,108,0.22);
  position: relative;
  overflow: hidden;
}
.leadership-highlight::after {
  content: '';
  position: absolute;
  inset: auto -20px -30px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, transparent 70%);
}
.leadership-highlight strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}
.leadership-highlight span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 10px;
}
.leadership-highlight p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.84);
}
.leadership-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.leader-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(244,240,255,0.86) 100%);
  border-radius: 28px; overflow: hidden;
  border: 1px solid rgba(44,22,108,0.12);
  box-shadow: 0 24px 60px rgba(44,22,108,0.14);
  transition: all 0.3s; display: flex; flex-direction: column;
  position: relative;
}
.leader-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0%, var(--amber) 55%, var(--purple-l) 100%);
}
.leader-card:hover { transform: translateY(-8px); box-shadow: 0 28px 68px rgba(44,22,108,0.18); border-color: rgba(61,32,144,0.35); }
.leader-card-top {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}
.leader-img-wrap { min-height: 290px; overflow: hidden; position: relative; }
.leader-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.55s; }
.leader-card:hover .leader-img-wrap img { transform: scale(1.04); }
.leader-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,10,74,0.06) 0%, rgba(26,10,74,0.38) 100%);
  pointer-events: none;
}
.leader-role {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-d) 100%);
  color: var(--white); font-size: 10px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 13px; border-radius: 999px;
  box-shadow: 0 10px 28px rgba(219,38,28,0.24);
}
.leader-role::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.9); }
.leader-meta {
  padding: 34px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,244,255,0.9) 100%);
}
.leader-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 30px; color: var(--purple); margin: 18px 0 10px; line-height: 1.08; }
.leader-tagline {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--red);
  text-transform: uppercase;
}
.leader-body {
  padding: 0 28px 26px;
  background: transparent;
}
.leader-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  padding-top: 18px;
  border-top: 1px solid rgba(44,22,108,0.1);
}
.leader-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.leader-points span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(44,22,108,0.07);
  border: 1px solid rgba(44,22,108,0.1);
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
}

/* -----------------------------------------------
   EVENTS
----------------------------------------------- */
.events-section { background: var(--off-white); }
.events-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.event-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(44,22,108,0.07);
  transition: all 0.3s; border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.event-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(44,22,108,0.14); border-color: var(--purple-l); }
.event-thumb { height: 210px; overflow: hidden; position: relative; flex-shrink: 0; }
.event-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.event-card:hover .event-thumb img { transform: scale(1.06); }
.event-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,22,108,0.7) 0%, transparent 55%);
}
.event-tag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--red); color: var(--white); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 11px; border-radius: 20px;
}
.event-tag.done { background: var(--amber); color: var(--purple-d); }
.event-tag.upcoming { background: var(--purple); color: var(--white); }
.event-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.event-location { display: flex; align-items: center; gap: 6px; color: var(--purple-m); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.event-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; color: var(--purple); margin-bottom: 10px; line-height: 1.3; }
.event-meta { display: flex; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.event-meta span { font-size: 12.5px; color: var(--muted); }
.event-desc { font-size: 13.5px; color: var(--muted); line-height: 1.68; flex: 1; margin-bottom: 18px; }
.event-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(44,22,108,0.08); padding-top: 16px; }
.event-venue { font-size: 12px; color: var(--muted); }
.event-venue strong { color: var(--text); font-size: 12.5px; display: block; }
.event-link { font-size: 13px; font-weight: 700; color: var(--red); text-decoration: none; transition: color 0.2s; }
.event-link:hover { color: var(--red-d); }

/* -- Fair Tabs (within Events section) -- */
.fair-tabs-intro {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-m) 100%);
  border-radius: 18px; padding: 36px 40px; margin-bottom: 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.fair-tabs-intro::before {
  content: ''; position: absolute; top: -40%; right: -8%; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, transparent 70%);
}
.fair-tabs-intro-text { position: relative; z-index: 1; max-width: 620px; }
.fair-tabs-intro-text h3 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 22px; color: var(--white); margin-bottom: 8px; }
.fair-tabs-intro-text p { font-size: 13.5px; color: rgba(255,255,255,0.68); line-height: 1.65; }
.fair-tabs-intro-stats { display: flex; gap: 28px; position: relative; z-index: 1; flex-shrink: 0; }
.fair-tabs-intro-stats div { text-align: center; }
.fair-tabs-intro-stats strong { display: block; font-size: 24px; font-weight: 800; color: var(--amber); line-height: 1; margin-bottom: 4px; }
.fair-tabs-intro-stats span { font-size: 10.5px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; }

.fair-tablist {
  display: flex; gap: 8px; flex-wrap: nowrap;
  border-bottom: 2px solid var(--border); margin-bottom: 32px; padding: 0 0 10px;
  overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth;
  scrollbar-width: thin; scrollbar-color: rgba(44,22,108,0.28) transparent;
  -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity;
  cursor: grab; touch-action: pan-x;
}
.fair-tablist.dragging { cursor: grabbing; scroll-behavior: auto; }
.fair-tablist::-webkit-scrollbar { height: 6px; }
.fair-tablist::-webkit-scrollbar-thumb { background: rgba(44,22,108,0.22); border-radius: 999px; }
.fair-tablist::-webkit-scrollbar-track { background: transparent; }
.fair-tab {
  background: transparent; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 600; color: var(--muted);
  padding: 13px 20px; border-radius: 8px 8px 0 0; position: relative;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
  flex: 0 0 auto; scroll-snap-align: start;
}
.fair-tab:hover { color: var(--purple); background: var(--lavender); }
.fair-tab.active { color: var(--purple); background: var(--lavender); }
.fair-tab.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--red);
  border-radius: 2px;
}
.fair-tab .fair-tab-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 7px;
  background: var(--amber); vertical-align: middle;
}
.fair-tab.is-upcoming .fair-tab-dot { background: var(--red); animation: blink 1.4s infinite; }

.fair-panel { display: none; }
.fair-panel.active { display: block; animation: fairFadeIn 0.4s ease; }
@keyframes fairFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.fair-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.fair-video-col { position: relative; }
.fair-video-frame {
  position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden;
  background: var(--purple-d); box-shadow: 0 10px 30px rgba(44,22,108,0.18);
}
.fair-video-frame video, .fair-video-frame iframe { width: 100%; height: 100%; border: none; display: block; object-fit: cover; }
.fair-video-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 24px; text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(44,22,108,0.96) 0%, rgba(88,52,177,0.92) 100%);
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.fair-video-placeholder-button {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  border: none;
  cursor: pointer;
  text-align: inherit;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.fair-video-placeholder-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,6,28,0.18) 0%, rgba(10,6,28,0.52) 55%, rgba(10,6,28,0.78) 100%);
  z-index: 0;
}
.fair-video-placeholder-button::before {
  content: '\25B6';
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.24);
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  position: relative;
  z-index: 1;
}
.fair-video-placeholder-button:hover,
.fair-video-placeholder-button:focus-visible {
  transform: scale(1.01);
  filter: brightness(1.04);
}
.fair-video-placeholder-button:hover::before,
.fair-video-placeholder-button:focus-visible::before {
  background: rgba(255,255,255,0.26);
  transform: scale(1.04);
}
.fair-video-play-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.fair-video-placeholder strong {
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.fair-video-placeholder p {
  margin: 0;
  max-width: 420px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.28);
}
.fair-video-caption { margin-top: 14px; font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.fair-video-caption strong { color: var(--purple); }

.fair-photo-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 150px;
  gap: 12px;
  max-height: 520px;
  overflow-y: auto;
  align-content: start;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(44,22,108,0.28) transparent;
}
.fair-photo-col::-webkit-scrollbar {
  width: 8px;
}
.fair-photo-col::-webkit-scrollbar-thumb {
  background: rgba(44,22,108,0.22);
  border-radius: 999px;
}
.fair-photo-col::-webkit-scrollbar-track {
  background: transparent;
}
.fair-photo-col .photo-tall { grid-row: span 2; }
.fair-photo {
  border-radius: 12px; overflow: hidden; position: relative;
  box-shadow: 0 4px 16px rgba(44,22,108,0.1); background: var(--lavender);
  height: 100%;
}
.fair-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.fair-photo:hover img { transform: scale(1.06); }
.fair-photo.photo-tall { min-height: auto; }
.fair-photo:not(.photo-tall) { aspect-ratio: 4/3; }
.fair-photo-trigger {
  display: block; width: 100%; height: 100%;
  padding: 0; border: none; background: transparent; cursor: zoom-in;
}
.fair-photo-trigger img { pointer-events: none; }
.fair-photo-overlay {
  position: absolute; right: 12px; bottom: 12px;
  padding: 7px 11px; border-radius: 999px;
  background: rgba(10,6,28,0.72); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.fair-photo:hover .fair-photo-overlay,
.fair-photo:focus-within .fair-photo-overlay {
  opacity: 1;
  transform: translateY(0);
}
.fair-gallery-empty {
  grid-column: 1 / -1;
  border-radius: 14px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(240,236,255,0.95) 0%, rgba(255,255,255,0.95) 100%);
  border: 1px dashed rgba(44,22,108,0.16);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.fair-lightbox {
  position: fixed; inset: 0; z-index: 1200;
  display: flex; align-items: center; justify-content: center;
  padding: 28px; background: rgba(10, 6, 28, 0.84);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}
.fair-lightbox.open { opacity: 1; visibility: visible; pointer-events: auto; }
.fair-lightbox-dialog {
  position: relative;
  width: min(92vw, 1080px);
  max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.fair-lightbox img {
  display: block; width: auto; max-width: 100%; max-height: 88vh;
  border-radius: 18px; box-shadow: 0 28px 80px rgba(0,0,0,0.45);
}
.fair-lightbox-close {
  position: absolute; top: -16px; right: -16px;
  width: 42px; height: 42px; border: none; border-radius: 50%;
  background: rgba(255,255,255,0.96); color: var(--purple);
  font-size: 26px; line-height: 1; cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,0.24);
}
.fair-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  color: var(--purple);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}
.fair-lightbox-nav:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.04);
}
.fair-lightbox-prev { left: -24px; }
.fair-lightbox-next { right: -24px; }
.fair-lightbox-caption {
  position: absolute; left: 50%; bottom: -48px; transform: translateX(-50%);
  min-width: min(80vw, 320px);
  text-align: center; color: var(--white); font-size: 14px; line-height: 1.5;
}

.fair-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(10, 6, 28, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}
.fair-video-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.fair-video-modal-dialog {
  position: relative;
  width: min(92vw, 1080px);
}
.fair-video-modal-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 28px 80px rgba(0,0,0,0.45);
}
.fair-video-modal-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: var(--purple);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,0.24);
}
.fair-video-modal-caption {
  margin-top: 16px;
  text-align: center;
  color: var(--white);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .fair-panel-grid { grid-template-columns: 1fr; gap: 24px; }
  .fair-tabs-intro { padding: 28px 24px; }
  .fair-tabs-intro-stats { width: 100%; justify-content: space-between; }
  .fair-photo-col { max-height: none; overflow: visible; padding-right: 0; }
}
@media (max-width: 640px) {
  .fair-tablist { gap: 4px; }
  .fair-tab { padding: 11px 14px; font-size: 12.5px; }
  .fair-photo-col { grid-template-columns: 1fr 1fr; }
  .fair-lightbox { padding: 18px; }
  .fair-lightbox-dialog { width: 100%; }
  .fair-lightbox-close { top: -12px; right: -4px; width: 38px; height: 38px; }
  .fair-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .fair-lightbox-prev { left: -4px; }
  .fair-lightbox-next { right: -4px; }
  .fair-lightbox-caption { bottom: -42px; font-size: 13px; }
  .fair-video-modal { padding: 18px; }
  .fair-video-modal-dialog { width: 100%; }
  .fair-video-modal-close { top: -12px; right: -4px; width: 38px; height: 38px; }
}

/* -----------------------------------------------
   MEDIA COVERAGE
----------------------------------------------- */
.media-section { background: var(--white); }
.media-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; flex-wrap: wrap; gap: 20px; }
.media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.media-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 2px 14px rgba(44,22,108,0.06);
  transition: all 0.28s; cursor: pointer;
}
.media-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 14px 40px rgba(44,22,108,0.14); border-color: var(--purple-l); }
.media-img {
  height: 175px;
  overflow: hidden;
  position: relative;
  border: none;
  padding: 0;
  width: 100%;
  background: transparent;
  display: block;
  cursor: pointer;
}
.media-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s; display: block; }
.media-card:hover .media-img img { transform: scale(1.07); }
.gallery-card-overlay {
  position: absolute;
  inset: auto 12px 12px 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(44,22,108,0.82);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.media-card:hover .gallery-card-overlay,
.gallery-collection-trigger:focus-visible .gallery-card-overlay {
  opacity: 1;
  transform: translateY(0);
}
.media-body { padding: 14px 16px 16px; }
.media-source { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 5px; }
.media-caption { font-size: 12.5px; font-weight: 500; color: var(--text); line-height: 1.5; }
.dl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple); color: var(--white); font-size: 13px; font-weight: 600;
  padding: 11px 22px; border-radius: 8px; text-decoration: none; transition: all 0.2s;
  box-shadow: 0 3px 14px rgba(44,22,108,0.3);
}
.dl-btn:hover { background: var(--red); box-shadow: 0 5px 20px rgba(219,38,28,0.4); }

/* -----------------------------------------------
   ENQUIRY + CTA SPLIT
----------------------------------------------- */
.enquiry-section { background: var(--purple); }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.enquiry-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 18px; }
.enquiry-left h2 em { font-style: normal; color: var(--amber); }
.enquiry-left p { color: rgba(255,255,255,0.62); font-size: 15px; line-height: 1.78; margin-bottom: 32px; }
.enquiry-features { display: flex; flex-direction: column; gap: 14px; }
.eq-feat { display: flex; align-items: flex-start; gap: 14px; }
.eq-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 16px;
}
.eq-icon.red { background: rgba(219,38,28,0.18); border: 1px solid rgba(219,38,28,0.3); }
.eq-icon.amber { background: rgba(245,166,35,0.18); border: 1px solid rgba(245,166,35,0.3); }
.eq-icon.purple { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); }
.eq-feat-text h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.eq-feat-text p { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.5; }

.enquiry-card {
  background: var(--white); border-radius: 20px; padding: 40px 38px;
  box-shadow: 0 28px 72px rgba(0,0,0,0.3);
}
.enquiry-card h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--purple); margin-bottom: 6px; }
.enquiry-card > p { font-size: 13.5px; color: var(--muted); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-label { font-size: 11.5px; font-weight: 600; color: var(--purple); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; display: block; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid rgba(44,22,108,0.14); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text);
  outline: none; transition: all 0.2s; resize: none;
  background: var(--lavender);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--purple); background: var(--white);
  box-shadow: 0 0 0 3px rgba(44,22,108,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #aaa8c0; }
.input-error {
  border-color: var(--red) !important;
  background: rgba(219,38,28,0.04) !important;
  box-shadow: 0 0 0 3px rgba(219,38,28,0.12) !important;
}
.field-error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
}
.contact-response {
  display: none;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.6;
}
.contact-response.success {
  display: block;
  background: rgba(14, 159, 110, 0.12);
  color: #0f7a56;
  border: 1px solid rgba(14, 159, 110, 0.2);
}
.contact-response.error {
  display: block;
  background: rgba(219,38,28,0.08);
  color: #b51d17;
  border: 1px solid rgba(219,38,28,0.18);
}
.captcha-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}
.captcha-box img {
  width: 110px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(44,22,108,0.14);
  background: var(--white);
}
.captcha-refresh {
  border: 1px solid rgba(44,22,108,0.14);
  background: var(--white);
  color: var(--purple);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.captcha-refresh:hover {
  border-color: var(--purple);
  color: var(--purple-d);
}
.form-submit {
  width: 100%; background: var(--red); color: var(--white); font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 15px; padding: 15px; border: none;
  border-radius: 10px; cursor: pointer; transition: all 0.22s;
  box-shadow: 0 4px 18px rgba(219,38,28,0.35); margin-top: 8px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover { background: var(--red-d); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(219,38,28,0.45); }
.submit-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  display: none;
  flex-shrink: 0;
  animation: contactSpin 0.8s linear infinite;
}
.form-submit.is-loading .submit-spinner {
  display: inline-block;
}
.form-submit.is-loading .submit-label {
  transform: translateY(0);
}
.form-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
  box-shadow: 0 4px 18px rgba(219,38,28,0.2);
}

@keyframes contactSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* -----------------------------------------------
   FOOTER
----------------------------------------------- */
footer { background: var(--purple-d); color: rgba(255,255,255,0.6); }
.footer-accent-bar { height: 4px; background: linear-gradient(to right, var(--red) 0%, var(--amber) 50%, var(--purple-l) 100%); }
.footer-top { padding: 70px 0 50px; display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-top > * { min-width: 0; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; min-width: 0; max-width: 100%; }
.footer-logo img { height: 40px; width: auto; max-width: 100%; filter: brightness(0) invert(1); opacity: 0.9; object-fit: contain; }
.footer-logo-fallback { display: flex; align-items: center; gap: 10px; min-width: 0; max-width: 100%; }
.footer-logo-mark { width: 40px; height: 40px; background: var(--red); border-radius: 9px; display: grid; place-items: center; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 14px; color: var(--white); }
.footer-logo-text strong { font-size: 14px; font-weight: 700; color: var(--white); display: block; }
.footer-logo-text span { font-size: 9.5px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; }
.footer-brand, .footer-col, .footer-contact { min-width: 0; }
.footer-brand > p { font-size: 13.5px; line-height: 1.78; margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 9px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center; text-decoration: none; color: rgba(255,255,255,0.55);
  font-size: 12px; font-weight: 700; transition: all 0.2s;
}
.social-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.footer-col h4 { font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col a { display: block; color: rgba(255,255,255,0.52); text-decoration: none; font-size: 13.5px; margin-bottom: 10px; transition: color 0.2s; padding-left: 0; overflow-wrap: anywhere; }
.footer-col a:hover { color: var(--amber); padding-left: 4px; }
.footer-contact { min-width: 0; }
.footer-contact p { font-size: 13px; line-height: 1.72; margin-bottom: 8px; }
.footer-contact a { color: var(--amber); text-decoration: none; overflow-wrap: anywhere; }
.footer-contact a:hover { color: var(--red-l); }
.newsletter-form { display: flex; gap: 8px; margin-top: 16px; width: 100%; max-width: 100%; min-width: 0; }
.newsletter-form input {
  flex: 1; min-width: 0; width: 100%; padding: 10px 14px; border-radius: 7px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07); color: var(--white); font-family: 'Inter', sans-serif; font-size: 13px; outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: var(--amber); }
.newsletter-form button {
  background: var(--red); color: var(--white); font-family: 'Inter', sans-serif; font-weight: 700; font-size: 12.5px;
  padding: 10px 16px; border: none; border-radius: 7px; cursor: pointer; transition: all 0.2s; white-space: normal;
}
.newsletter-form button:hover { background: var(--amber); color: var(--purple-d); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12.5px; max-width: 100%; overflow-wrap: anywhere; }
.footer-bottom span { color: var(--amber); }

/* -----------------------------------------------
   SCROLL REVEAL
----------------------------------------------- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: none; }

.page-banner {
  padding: 54px 0;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(245,166,35,0.18) 0%, transparent 42%),
    radial-gradient(circle at 86% 20%, rgba(219,38,28,0.18) 0%, transparent 44%),
    linear-gradient(135deg, rgba(44,22,108,0.82) 0%, rgba(26,10,74,0.9) 100%);
  background-size: auto, auto, auto;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-banner {
  background-image:
    radial-gradient(circle at 18% 20%, rgba(245,166,35,0.18) 0%, transparent 42%),
    radial-gradient(circle at 86% 20%, rgba(219,38,28,0.18) 0%, transparent 44%),
    linear-gradient(135deg, rgba(44,22,108,0.7) 0%, rgba(26,10,74,0.84) 100%),
    url("https://www.apaiwb.com/assets/images/contact-banner-pic.jpg");
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}
.press-banner {
  background-image:
    radial-gradient(circle at 18% 20%, rgba(245,166,35,0.18) 0%, transparent 42%),
    radial-gradient(circle at 86% 20%, rgba(219,38,28,0.18) 0%, transparent 44%),
    linear-gradient(135deg, rgba(44,22,108,0.72) 0%, rgba(26,10,74,0.88) 100%),
    url("https://www.apaiwb.com/assets/images/durgapur_news.jpg");
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}
.gallery-banner {
  background-image:
    radial-gradient(circle at 18% 20%, rgba(245,166,35,0.18) 0%, transparent 42%),
    radial-gradient(circle at 86% 20%, rgba(219,38,28,0.18) 0%, transparent 44%),
    linear-gradient(135deg, rgba(44,22,108,0.74) 0%, rgba(26,10,74,0.9) 100%),
    url("https://www.apaiwb.com/assets/images/slider12.jpg");
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); gap: 26px; align-items: stretch; }
.page-banner-inner.single { grid-template-columns: 1fr; }
.page-banner-copy { padding: 10px 0; }
.page-banner-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 12px;
}
.page-banner-eyebrow::before { content: ''; width: 22px; height: 2px; border-radius: 2px; background: var(--amber); }
.page-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 54px);
  line-height: 1.06;
  font-weight: 800;
  margin-bottom: 14px;
}
.page-banner-sub { color: rgba(255,255,255,0.68); font-size: 15.5px; line-height: 1.8; max-width: 620px; }
.page-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.page-banner-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  background: var(--red);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.page-banner-btn:hover { transform: translateY(-1px); background: var(--amber); color: var(--purple-d); }
.page-banner-btn.outline { background: transparent; color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.22); }
.page-banner-btn.outline:hover { background: rgba(255,255,255,0.12); color: var(--white); }
.page-banner-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  padding: 18px 18px 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
}
.page-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.62); margin-bottom: 14px; }
.page-breadcrumb a { color: rgba(255,255,255,0.78); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--amber); }
.page-breadcrumb span:nth-child(2) { opacity: 0.6; }
.page-banner-points { display: grid; gap: 12px; }
.page-banner-point { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: center; }
.page-banner-point-icon {
  width: 36px; height: 36px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.92);
}
.page-banner-point strong { display: block; font-size: 13.5px; color: rgba(255,255,255,0.92); }
.page-banner-point span { display: block; font-size: 12px; color: rgba(255,255,255,0.62); }

.contact-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 22px; }
.contact-card {
  display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: center;
  padding: 14px 14px;
  border-radius: 18px;
  text-decoration: none;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  color: var(--text);
}
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 18px 46px rgba(44,22,108,0.14); }
.contact-card-icon {
  width: 44px; height: 44px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(44,22,108,0.12) 0%, rgba(219,38,28,0.1) 100%);
  border: 1px solid rgba(44,22,108,0.12);
  color: var(--purple);
}
.contact-card-body strong { display: block; font-size: 13.5px; font-weight: 900; color: var(--purple); }
.contact-card-body span { display: block; font-size: 12.5px; color: var(--muted); overflow-wrap: anywhere; }

.authority-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ff 100%);
}
.authority-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}
.authority-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(44,22,108,0.1);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 54px rgba(44,22,108,0.08);
}
.authority-card + .authority-card {
  margin-top: 18px;
}
.authority-content {
  display: grid;
  gap: 16px;
}
.authority-lead {
  font-size: 16px;
  line-height: 1.85;
  color: #3f3658;
}
.authority-copy {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}
.authority-copy p + p {
  margin-top: 14px;
}
.authority-copy ol {
  margin: 10px 0 0 20px;
  color: var(--muted);
}
.authority-copy li + li {
  margin-top: 10px;
}
.authority-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.authority-info {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f4ff 100%);
  border: 1px solid rgba(44,22,108,0.09);
}
.authority-info-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.authority-info-label::before {
  content: "";
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
}
.authority-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  line-height: 1.2;
  color: var(--purple);
  margin-bottom: 8px;
}
.authority-info p,
.authority-info li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}
.authority-info ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.authority-info a {
  color: var(--purple);
  text-decoration: none;
}
.authority-info a:hover {
  color: var(--red);
}
.authority-highlights {
  display: grid;
  gap: 12px;
}
.authority-highlight {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(44,22,108,0.06) 0%, rgba(219,38,28,0.07) 100%);
  border: 1px solid rgba(44,22,108,0.08);
}
.authority-highlight-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(44,22,108,0.12);
  color: var(--purple);
  font-size: 18px;
}
.authority-highlight strong {
  display: block;
  color: var(--purple);
  font-size: 14px;
  margin-bottom: 4px;
}
.authority-highlight span {
  display: block;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.college-list-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ff 100%);
}
.college-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.college-toolbar-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 760px;
}
.college-count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(44,22,108,0.08);
  border: 1px solid rgba(44,22,108,0.12);
  color: var(--purple);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.college-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.college-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,243,255,0.98) 100%);
  border: 1px solid rgba(44,22,108,0.1);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 18px 48px rgba(44,22,108,0.08);
}
.college-card-media {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(44,22,108,0.08) 0%, rgba(219,38,28,0.06) 100%);
  border: 1px solid rgba(44,22,108,0.08);
  overflow: hidden;
  margin-bottom: 18px;
}
.college-card-media img {
  max-width: 100%;
  max-height: 76px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.college-card-placeholder {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(44,22,108,0.12);
  color: var(--purple);
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
}
.college-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.25;
  color: var(--purple);
  margin-bottom: 10px;
}
.college-card-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.college-card-meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.college-card-meta a {
  color: var(--purple);
  text-decoration: none;
}
.college-card-meta a:hover {
  color: var(--red);
}
.college-card-meta-item {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(44,22,108,0.08);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}
.college-card-meta-item strong {
  color: var(--purple);
}
.college-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.college-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.college-card-link.primary {
  background: var(--red);
  color: var(--white);
}
.college-card-link.primary:hover {
  background: var(--red-d);
  transform: translateY(-1px);
}
.college-card-link.secondary {
  background: rgba(44,22,108,0.08);
  color: var(--purple);
  border: 1px solid rgba(44,22,108,0.12);
}
.college-card-link.secondary:hover {
  background: rgba(44,22,108,0.14);
  transform: translateY(-1px);
}
.college-empty {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(44,22,108,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,243,255,0.98) 100%);
  box-shadow: 0 18px 44px rgba(44,22,108,0.08);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}
.course-search-banner {
  background:
    linear-gradient(135deg, rgba(34, 13, 88, 0.84) 0%, rgba(83, 40, 153, 0.72) 48%, rgba(219, 38, 28, 0.36) 100%),
    url("https://www.apaiwb.com/assets/images/slider12.jpg");
  background-size: cover;
  background-position: center;
}
.course-search-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}
.search-page-input label {
  display: block;
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.search-page-input select {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  outline: none;
  cursor: pointer;
}
.course-search-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.course-search-inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.course-search-inline-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(44,22,108,0.08);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
}
.search-result-meta {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.search-result-meta-item {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(44,22,108,0.08);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}
.search-result-meta-item strong {
  color: var(--purple);
}
.search-result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.search-result-link.secondary {
  background: rgba(44,22,108,0.08);
  color: var(--purple);
  border: 1px solid rgba(44,22,108,0.12);
}
.search-result-link.secondary:hover {
  background: rgba(44,22,108,0.14);
}

.contact-map-card {
  margin-top: 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 46px rgba(44,22,108,0.12);
}
.contact-map-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(44,22,108,0.1) 0%, rgba(245,166,35,0.1) 100%);
}
.contact-map-head span { font-weight: 900; color: var(--purple); letter-spacing: 0.02em; }
.contact-map-head a { color: var(--red); text-decoration: none; font-weight: 800; font-size: 12.5px; }
.contact-map-head a:hover { color: var(--purple); }
.contact-map-frame { background: var(--off-white); }
.contact-map-frame iframe { display: block; width: 100%; border: 0; }

.press-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.press-tabs-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(247,243,255,0.98) 100%);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 22px 58px rgba(44,22,108,0.1);
}
.press-feature-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}
.press-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.press-feature-media {
  position: relative;
  display: block;
  border: none;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 220px;
  cursor: pointer;
  background: #1b1037;
  box-shadow: 0 20px 44px rgba(44,22,108,0.16);
}
.press-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.32s ease;
}
.press-feature-media:hover img,
.press-feature-media:focus-visible img { transform: scale(1.03); }
.press-feature-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(44,22,108,0.84);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.press-feature-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 4px 4px 2px;
  max-width: 720px;
}
.press-feature-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  color: var(--purple);
  margin-bottom: 14px;
}
.press-feature-body .media-caption {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}
.press-archive-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(249,247,255,0.98) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(44,22,108,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.press-archive-item:hover {
  transform: translateY(-3px);
  border-color: rgba(61,32,144,0.22);
  box-shadow: 0 20px 44px rgba(44,22,108,0.12);
}
.press-archive-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(44,22,108,0.12) 0%, rgba(219,38,28,0.1) 100%);
  color: var(--purple);
  border: 1px solid rgba(44,22,108,0.12);
}
.press-archive-body strong {
  display: block;
  color: var(--purple);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 6px;
}
.press-archive-body span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}
.gallery-video-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ff 100%);
  overflow: hidden;
}
.gallery-video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(240,236,255,0.92) 0%, rgba(247,243,255,0) 100%);
  pointer-events: none;
}
/*.gallery-video-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 36px));
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0%, var(--amber) 50%, var(--purple-l) 100%);
  box-shadow: 0 14px 32px rgba(44,22,108,0.12);
}*/
.gallery-video-section .container { position: relative; z-index: 1; }
.gallery-video-section .media-header {
  padding-top: 18px;
  margin-bottom: 36px;
}
.gallery-video-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 8, 31, 0.84);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  z-index: 2600;
}
.gallery-lightbox.open { opacity: 1; visibility: visible; pointer-events: auto; }
.gallery-lightbox-dialog {
  position: relative;
  width: min(1000px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(244,240,255,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.34);
  padding: 24px 24px 22px;
}
.gallery-lightbox-main {
  border-radius: 20px;
  overflow: hidden;
  background: #130a2d;
  min-height: 380px;
}
.gallery-lightbox-main img {
  width: 100%;
  height: min(62vh, 620px);
  object-fit: cover;
  display: block;
}
.gallery-lightbox-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--purple);
  margin-top: 18px;
}
.gallery-lightbox-caption {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 6px;
}
.gallery-lightbox-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.gallery-lightbox-thumb {
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: rgba(44,22,108,0.06);
}
.gallery-lightbox-thumb.active { border-color: var(--red); box-shadow: 0 10px 24px rgba(219,38,28,0.16); }
.gallery-lightbox-thumb img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  display: block;
}
.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  border: none;
  cursor: pointer;
  z-index: 2;
}
.gallery-lightbox-close {
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(44,22,108,0.88);
  color: var(--white);
  font-size: 28px;
}
.gallery-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(44,22,108,0.88);
  color: var(--white);
  font-size: 18px;
}
.gallery-lightbox-prev { left: 10px; }
.gallery-lightbox-next { right: 10px; }
.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover { background: var(--red); }
.gallery-video-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(249,247,255,0.98) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 18px 46px rgba(44,22,108,0.1);
}
.gallery-video-thumb {
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(44,22,108,0.72) 0%, rgba(219,38,28,0.28) 100%),
    url("https://www.apaiwb.com/assets/images/slider7.jpg") center/cover no-repeat;
  display: grid;
  place-items: center;
  width: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
}
.gallery-video-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 28px;
  padding-left: 4px;
  backdrop-filter: blur(8px);
}
.gallery-video-body { padding: 28px 30px; display: flex; flex-direction: column; justify-content: center; }
.gallery-video-meta {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.gallery-video-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.2;
  color: var(--purple);
  margin-bottom: 12px;
}
.gallery-video-body p { color: var(--muted); font-size: 14.5px; line-height: 1.8; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.search-banner {
  background:
    linear-gradient(135deg, rgba(34, 13, 88, 0.84) 0%, rgba(83, 40, 153, 0.72) 48%, rgba(219, 38, 28, 0.36) 100%),
    url("https://www.apaiwb.com/assets/images/slider10.jpg");
  background-size: cover;
  background-position: center;
}
.search-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f3ff 100%);
}
.search-shell {
  margin-bottom: 34px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(246,242,255,0.98) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 18px 44px rgba(44,22,108,0.08);
}
.search-page-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}
.search-page-input {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(44,22,108,0.12);
  background: var(--white);
  color: var(--muted);
}
.search-page-input input {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  outline: none;
}
.search-page-input input::placeholder { color: #8c88a0; }
.search-page-btn {
  min-height: 60px;
  padding: 0 24px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red) 0%, #ff7b2f 100%);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(219,38,28,0.22);
}
.search-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.search-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(44,22,108,0.12);
  background: rgba(255,255,255,0.82);
  color: var(--purple);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.search-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(44,22,108,0.26);
  background: #fff7f4;
}
.search-results-head {
  margin-bottom: 24px;
}
.search-empty {
  padding: 48px 28px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(246,242,255,0.98) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 18px 44px rgba(44,22,108,0.08);
}
.search-empty h3 {
  margin-bottom: 10px;
  color: var(--purple);
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
}
.search-empty p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.search-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.search-result-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(250,248,255,1) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 16px 38px rgba(44,22,108,0.08);
}
.search-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.search-result-type,
.search-result-score {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.search-result-type {
  background: rgba(44,22,108,0.08);
  color: var(--purple);
}
.search-result-score {
  background: rgba(219,38,28,0.08);
  color: var(--red);
}
.search-result-card h3 {
  margin-bottom: 10px;
  color: var(--purple);
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  line-height: 1.12;
}
.search-result-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
}
.search-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}
.search-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f4f1ff;
  color: #5b5482;
  font-size: 12px;
  font-weight: 600;
}
.search-result-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.search-result-link:hover { background: #2f1776; }

@media (max-width: 900px) {
  .page-banner-inner { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .authority-layout,
  .authority-grid { grid-template-columns: 1fr; }
  .college-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .course-search-form { grid-template-columns: 1fr; }
  .search-page-form { grid-template-columns: 1fr; }
  .search-results-grid { grid-template-columns: 1fr; }
  .press-tabs-shell { padding: 22px; }
  .press-feature-card { grid-template-columns: 1fr; gap: 18px; }
  .press-feature-grid { grid-template-columns: 1fr 1fr; }
  .press-feature-media { min-height: 220px; }
  .press-archive-grid { grid-template-columns: 1fr 1fr; }
  .gallery-video-card { grid-template-columns: 1fr; }
  .gallery-lightbox-dialog { width: min(100%, calc(100vw - 24px)); padding: 18px; }
  .gallery-lightbox-main { min-height: 260px; }
  .gallery-lightbox-main img { height: min(46vh, 420px); }
  .gallery-lightbox-thumbs { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .search-shell,
  .search-empty,
  .search-result-card { padding: 20px; }
  .college-grid { grid-template-columns: 1fr; }
  .college-card { padding: 20px; }
  .college-card-actions { flex-direction: column; }
  .college-card-link { width: 100%; }
  .search-result-actions { flex-direction: column; }
  .search-result-link { width: 100%; }
  .search-page-input { min-height: 54px; padding: 0 14px; }
  .search-page-btn { min-height: 52px; }
  .search-result-card h3 { font-size: 26px; }
  .press-feature-grid { grid-template-columns: 1fr; }
  .press-archive-grid { grid-template-columns: 1fr; }
  .gallery-video-body { padding: 24px 22px; }
  .gallery-video-thumb { min-height: 220px; }
  .gallery-lightbox { padding: 12px; }
  .gallery-lightbox-nav { width: 38px; height: 38px; top: calc(50% - 46px); }
  .gallery-lightbox-close { width: 38px; height: 38px; font-size: 24px; }
  .gallery-lightbox-thumbs { grid-template-columns: repeat(2, 1fr); }
}

/* -----------------------------------------------
   RESPONSIVE
----------------------------------------------- */
@media (max-width: 1180px) {
  .top-bar { padding: 8px 28px; }
  .navbar { padding: 0 28px; }
  .header-search { width: min(280px, 34vw); }
  .ticker-track { width: min(760px, calc(100% - 180px)); }
  .hero { height: auto; min-height: 0; max-height: none; aspect-ratio: 1920 / 620; }
  .media-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; }
}
@media (max-width: 1024px) {
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-copy, .about-img-block { min-height: auto; }
  .about-main-img { min-height: 340px; }
  .leadership-showcase { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .top-bar { padding: 10px 18px; justify-content: center; text-align: center; }
  .top-bar > span { width: 100%; }
  .top-bar-right { justify-content: center; gap: 12px 16px; }
  .navbar { padding: 10px 18px; min-height: auto; gap: 12px; flex-wrap: nowrap; align-items: center; }
  .logo { flex: 1 1 auto; }
  .logo img { max-width: min(100%, 340px); height: auto; }
  .header-actions { width: auto; margin-left: auto; flex: 0 0 auto; justify-content: flex-end; }
  .header-search { width: min(100%, 320px); max-width: none; }
  .ticker-bar { padding: 10px 14px 12px; gap: 10px; }
  .ticker-label { padding: 4px 14px; font-size: 10px; }
  .ticker-track { width: calc(100% - 140px); }
  .about-grid, .leadership-grid, .enquiry-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { height: auto; min-height: 0; max-height: none; aspect-ratio: 1920 / 620; }
  .slide-heading { left: 22px; bottom: 22px; max-width: min(560px, calc(100% - 108px)); font-size: 19px; padding: 9px 14px; }
  .slider-prev, .slider-next { width: 40px; height: 40px; font-size: 16px; }
  .slider-prev { left: 16px; }
  .slider-next { right: 16px; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { padding: 18px 22px; flex: 0 0 33.333%; max-width: none; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .form-row { grid-template-columns: 1fr; }
  .about-shell { padding: 30px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-main-img { min-height: 300px; max-height: none; }
  .leadership-showcase { gap: 22px; }
  .leadership-highlights { grid-template-columns: 1fr 1fr; }
  .leader-card-top { grid-template-columns: 1fr; }
  .leader-img-wrap { min-height: 260px; }
  .leader-meta { padding: 26px 24px 20px; }
  .leader-body { padding: 0 24px 24px; }
  .fair-tabs-intro { padding: 28px 24px; gap: 20px; }
  .fair-tabs-intro-stats { width: 100%; justify-content: space-between; }
  .enquiry-grid { gap: 40px; }
  .enquiry-card { padding: 32px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .top-bar { padding: 10px 14px; font-size: 10px; }
  .top-bar-right { gap: 10px 12px; }
  .navbar { padding: 10px 14px; }
  .logo { gap: 8px; }
  .logo img { height: auto; max-width: calc(100vw - 88px); }
  .footer-logo { width: 100%; }
  .footer-logo img { width: min(100%, 300px); height: auto; }
  .footer-logo-fallback { width: 100%; }
  .media-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .header-actions { gap: 8px; }
  .header-search { width: min(100%, 220px); padding: 5px 6px 5px 10px; }
  .header-search button { padding: 7px 9px; font-size: 10.5px; }
  .ticker-bar { flex-direction: column; align-items: center; gap: 8px; padding: 10px 12px 12px; }
  .ticker-track { width: 100%; height: 34px; }
  .ticker-inner span {
    font-size: 11px; padding: 0 6px; white-space: normal; overflow: hidden;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    line-height: 1.45;
  }
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1920 / 620;
  }
  .slide { background: #140c30; }
  .slide img { object-fit: cover; object-position: center center; }
  .slide-heading {
    left: 12px; right: 12px; bottom: 42px; max-width: none;
    font-size: clamp(12px, 3.7vw, 15px); line-height: 1.3; padding: 6px 10px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  }
  .slider-prev, .slider-next { top: auto; bottom: 8px; transform: none; width: 30px; height: 30px; font-size: 13px; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
  .slider-dots { bottom: 16px; gap: 6px; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; min-width: 50%; max-width: none; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .about-shell { padding: 22px; border-radius: 24px; }
  .about-stats { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .about-main-img { border-radius: 18px; min-height: 240px; max-height: none; }
  .about-caption-card { border-radius: 18px; padding: 18px 18px 16px; }
  .leadership-highlights { grid-template-columns: 1fr; }
  .leadership-copy { padding: 26px 22px; border-radius: 22px; }
  .leadership-highlight { padding: 18px 18px 16px; border-radius: 20px; }
  .leader-card { border-radius: 22px; }
  .leader-name { font-size: 26px; }
  .events-header, .media-header { gap: 16px; }
  .dl-btn { width: 100%; justify-content: center; }
  .fair-tabs-intro-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .fair-tablist { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; margin-bottom: 24px; }
  .fair-tab { flex: 0 0 auto; white-space: nowrap; }
  .fair-photo-col { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .fair-photo { height: auto; aspect-ratio: 16 / 9; }
  .fair-photo.photo-tall { grid-row: auto; min-height: 0; aspect-ratio: 16 / 9; }
  .enquiry-card { padding: 24px 20px; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; max-width: 100%; }
  .logo-text strong { font-size: 16px; }
  .logo-text span { display: none; }
}
@media (max-width: 480px) {
  .top-bar-right { width: 100%; justify-content: center; }
  .top-bar-right a { max-width: 100%; overflow-wrap: anywhere; }
  .header-actions { width: auto; }
  .header-search { width: calc(100% - 50px); }
  .header-search input { font-size: 11.5px; }
  .header-search button { padding: 7px 8px; font-size: 10px; }
  .logo img { max-width: calc(100vw - 76px); }
  .footer-logo img { width: min(100%, 260px); }
  .hero { aspect-ratio: 1920 / 620; }
  .slide img { object-fit: cover; object-position: center center; }
  .slide-heading { left: 10px; right: 10px; bottom: 38px; font-size: 11px; padding: 6px 9px; border-radius: 10px; }
  .slider-prev, .slider-next { width: 28px; height: 28px; bottom: 7px; }
  .slider-dots { bottom: 14px; }
  .stat-item { flex-basis: 100%; min-width: 100%; }
  .fair-tabs-intro-stats { grid-template-columns: 1fr; }
  .footer-bottom p { text-align: center; }
}
