/* SDSN Group – shared styles */
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #1e293b;
}
.font-playfair {
  font-family: 'Playfair Display', serif;
}
.bg-navy {
  background-color: #0B1F4D;
}
.text-navy {
  color: #0B1F4D;
}
.text-gold {
  color: #C9A227;
}
.border-gold {
  border-color: #C9A227;
}
.bg-gold {
  background-color: #C9A227;
}
.hover-bg-gold:hover {
  background-color: #C9A227;
  color: #0B1F4D;
}
.hover\:bg-navy:hover {
  background-color: #0B1F4D;
}
.hover\:text-navy:hover {
  color: #0B1F4D;
}
.hover\:bg-gold:hover {
  background-color: #C9A227;
}
.hover\:text-white:hover {
  color: #ffffff;
}
.hover\:text-gold:hover {
  color: #C9A227;
}
.border-navy\/20 {
  border-color: rgba(11, 31, 77, 0.2);
}
.glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.08);
}
.shadow-soft {
  box-shadow: 0 20px 40px -12px rgba(11, 31, 77, 0.12);
}
.shadow-gold {
  box-shadow: 0 12px 30px -8px rgba(201, 162, 39, 0.25);
}
.section-padding {
  padding: 5rem 0;
}
.swiper-pagination-bullet-active {
  background: #C9A227 !important;
}
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.floating-shape-1 {
  width: 300px;
  height: 300px;
  background: #C9A227;
  top: -80px;
  right: -80px;
}
.floating-shape-2 {
  width: 200px;
  height: 200px;
  background: #0B1F4D;
  bottom: 20px;
  left: -40px;
}
.premium-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.premium-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 30px 50px -18px rgba(11, 31, 77, 0.25);
}
.college-card-img {
  transition: transform 0.6s ease;
}
.college-card:hover .college-card-img {
  transform: scale(1.05);
}
html {
  scroll-behavior: smooth;
}
.header-glass {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

/* ─── Announcement ticker (top of page) ─── */
.announcement-ticker {
  display: flex;
  align-items: center;
  height: 38px;
  background: linear-gradient(90deg, #061428 0%, #0B1F4D 50%, #061428 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.35);
  border-bottom: 1px solid rgba(201, 162, 39, 0.35);
  position: relative;
  z-index: 60;
  overflow: hidden;
}
.announcement-ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0 0.85rem 0 0.75rem;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.14) 0%, rgba(201, 162, 39, 0.04) 100%);
  border-right: 1px solid rgba(201, 162, 39, 0.22);
  z-index: 4;
}
.announcement-ticker-label-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #C9A227;
  line-height: 1;
}
.announcement-ticker-label-inner i {
  font-size: 0.72rem;
  flex-shrink: 0;
}
.announcement-ticker-label-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.announcement-ticker-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.announcement-ticker-viewport::before,
.announcement-ticker-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 32px;
  z-index: 3;
  pointer-events: none;
}
.announcement-ticker-viewport::before {
  left: 0;
  background: linear-gradient(90deg, #0B1F4D 15%, transparent);
}
.announcement-ticker-viewport::after {
  right: 0;
  background: linear-gradient(-90deg, #0B1F4D 15%, transparent);
}
.announcement-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: announcement-ticker-scroll linear infinite;
  will-change: transform;
}
.announcement-ticker:hover .announcement-ticker-track {
  animation-play-state: paused;
}
.announcement-ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  padding-right: 0;
}
.announcement-ticker-item {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
}
.announcement-ticker-link,
.announcement-ticker-text {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 0.1rem;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.025em;
  color: rgba(248, 250, 252, 0.95);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.announcement-ticker-link:hover {
  color: #C9A227;
}
.announcement-ticker-link--accent {
  color: #C9A227;
  font-weight: 700;
}
.announcement-ticker-link--accent:hover {
  color: #e8c84a;
}
.announcement-ticker-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  color: rgba(201, 162, 39, 0.45);
  font-size: 0.28rem;
  line-height: 1;
  user-select: none;
}
.announcement-ticker-sep i {
  font-size: 0.28rem;
}
@keyframes announcement-ticker-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@media (min-width: 768px) {
  .announcement-ticker {
    height: 40px;
  }
  .announcement-ticker-label {
    padding: 0 1rem 0 0.9rem;
  }
  .announcement-ticker-label-inner i {
    font-size: 0.78rem;
  }
  .announcement-ticker-label-text {
    font-size: 0.72rem;
  }
  .announcement-ticker-link,
  .announcement-ticker-text {
    font-size: 0.84rem;
  }
  .announcement-ticker-sep {
    padding: 0 1.15rem;
  }
}
@media (max-width: 480px) {
  .announcement-ticker-label-text {
    display: none;
  }
  .announcement-ticker-label {
    padding: 0 0.65rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .announcement-ticker-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 0.4rem 0.5rem;
    height: auto;
  }
  .announcement-ticker {
    height: auto;
    min-height: 38px;
  }
  .announcement-ticker-group:last-child {
    display: none;
  }
  .announcement-ticker-viewport {
    height: auto;
  }
}

/* ─── Premium top bar ─── */
.top-bar-premium {
  background: linear-gradient(90deg, #081833 0%, #0B1F4D 40%, #0d2659 100%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  font-size: 0.8125rem;
  padding: 0.45rem 0;
}
.topbar-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(248, 250, 252, 0.9);
  transition: color 0.25s ease;
}
.topbar-link i {
  color: #C9A227;
  font-size: 0.75rem;
}
.topbar-link:hover {
  color: #C9A227;
}
.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.75rem;
  color: #C9A227;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  transition: all 0.3s ease;
}
.topbar-badge:hover {
  background: #C9A227;
  color: #0B1F4D;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}
.topbar-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C9A227;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: rgba(248, 250, 252, 0.85);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
  transition: all 0.25s ease;
}
.topbar-social a:hover {
  background: #C9A227;
  color: #0B1F4D;
  transform: translateY(-2px);
}

/* ─── Premium site header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 31, 77, 0.06);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 32px -8px rgba(11, 31, 77, 0.15);
  border-bottom-color: rgba(201, 162, 39, 0.2);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.65rem 0;
  gap: 1.25rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  text-decoration: none;
  max-width: min(100%, 26rem);
}
.site-logo-mark-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  line-height: 0;
}
.site-logo-img {
  display: block;
  width: auto;
  height: 60px;
  max-width: 60px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}
.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  padding-top: 0.05rem;
}
.site-logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #0B1F4D;
  line-height: 1.22;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.site-logo-title-gold {
  color: #C9A227;
}
.site-logo-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-top: 0.12rem;
}
.site-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0B1F4D 0%, #152a5e 100%);
  color: #C9A227;
  font-size: 1.1rem;
  box-shadow: 0 4px 14px rgba(11, 31, 77, 0.2);
}
.site-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0B1F4D;
}
.site-logo-est {
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Desktop nav */
.site-nav {
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
  flex-shrink: 0;
}
.site-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.7rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #334155;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.site-nav-link:hover,
.site-nav-link.active {
  color: #0B1F4D;
  background: rgba(201, 162, 39, 0.1);
}
.site-nav-link.active {
  color: #C9A227;
  font-weight: 600;
}
.nav-chevron {
  font-size: 0.55rem;
  opacity: 0.7;
  transition: transform 0.25s ease;
}
.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}
.site-nav-apply {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #d4ad2f 0%, #C9A227 50%, #b8921f 100%);
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.site-nav-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.5);
  background: linear-gradient(135deg, #0B1F4D 0%, #152a5e 100%);
  color: #ffffff;
}
.site-nav-apply i {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}
.site-nav-apply:hover i {
  transform: translateX(3px);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(11, 31, 77, 0.06);
  color: #0B1F4D;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.mobile-menu-btn:hover {
  background: rgba(201, 162, 39, 0.15);
  color: #C9A227;
}

/* Legacy top-bar (fallback) */
.top-bar {
  background: #0B1F4D;
  color: #f8fafc;
  font-size: 0.8rem;
  padding: 0.3rem 0;
}
.top-bar a {
  color: #f8fafc;
  transition: color 0.2s;
}
.top-bar a:hover {
  color: #C9A227;
}
.hero-slider-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(11, 31, 77, 0.82) 0%, rgba(11, 31, 77, 0.25) 38%, transparent 62%),
    linear-gradient(to right, rgba(11, 31, 77, 0.45) 0%, transparent 48%);
}
.hero-section {
  isolation: isolate;
}
.heroSwiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.heroSwiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.hero-slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  will-change: transform;
}
.heroSwiper .swiper-slide-active .hero-slide-bg {
  animation: heroKenBurns 6s ease-out forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
.hero-controls {
  position: absolute;
  inset: 0;
  z-index: 25;
  pointer-events: none;
}
.hero-controls > * {
  pointer-events: auto;
}
.hero-swiper-prev,
.hero-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-swiper-prev:hover,
.hero-swiper-next:hover {
  background: #C9A227;
  color: #0B1F4D;
  border-color: #C9A227;
  box-shadow: 0 8px 28px -4px rgba(201, 162, 39, 0.5);
  transform: translateY(-50%) scale(1.05);
}
.hero-swiper-prev { left: 0.75rem; }
.hero-swiper-next { right: 0.75rem; }
.hero-swiper-pagination {
  position: absolute;
  bottom: 1.5rem !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: auto !important;
  display: flex;
  gap: 0.4rem;
}
.hero-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.35s ease;
  margin: 0 !important;
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 6px;
  background: #C9A227 !important;
}
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.hero-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #C9A227, #e8c84a);
  transition: width 0.15s linear;
}
.hero-slide-counter {
  position: absolute;
  bottom: 2.5rem;
  right: 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.hero-content {
  width: 100%;
  padding-bottom: 4.5rem;
}
.hero-copy-panel {
  max-width: 34rem;
  padding: 0;
  background: none;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C9A227;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  margin-bottom: 1rem;
}
.hero-badge i {
  font-size: 0.7rem;
}
.hero-text-swap {
  transition: opacity 0.3s ease;
  opacity: 1;
}
.hero-text-swap.is-changing {
  opacity: 0.4;
}
.hero-title {
  font-size: clamp(1.65rem, 3.8vw + 0.35rem, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.hero-title-line {
  display: block;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}
.hero-title-accent {
  display: block;
  color: #C9A227;
  margin-top: 0.2rem;
  font-size: 0.92em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.hero-desc {
  display: none;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.hero-btn--primary {
  background: #C9A227;
  color: #0B1F4D;
  box-shadow: 0 8px 28px -6px rgba(201, 162, 39, 0.55);
}
.hero-btn--primary:hover {
  background: #ffffff;
  color: #0B1F4D;
  transform: translateY(-2px);
}
.hero-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}
.hero-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
  max-width: 28rem;
}
.hero-stat {
  text-align: center;
  padding: 0.65rem 0.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}
.hero-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #C9A227;
  line-height: 1.2;
}
.hero-stat-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.15rem;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  text-decoration: none;
  animation: heroBounce 2.2s ease-in-out infinite;
  pointer-events: auto;
}
.hero-scroll-hint i {
  font-size: 0.85rem;
}
@keyframes heroBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
@media (min-width: 768px) {
  .hero-swiper-prev { left: 1.5rem; }
  .hero-swiper-next { right: 1.5rem; }
  .hero-swiper-prev,
  .hero-swiper-next {
    width: 52px;
    height: 52px;
  }
  .hero-stats {
    grid-template-columns: repeat(5, 1fr);
    max-width: 36rem;
    gap: 0.65rem;
  }
  .hero-stat-num {
    font-size: 1.65rem;
  }
  .hero-slide-counter {
    bottom: 2.75rem;
    right: 2rem;
  }
}
@media (max-width: 767px) {
  .hero-content {
    padding-bottom: 5rem;
  }
  .hero-title {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }
  .hero-swiper-prev,
  .hero-swiper-next {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 4.5rem;
    transform: none;
  }
  .hero-swiper-prev:hover,
  .hero-swiper-next:hover {
    transform: scale(1.05);
  }
  .hero-swiper-prev { left: 1rem; }
  .hero-swiper-next { right: 1rem; }
  .hero-slide-counter {
    right: 1rem;
    bottom: 2.25rem;
  }
  .hero-scroll-hint {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .heroSwiper .swiper-slide-active .hero-slide-bg {
    animation: none;
  }
  .hero-scroll-hint {
    animation: none;
  }
}
.timeline-dot {
  background: #C9A227;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 3px #C9A227;
}
.timeline-line {
  border-left: 3px dashed #C9A227;
  height: 100%;
  margin-left: 10px;
}

/* Page banner (sub-pages) */
.page-banner {
  background: linear-gradient(135deg, #0B1F4D 0%, #152a5e 50%, #0B1F4D 100%);
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1562774053-701939374585?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
  opacity: 0.15;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 77, 0.75);
}

/* Desktop nav dropdowns */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  cursor: pointer;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 60px -12px rgba(11, 31, 77, 0.22), 0 0 0 1px rgba(11, 31, 77, 0.04);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transform-origin: top left;
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 60;
  overflow: hidden;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C9A227, #e8c84a, #C9A227);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.nav-dropdown-label {
  padding: 0.6rem 1rem 0.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 400;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.nav-dropdown-menu a i {
  width: 18px;
  text-align: center;
  font-size: 0.8rem;
  color: #C9A227;
  opacity: 0.85;
}
.nav-dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(201, 162, 39, 0.06) 100%);
  color: #0B1F4D;
  transform: translateX(4px);
}
.nav-dropdown-menu a.active {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.16) 0%, rgba(201, 162, 39, 0.08) 100%);
  color: #0B1F4D;
  font-weight: 600;
}
.nav-dropdown-cta {
  margin-top: 0.25rem;
  background: rgba(11, 31, 77, 0.04);
  font-weight: 600 !important;
  color: #0B1F4D !important;
}
.nav-dropdown-cta:hover {
  background: #0B1F4D !important;
  color: #ffffff !important;
}
.nav-dropdown-menu--colleges {
  min-width: 300px;
}
.nav-dropdown-menu--about {
  min-width: 280px;
}

/* About sub-pages */
.message-page-content {
  max-width: 820px;
  margin: 0 auto;
}
.message-lead-card {
  background: linear-gradient(135deg, rgba(11, 31, 77, 0.04), rgba(201, 162, 39, 0.08));
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 24px;
  padding: 2rem 2.25rem;
  margin-bottom: 2rem;
}
.message-lead-card .message-portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #C9A227;
  box-shadow: 0 12px 32px rgba(11, 31, 77, 0.15);
}
.message-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  line-height: 1.85;
  color: #374151;
}
.message-quote p + p {
  margin-top: 1.25rem;
}
.message-signature {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(201, 162, 39, 0.35);
}
.message-signature-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0B1F4D;
}
.message-signature-role {
  color: #C9A227;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
.why-sdsn-page-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .why-sdsn-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.why-sdsn-page-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid rgba(11, 31, 77, 0.06);
  box-shadow: 0 8px 32px rgba(11, 31, 77, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-sdsn-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 31, 77, 0.1);
}
.why-sdsn-page-card i {
  font-size: 1.5rem;
  color: #C9A227;
  margin-bottom: 0.75rem;
}
.why-sdsn-page-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0B1F4D;
  margin-bottom: 0.5rem;
}
.why-sdsn-page-card p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.65;
}
.rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rules-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(11, 31, 77, 0.08);
}
.rules-list li:last-child {
  border-bottom: none;
}
.rules-list-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0B1F4D;
  color: #C9A227;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rules-list-text {
  color: #4b5563;
  line-height: 1.7;
  font-size: 0.95rem;
}
.rules-list-text strong {
  color: #0B1F4D;
}
.mobile-nav-submenu a.active {
  color: #C9A227;
  font-weight: 600;
}
.nav-link.active {
  color: #C9A227;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}
.mobile-drawer.is-open {
  pointer-events: auto;
}
.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 77, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-drawer.is-open .mobile-drawer-backdrop {
  opacity: 1;
}
.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 100%);
  height: 100%;
  background: #ffffff;
  box-shadow: -8px 0 40px rgba(11, 31, 77, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.is-open .mobile-drawer-panel {
  transform: translateX(0);
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(11, 31, 77, 0.08);
  background: linear-gradient(135deg, rgba(11, 31, 77, 0.03) 0%, rgba(201, 162, 39, 0.06) 100%);
}
.mobile-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: none;
  background: rgba(11, 31, 77, 0.06);
  color: #0B1F4D;
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-close-btn:hover {
  background: #C9A227;
  color: #ffffff;
}
.mobile-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 1.25rem 1.5rem;
}
.mobile-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.85rem;
  background: linear-gradient(135deg, #d4ad2f, #C9A227);
  color: #0B1F4D;
  font-weight: 600;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}
.mobile-drawer-contact {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 31, 77, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-drawer-contact a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #64748b;
}
.mobile-drawer-contact a i {
  color: #C9A227;
  width: 20px;
}

/* Show desktop nav from 1024px (lg) */
@media (min-width: 1024px) {
  nav.site-nav {
    display: flex !important;
  }
  .mobile-menu-btn {
    display: none !important;
  }
  .mobile-drawer {
    display: none !important;
  }
}

/* Mobile nav accordion */
.mobile-nav-group {
  border-bottom: 1px solid rgba(11, 31, 77, 0.06);
}
.mobile-nav-group.active .mobile-nav-toggle {
  color: #C9A227;
}
.mobile-nav-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.85rem 0;
  text-align: left;
  color: #0B1F4D;
  font-weight: 500;
  font-size: 0.9375rem;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav-toggle:hover {
  color: #C9A227;
}
.mobile-nav-toggle .fa-chevron-down {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
  opacity: 0.6;
}
.mobile-nav-group.open .mobile-nav-toggle .fa-chevron-down {
  transform: rotate(180deg);
}
.mobile-nav-submenu {
  display: none;
  padding: 0.25rem 0 0.5rem 0.75rem;
  border-left: 2px solid rgba(201, 162, 39, 0.3);
  margin-left: 0.25rem;
  margin-bottom: 0.25rem;
}
.mobile-nav-group.open .mobile-nav-submenu {
  display: block;
}
.mobile-nav-submenu a {
  display: block;
  padding: 0.55rem 0;
  font-size: 0.875rem;
  color: #64748b;
}
.mobile-nav-submenu a:hover {
  color: #C9A227;
}
.mobile-nav-link {
  display: block;
  padding: 0.85rem 0;
  color: #0B1F4D;
  font-weight: 500;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(11, 31, 77, 0.06);
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #C9A227;
}

/* Gallery grid — premium hover (see .premium-img-frame below) */
.gallery-item {
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Course tabs */
.course-tab.active {
  background-color: #0B1F4D;
  color: #ffffff;
}
.course-tab:not(.active) {
  background-color: #ffffff;
  color: #0B1F4D;
  border: 1px solid #e5e7eb;
}
.course-panel {
  display: none;
}
.course-panel.active {
  display: block;
}

/* ── Premium Courses Section ── */
.courses-section {
  position: relative;
  overflow: hidden;
  background: #f8f9fc;
}
.courses-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(201, 162, 39, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(11, 31, 77, 0.05) 0%, transparent 55%);
  pointer-events: none;
}
.courses-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0B1F4D;
}
.courses-badge i {
  color: #C9A227;
  font-size: 0.65rem;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
.course-card-premium {
  display: block;
  padding: 1.35rem 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(11, 31, 77, 0.07);
  border-radius: 1.25rem;
  box-shadow: 0 12px 32px -12px rgba(11, 31, 77, 0.12);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.course-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0B1F4D, #C9A227);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.course-card-premium:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 20px 44px -12px rgba(11, 31, 77, 0.2);
}
.course-card-premium:hover::before {
  opacity: 1;
}
.course-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.course-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(11, 31, 77, 0.06) 0%, rgba(201, 162, 39, 0.14) 100%);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 0.75rem;
  color: #C9A227;
  font-size: 1rem;
  transition: all 0.35s ease;
}
.course-card-premium:hover .course-card-icon {
  background: #0B1F4D;
  color: #C9A227;
  border-color: #0B1F4D;
}
.course-card-duration {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #64748b;
  padding: 0.25rem 0.65rem;
  background: #f1f5f9;
  border-radius: 9999px;
}
.course-card-abbr {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #C9A227;
  line-height: 1.1;
  transition: color 0.3s ease;
}
.course-card-premium:hover .course-card-abbr {
  color: #0B1F4D;
}
.course-card-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0B1F4D;
  margin-top: 0.35rem;
  line-height: 1.35;
}
.course-card-desc {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.55;
  margin-top: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.course-card-tag {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #C9A227;
  padding: 0.2rem 0.6rem;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 9999px;
}
.courses-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: #0B1F4D;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 28px -8px rgba(11, 31, 77, 0.35);
}
.courses-more-btn:hover {
  background: #C9A227;
  color: #0B1F4D;
  box-shadow: 0 12px 28px -8px rgba(201, 162, 39, 0.4);
}
.courses-more-btn i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}
.courses-more-btn:hover i {
  transform: translateX(4px);
}
@media (max-width: 480px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
  .course-card-abbr {
    font-size: 1.75rem;
  }
}

/* Gallery filter */
.gallery-filter.active {
  background-color: #0B1F4D;
  color: #ffffff;
}

/* Institution branches */
.branch-section {
  position: relative;
}
.branch-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}
.branch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0B1F4D;
  margin-bottom: 0.75rem;
}
.branch-badge i {
  color: #C9A227;
}
.institution-card {
  display: block;
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px rgba(11, 31, 77, 0.12);
  border: 1px solid rgba(11, 31, 77, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.institution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -18px rgba(11, 31, 77, 0.22);
  border-color: rgba(201, 162, 39, 0.25);
}
.institution-card-img-wrap {
  position: relative;
  padding: 1rem 1rem 0;
}
.institution-card-img-inner {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e8edf5;
  border: 1px solid rgba(11, 31, 77, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.institution-card-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.institution-card-img-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.45s ease;
}
.institution-card-img-inner.premium-img-frame .institution-card-img-overlay {
  background: linear-gradient(to top, rgba(11, 31, 77, 0.5) 0%, rgba(11, 31, 77, 0.12) 50%, transparent 72%);
  opacity: 0.55;
}
.institution-card:hover .institution-card-img-inner.premium-img-frame .institution-card-img-overlay,
.institution-card:focus-within .institution-card-img-inner.premium-img-frame .institution-card-img-overlay,
.institution-card-img-inner.premium-img-frame.is-hovered .institution-card-img-overlay,
.institution-card-img-inner.premium-img-frame.is-touch-active .institution-card-img-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(11, 31, 77, 0.88) 0%, rgba(11, 31, 77, 0.45) 50%, rgba(11, 31, 77, 0.2) 100%);
}
.institution-card:hover .institution-card-img-inner.premium-img-frame img,
.institution-card:focus-within .institution-card-img-inner.premium-img-frame img,
.institution-card-img-inner.premium-img-frame.is-hovered img,
.institution-card-img-inner.premium-img-frame.is-touch-active img {
  transform: scale(1.1);
}
.institution-card:hover .institution-card-img-inner.premium-img-frame,
.institution-card:focus-within .institution-card-img-inner.premium-img-frame,
.institution-card-img-inner.premium-img-frame.is-hovered,
.institution-card-img-inner.premium-img-frame.is-touch-active {
  box-shadow: 0 20px 40px -10px rgba(11, 31, 77, 0.35);
}
.institution-card-img-inner.premium-img-frame.is-hovered .premium-img-hover-content,
.institution-card-img-inner.premium-img-frame.is-touch-active .premium-img-hover-content {
  opacity: 1;
  transform: translateY(0);
}
.institution-card-img-inner.premium-img-frame.is-hovered .premium-img-title,
.institution-card-img-inner.premium-img-frame.is-touch-active .premium-img-title {
  transform: translateY(0);
}
.institution-card-img-inner.premium-img-frame.is-hovered .premium-img-arrow,
.institution-card-img-inner.premium-img-frame.is-touch-active .premium-img-arrow {
  transform: scale(1);
  opacity: 1;
}
.institution-card-img-inner.premium-img-frame.is-hovered .premium-img-arrow i,
.institution-card-img-inner.premium-img-frame.is-touch-active .premium-img-arrow i {
  animation: premiumImgArrowNudge 1s ease-in-out infinite;
}
.institution-card-est {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  padding: 0.3rem 0.85rem;
  background: rgba(11, 31, 77, 0.9);
  color: #C9A227;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 9999px;
  border: 1px solid rgba(201, 162, 39, 0.35);
}
.institution-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.institution-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0B1F4D;
  line-height: 1.3;
}
.institution-card-body p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.65;
  margin-top: 0.75rem;
}
.institution-card-desc {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.65;
  margin-top: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.institution-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #C9A227;
}
.institution-card:hover .institution-card-link i {
  transform: translateX(4px);
}
.institution-card-link i {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}

/* ── Premium image hover (colleges + gallery + content images) ── */
.premium-img-frame {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.premium-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.premium-content-img-wrap {
  position: relative;
}
.premium-content-img-frame {
  width: 100%;
  transition: box-shadow 0.45s ease, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.premium-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(11, 31, 77, 0.82) 0%, rgba(11, 31, 77, 0.4) 45%, rgba(11, 31, 77, 0.15) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.institution-card-img-inner.premium-img-frame .institution-card-img-overlay.premium-img-overlay {
  opacity: 0.55;
}
.gallery-item.premium-img-frame:hover .premium-img-overlay,
.gallery-item.premium-img-frame:focus-visible .premium-img-overlay,
.gallery-item.premium-img-frame.is-hovered .premium-img-overlay,
.gallery-item.premium-img-frame.is-touch-active .premium-img-overlay,
.premium-content-img-frame:hover .premium-img-overlay,
.premium-content-img-frame.is-hovered .premium-img-overlay,
.premium-content-img-frame.is-touch-active .premium-img-overlay,
.premium-content-img-frame:focus-visible .premium-img-overlay {
  opacity: 1;
}
.gallery-item.premium-img-frame:hover img,
.gallery-item.premium-img-frame:focus-visible img,
.gallery-item.premium-img-frame.is-hovered img,
.gallery-item.premium-img-frame.is-touch-active img,
.premium-content-img-frame:hover img,
.premium-content-img-frame.is-hovered img,
.premium-content-img-frame.is-touch-active img,
.premium-content-img-frame:focus-visible img {
  transform: scale(1.1);
}
.gallery-item.premium-img-frame:hover,
.gallery-item.premium-img-frame:focus-visible,
.gallery-item.premium-img-frame.is-hovered,
.gallery-item.premium-img-frame.is-touch-active {
  box-shadow: 0 24px 48px -12px rgba(11, 31, 77, 0.38);
  transform: translateY(-4px);
}
.premium-content-img-frame:hover,
.premium-content-img-frame.is-hovered,
.premium-content-img-frame.is-touch-active,
.premium-content-img-frame:focus-visible {
  box-shadow: 0 24px 48px -12px rgba(11, 31, 77, 0.35);
  transform: translateY(-4px);
}
.gallery-item.premium-img-frame {
  transition: box-shadow 0.45s ease, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.premium-img-hover-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.premium-img-frame:hover .premium-img-hover-content,
.premium-img-frame:focus-visible .premium-img-hover-content,
.premium-img-frame.is-hovered .premium-img-hover-content,
.premium-img-frame.is-touch-active .premium-img-hover-content,
.institution-card:hover .premium-img-hover-content,
.institution-card:focus-within .premium-img-hover-content {
  opacity: 1;
  transform: translateY(0);
}
.premium-img-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1.35;
  max-width: 92%;
  transform: translateY(14px);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.premium-img-frame:hover .premium-img-title,
.premium-img-frame:focus-visible .premium-img-title,
.premium-img-frame.is-hovered .premium-img-title,
.premium-img-frame.is-touch-active .premium-img-title,
.institution-card:hover .premium-img-title,
.institution-card:focus-within .premium-img-title {
  transform: translateY(0);
}
.premium-img-arrow {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4ad2f, #C9A227);
  color: #0B1F4D;
  font-size: 0.95rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}
.premium-img-frame:hover .premium-img-arrow,
.premium-img-frame:focus-visible .premium-img-arrow,
.premium-img-frame.is-hovered .premium-img-arrow,
.premium-img-frame.is-touch-active .premium-img-arrow,
.institution-card:hover .premium-img-arrow,
.institution-card:focus-within .premium-img-arrow {
  transform: scale(1);
  opacity: 1;
}
.premium-img-frame:hover .premium-img-arrow i,
.premium-img-frame:focus-visible .premium-img-arrow i,
.premium-img-frame.is-hovered .premium-img-arrow i,
.premium-img-frame.is-touch-active .premium-img-arrow i,
.institution-card:hover .premium-img-arrow i,
.institution-card:focus-within .premium-img-arrow i {
  animation: premiumImgArrowNudge 1s ease-in-out infinite;
}
@keyframes premiumImgArrowNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}
/* Image lightbox */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(11, 31, 77, 0.92);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.image-lightbox-inner {
  position: relative;
  max-width: min(96vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.image-lightbox img {
  max-width: 100%;
  max-height: calc(90vh - 3rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.image-lightbox-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-align: center;
  max-width: 36rem;
}
.image-lightbox-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #C9A227;
  color: #0B1F4D;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}
.image-lightbox-close:hover {
  transform: scale(1.08);
  background: #ffffff;
}
body.lightbox-open {
  overflow: hidden;
}
@media (hover: none) {
  .gallery-item.premium-img-frame .premium-img-overlay {
    opacity: 0.45;
  }
  .gallery-item.premium-img-frame .premium-img-hover-content {
    opacity: 0.95;
    transform: none;
  }
  .gallery-item.premium-img-frame .premium-img-title {
    transform: none;
    font-size: 0.78rem;
  }
  .gallery-item.premium-img-frame .premium-img-arrow {
    transform: scale(0.9);
    opacity: 1;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
  .institution-card-img-inner.premium-img-frame .premium-img-hover-content {
    opacity: 0;
  }
  .institution-card-img-inner.premium-img-frame.is-hovered .premium-img-hover-content,
  .institution-card-img-inner.premium-img-frame.is-touch-active .premium-img-hover-content {
    opacity: 1;
  }
  .premium-content-img-frame .premium-img-overlay {
    opacity: 0.45;
  }
  .premium-content-img-frame .premium-img-hover-content {
    opacity: 0.95;
    transform: none;
  }
  .premium-content-img-frame .premium-img-title {
    transform: none;
    font-size: 0.85rem;
  }
  .premium-content-img-frame .premium-img-arrow {
    transform: scale(0.9);
    opacity: 1;
  }
  .premium-content-img-frame.is-hovered .premium-img-overlay,
  .premium-content-img-frame.is-touch-active .premium-img-overlay {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .premium-img-frame img,
  .premium-img-overlay,
  .premium-img-hover-content,
  .premium-img-arrow,
  .premium-img-title,
  .gallery-item.premium-img-frame {
    transition: none !important;
    animation: none !important;
  }
  .premium-img-arrow i {
    animation: none !important;
  }
}

.samiti-intro {
  background: linear-gradient(135deg, rgba(11, 31, 77, 0.03) 0%, rgba(201, 162, 39, 0.08) 100%);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
}
.college-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.5rem;
}
.college-location-tag i {
  color: #C9A227;
}

/* ── Why Choose SDSN ── */
.why-choose-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.why-choose-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(201, 162, 39, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(11, 31, 77, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #f8f9fc 0%, #ffffff 40%, #f8f9fc 100%);
  pointer-events: none;
}
.why-choose-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11, 31, 77, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
}
.why-choose-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0B1F4D;
}
.why-choose-badge i {
  color: #C9A227;
  font-size: 0.65rem;
}
.why-choose-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.why-stat-item {
  padding: 1rem 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(11, 31, 77, 0.08);
  border-radius: 1rem;
  box-shadow: 0 8px 24px -8px rgba(11, 31, 77, 0.1);
  transition: all 0.3s ease;
}
.why-stat-item:hover {
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(201, 162, 39, 0.2);
}
.why-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #C9A227;
  line-height: 1.2;
}
.why-stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-top: 0.15rem;
}
.why-choose-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #0B1F4D;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.why-choose-cta-primary:hover {
  background: #C9A227;
  color: #0B1F4D;
}
.why-choose-cta-primary i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}
.why-choose-cta-primary:hover i {
  transform: translateX(4px);
}
.why-choose-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid rgba(11, 31, 77, 0.2);
  color: #0B1F4D;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.why-choose-cta-secondary:hover {
  border-color: #C9A227;
  color: #C9A227;
}
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .why-cards-grid {
    gap: 1.25rem;
  }
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  background: #ffffff;
  border: 1px solid rgba(11, 31, 77, 0.07);
  border-radius: 1.25rem;
  box-shadow: 0 12px 32px -12px rgba(11, 31, 77, 0.12);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #C9A227, #e8c84a);
  border-radius: 0 2px 2px 0;
  transition: height 0.35s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 20px 40px -12px rgba(11, 31, 77, 0.18);
}
.why-card:hover::before {
  height: 100%;
}
.why-card--featured {
  background: linear-gradient(135deg, rgba(11, 31, 77, 0.04) 0%, rgba(201, 162, 39, 0.08) 100%);
  border-color: rgba(201, 162, 39, 0.25);
}
.why-card-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(11, 31, 77, 0.06) 0%, rgba(201, 162, 39, 0.12) 100%);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 0.85rem;
  color: #C9A227;
  font-size: 1.1rem;
  transition: all 0.35s ease;
}
.why-card:hover .why-card-icon {
  background: #0B1F4D;
  color: #C9A227;
  border-color: #0B1F4D;
  transform: scale(1.05);
}
.why-card-content {
  flex: 1;
  min-width: 0;
}
.why-card-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0B1F4D;
  line-height: 1.3;
}
.why-card-content p {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.55;
  margin-top: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.why-card-arrow {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.1);
  color: #C9A227;
  font-size: 0.65rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
  align-self: center;
}
.why-card:hover .why-card-arrow {
  opacity: 1;
  transform: translateX(0);
}
.why-highlight-strip {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: #0B1F4D;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px -15px rgba(11, 31, 77, 0.4);
}
@media (min-width: 768px) {
  .why-highlight-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 2.5rem;
  }
}
.why-highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
}
.why-highlight-item i {
  font-size: 1.35rem;
  color: #C9A227;
  width: 2.5rem;
  text-align: center;
}
.why-highlight-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}
.why-highlight-item span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.15rem;
}
.why-highlight-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
@media (min-width: 768px) {
  .why-highlight-divider {
    width: 1px;
    height: 2.5rem;
    flex-shrink: 0;
  }
}
@media (max-width: 640px) {
  .why-cards-grid {
    grid-template-columns: 1fr;
  }
  .why-card-arrow {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Latest Events Slider ── */
.latest-events-section {
  background: #ffffff;
  overflow: hidden;
}
.latest-events-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.latest-events-title {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding-bottom: 0.5rem;
}
.latest-events-title-main {
  color: #0B1F4D;
}
.latest-events-title-accent {
  color: #C9A227;
}
.latest-events-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.5rem;
  height: 4px;
  background: #C9A227;
  border-radius: 2px;
}
.latest-events-nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.events-swiper-prev,
.events-swiper-next {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  color: #64748b;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.events-swiper-prev:hover,
.events-swiper-next:hover {
  background: #0B1F4D;
  border-color: #0B1F4D;
  color: #C9A227;
}
.eventsSwiper {
  overflow: visible;
}
.eventsSwiper .swiper-slide {
  height: auto;
}
.event-card {
  display: block;
  background: #ffffff;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 77, 0.08);
  box-shadow: 0 8px 24px -8px rgba(11, 31, 77, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  color: inherit;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -10px rgba(11, 31, 77, 0.2);
}
.event-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8edf5;
}
.event-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.event-card:hover .event-card-img {
  transform: scale(1.06);
}
.event-card-date {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  padding: 0.45rem 0.85rem;
  background: #0B1F4D;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  border-top: 2px solid #C9A227;
}
.event-card-body {
  padding: 1rem 1.1rem 1.15rem;
  background: #ffffff;
  border-top: 1px solid rgba(11, 31, 77, 0.06);
}
.event-card-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #0B1F4D;
  line-height: 1.45;
  text-transform: uppercase;
}
.event-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #C9A227;
  transition: color 0.25s ease;
}
.event-card-link i {
  font-size: 0.6rem;
  transition: transform 0.25s ease;
}
.event-card:hover .event-card-link {
  color: #0B1F4D;
}
.event-card:hover .event-card-link i {
  transform: translateX(4px);
}
@media (min-width: 768px) {
  .latest-events-title {
    font-size: 2rem;
  }
  .event-card-img-wrap {
    aspect-ratio: 16 / 11;
  }
}
@media (max-width: 480px) {
  .latest-events-header {
    flex-wrap: wrap;
  }
  .latest-events-title {
    font-size: 1.5rem;
  }
}

/* ── Testimonials Section ── */
.testimonials-section {
  position: relative;
  overflow: hidden;
  background: #f8f9fc;
}
.testimonials-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(201, 162, 39, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(11, 31, 77, 0.05) 0%, transparent 55%);
  pointer-events: none;
}
.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0B1F4D;
}
.testimonials-badge i {
  color: #C9A227;
  font-size: 0.65rem;
}
.testimonials-nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.testimonials-swiper-prev,
.testimonials-swiper-next {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  color: #64748b;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px -4px rgba(11, 31, 77, 0.1);
}
.testimonials-swiper-prev:hover,
.testimonials-swiper-next:hover {
  background: #0B1F4D;
  border-color: #0B1F4D;
  color: #C9A227;
}
.testimonialsSwiper {
  overflow: visible;
}
.testimonialsSwiper .swiper-slide {
  height: auto;
}
.testimonial-card {
  position: relative;
  display: block;
  background: #ffffff;
  border: 1px solid rgba(11, 31, 77, 0.08);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 12px 32px -12px rgba(11, 31, 77, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0B1F4D, #C9A227);
  border-radius: 1.25rem 1.25rem 0 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: 0 20px 44px -12px rgba(11, 31, 77, 0.18);
}
.testimonial-card:hover::before {
  opacity: 1;
}
.testimonial-quote-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(11, 31, 77, 0.06) 0%, rgba(201, 162, 39, 0.14) 100%);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 0.75rem;
  color: #C9A227;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  font-style: italic;
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-top: 1rem;
  color: #C9A227;
  font-size: 0.75rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(11, 31, 77, 0.08);
}
.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201, 162, 39, 0.45);
  flex-shrink: 0;
}
.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0B1F4D;
  line-height: 1.3;
}
.testimonial-role {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 0.15rem;
  line-height: 1.4;
}
.testimonials-pagination {
  position: relative !important;
  margin-top: 2rem;
}
.testimonials-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
}
.testimonials-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: #C9A227 !important;
}
@media (max-width: 768px) {
  .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonials-header-text h2 {
    font-size: 2rem;
  }
}

/* ── Premium CTA ── */
.cta-premium {
  position: relative;
  padding: 5rem 0;
  background: #0B1F4D;
  overflow: hidden;
}
.cta-premium-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(201, 162, 39, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #0B1F4D 0%, #0f2a5e 50%, #0B1F4D 100%);
  pointer-events: none;
}
.cta-premium-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.5;
}
.cta-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8d48a;
}
.cta-premium-badge-dot {
  width: 7px;
  height: 7px;
  background: #C9A227;
  border-radius: 50%;
  animation: ctaPulse 2s ease infinite;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: #C9A227;
  color: #0B1F4D;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 32px -8px rgba(201, 162, 39, 0.5);
}
.cta-btn-primary:hover {
  background: #ffffff;
  color: #0B1F4D;
  transform: translateY(-2px);
}
.cta-btn-primary i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}
.cta-btn-primary:hover i {
  transform: translateX(4px);
}
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #C9A227;
  color: #C9A227;
}
.cta-premium-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cta-premium-stats div {
  text-align: center;
}
.cta-premium-stats strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #C9A227;
  line-height: 1.2;
}
.cta-premium-stats span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.2rem;
}
@media (max-width: 640px) {
  .cta-premium-stats {
    gap: 1.5rem;
  }
  .cta-premium-stats strong {
    font-size: 1.4rem;
  }
}

/* ── Premium Footer ── */
.site-footer {
  background: #071528;
  color: rgba(255, 255, 255, 0.75);
}
.site-footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .site-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .site-footer-grid {
    grid-template-columns: 1.4fr 1fr 1.2fr 1.1fr;
    gap: 2rem;
  }
}
.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  line-height: 0;
  margin-bottom: 0.25rem;
}
.footer-logo-img {
  display: block;
  width: auto;
  height: 72px;
  max-width: 72px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.footer-logo-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.2) 0%, rgba(201, 162, 39, 0.05) 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 0.75rem;
  color: #C9A227;
  font-size: 1.15rem;
}
.footer-logo-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.footer-logo-est {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  margin-top: 0.1rem;
}
.footer-about-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  max-width: 22rem;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.footer-social-link {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.footer-social-link:hover {
  background: #C9A227;
  border-color: #C9A227;
  color: #0B1F4D;
  transform: translateY(-3px);
}
.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(201, 162, 39, 0.35);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.55rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: #C9A227;
  transform: translateX(3px);
}
.footer-link-highlight {
  color: #C9A227 !important;
  font-weight: 600;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.footer-contact-list i {
  color: #C9A227;
  font-size: 0.8rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
}
.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
}
.footer-contact-list a:hover {
  color: #C9A227;
}
.footer-contact-list span {
  color: rgba(255, 255, 255, 0.65);
}

/* Clickable phone / WhatsApp links */
.contact-phone-link {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.contact-phone-link:hover {
  color: #C9A227;
}
.footer-contact-list a.contact-phone-link {
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact-list a.contact-phone-link:hover {
  color: #C9A227;
}
.mobile-drawer-contact a.contact-phone-link:hover {
  color: #C9A227;
}

/* Contact page — college-wise numbers */
.contact-college-section {
  padding-top: 0.5rem;
}
.contact-college-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-college-item-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid rgba(11, 31, 77, 0.08);
  box-shadow: 0 8px 24px -12px rgba(11, 31, 77, 0.12);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.contact-college-item-inner:hover {
  box-shadow: 0 14px 32px -14px rgba(11, 31, 77, 0.2);
  transform: translateY(-2px);
}
.contact-college-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4ad2f, #C9A227);
  color: #0B1F4D;
  font-size: 0.8rem;
  font-weight: 700;
}
.contact-college-details {
  flex: 1;
  min-width: 0;
}
.contact-college-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0B1F4D;
  line-height: 1.3;
}
.contact-college-location {
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.2rem;
  line-height: 1.45;
}
.contact-college-phone {
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0B1F4D;
  padding: 0.45rem 0.75rem;
  border-radius: 9999px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.28);
  transition: background 0.2s ease, color 0.2s ease;
}
.contact-college-phone:hover {
  background: #C9A227;
  color: #0B1F4D;
}
@media (max-width: 640px) {
  .contact-college-item-inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .contact-college-phone {
    width: 100%;
    text-align: center;
    margin-top: 0.35rem;
  }
}

.footer-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #C9A227;
  transition: color 0.25s ease;
}
.footer-contact-cta:hover {
  color: #ffffff;
}
.footer-contact-cta i {
  font-size: 0.7rem;
  transition: transform 0.25s ease;
}
.footer-contact-cta:hover i {
  transform: translateX(4px);
}
.footer-col-contact {
  min-width: 0;
}
.footer-map-inline {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-map-embed {
  border-radius: 0.6rem;
  overflow: hidden;
  height: 115px;
  width: 100%;
  background: #0B1F4D;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── Premium Google Maps embed ── */
.premium-map-wrap {
  position: relative;
}
.premium-map-embed {
  position: relative;
  overflow: hidden;
  background: #0B1F4D;
  border: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow: 0 14px 36px -14px rgba(11, 31, 77, 0.45);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.premium-map-embed::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}
.premium-map-embed:hover {
  box-shadow: 0 18px 42px -14px rgba(11, 31, 77, 0.5);
}
.premium-map-iframe,
.premium-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.footer-map-embed.premium-map-embed {
  border-radius: 0.85rem;
  height: clamp(120px, 22vw, 155px);
  min-height: 120px;
}
.premium-map-embed--page {
  border-radius: 1.25rem;
  height: clamp(240px, 48vw, 380px);
  min-height: 240px;
}
.premium-map-directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.6rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.premium-map-directions-btn i {
  font-size: 0.9rem;
}
.footer-map-inline .premium-map-directions-btn {
  background: linear-gradient(135deg, #e8c547 0%, #C9A227 100%);
  color: #0B1F4D;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}
.footer-map-inline .premium-map-directions-btn:hover {
  transform: translateY(-2px);
  color: #0B1F4D;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}
.premium-map-directions-btn--page {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #0B1F4D 0%, #132a5c 100%);
  color: #ffffff;
  box-shadow: 0 10px 28px -8px rgba(11, 31, 77, 0.35);
  font-size: 0.875rem;
}
.premium-map-directions-btn--page:hover {
  background: linear-gradient(135deg, #d4ad2f 0%, #C9A227 100%);
  color: #0B1F4D;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(201, 162, 39, 0.45);
}
.premium-map-wrap--page {
  width: 100%;
}

.footer-map-inline .footer-map-directions:not(.premium-map-directions-btn):not(.footer-map-directions-btn) {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #C9A227;
  transition: color 0.25s ease;
}
.footer-map-inline .footer-map-directions:not(.premium-map-directions-btn):not(.footer-map-directions-btn):hover {
  color: #ffffff;
}
.footer-map-inline .footer-map-directions:not(.premium-map-directions-btn):not(.footer-map-directions-btn) i {
  font-size: 0.6rem;
}
.footer-map-inline .premium-map-directions-btn,
.footer-map-inline .footer-map-directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 0.65rem;
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0B1F4D !important;
  background: linear-gradient(135deg, #e8c547 0%, #C9A227 100%);
  border: 1px solid rgba(11, 31, 77, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}
.footer-map-inline .premium-map-directions-btn span,
.footer-map-inline .footer-map-directions-btn span {
  color: #0B1F4D;
}
.footer-map-inline .premium-map-directions-btn i,
.footer-map-inline .footer-map-directions-btn i {
  color: #0B1F4D;
  font-size: 0.85rem;
}
.footer-map-inline .premium-map-directions-btn:hover,
.footer-map-inline .footer-map-directions-btn:hover {
  transform: translateY(-2px);
  color: #0B1F4D !important;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}
.footer-map-inline .premium-map-directions-btn:hover span,
.footer-map-inline .footer-map-directions-btn:hover span,
.footer-map-inline .premium-map-directions-btn:hover i,
.footer-map-inline .footer-map-directions-btn:hover i {
  color: #0B1F4D;
}
.site-footer-bottom {
  padding: 1.5rem 0;
}
.site-footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}
.footer-copyright .footer-bottom-dot {
  margin: 0 0.35rem;
  color: rgba(255, 255, 255, 0.25);
}
.footer-credit-link {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  transition: color 0.25s ease;
}
.footer-credit-link:hover {
  color: #C9A227;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s ease;
}
.footer-bottom-links a:hover {
  color: #C9A227;
}
.footer-bottom-dot {
  color: rgba(255, 255, 255, 0.25);
}

/* ── Floating Call + WhatsApp ── */
.floating-contact {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.floating-contact-btn {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.25rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.floating-contact-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}
.floating-contact-btn--call {
  background: #0B1F4D;
  color: #C9A227;
  border: none;
}
.floating-contact-btn--call i {
  font-size: 1.15rem;
  transform: rotate(-15deg);
}
.floating-contact-btn--whatsapp {
  background: #25D366;
  color: #ffffff;
  border: none;
}
.floating-contact-btn--whatsapp i {
  font-size: 1.65rem;
}
body.menu-open .floating-contact,
body.enquiry-open .floating-contact {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s;
}
body.enquiry-open {
  overflow: hidden;
}
body.menu-open .enquiry-float-tab,
body.enquiry-open .enquiry-float-tab {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 640px) {
  .floating-contact {
    bottom: 1rem;
    right: 1rem;
    gap: 0.55rem;
  }
  .floating-contact-btn {
    width: 3rem;
    height: 3rem;
  }
  .floating-contact-btn--call i {
    font-size: 1.05rem;
  }
  .floating-contact-btn--whatsapp i {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .enquiry-float-tab {
    top: 58%;
  }
}

/* ── Admission Enquiry Popup ── */
.enquiry-float-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 98;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem 0.65rem 0.65rem;
  background: linear-gradient(135deg, #C9A227 0%, #e0b83a 100%);
  color: #0B1F4D;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 0 9999px 9999px 0;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.enquiry-float-tab i {
  font-size: 0.9rem;
}
.enquiry-float-tab:hover {
  padding-right: 1.1rem;
  transform: translateY(-50%) translateX(2px);
  box-shadow: 6px 6px 24px rgba(0, 0, 0, 0.3);
}
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.enquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.enquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 35, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.enquiry-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 32rem;
  max-height: 92vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 30px 60px -20px rgba(11, 31, 77, 0.45);
  border: 1px solid rgba(201, 162, 39, 0.2);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.enquiry-modal.is-open .enquiry-modal-dialog {
  transform: translateY(0) scale(1);
}
.enquiry-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  color: #64748b;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.enquiry-modal-close:hover {
  background: #0B1F4D;
  color: #C9A227;
}
.enquiry-modal-header {
  text-align: center;
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}
.enquiry-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0B1F4D;
}
.enquiry-modal-badge i {
  color: #C9A227;
  font-size: 0.65rem;
}
.enquiry-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: #0B1F4D;
  margin-top: 0.75rem;
  line-height: 1.25;
}
.enquiry-modal-title span {
  color: #C9A227;
}
.enquiry-modal-subtitle {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.5rem;
  line-height: 1.55;
}
.enquiry-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.enquiry-field--full {
  grid-column: 1 / -1;
}
.enquiry-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0B1F4D;
  margin-bottom: 0.35rem;
}
.enquiry-field label span {
  color: #C9A227;
}
.enquiry-field input,
.enquiry-field select,
.enquiry-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.6rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.enquiry-field input:focus,
.enquiry-field select:focus,
.enquiry-field textarea:focus {
  outline: none;
  border-color: #C9A227;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
  background: #ffffff;
}
.enquiry-field textarea {
  resize: vertical;
  min-height: 4.5rem;
}
.enquiry-field-error input,
.enquiry-field-error select {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}
.enquiry-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0.85rem 1.5rem;
  background: #0B1F4D;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 28px -8px rgba(11, 31, 77, 0.4);
}
.enquiry-submit-btn:hover {
  background: #C9A227;
  color: #0B1F4D;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(201, 162, 39, 0.45);
}
.enquiry-submit-btn i {
  font-size: 0.75rem;
}
.enquiry-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: #94a3b8;
}
.enquiry-form-note i {
  font-size: 0.65rem;
}
.enquiry-success {
  text-align: center;
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.enquiry-success-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(11, 31, 77, 0.08) 100%);
  border: 2px solid rgba(201, 162, 39, 0.4);
  border-radius: 50%;
  color: #C9A227;
  font-size: 1.5rem;
}
.enquiry-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B1F4D;
  margin-top: 1rem;
}
.enquiry-success p {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.5rem;
  line-height: 1.6;
}
.enquiry-success-call {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #C9A227;
  transition: color 0.25s ease;
}
.enquiry-success-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.75rem;
}
.enquiry-success-call + .enquiry-success-call {
  margin-top: 0;
}
.enquiry-success-call:hover {
  color: #0B1F4D;
}
.enquiry-success-close {
  margin-top: 1.25rem;
  padding: 0.65rem 1.75rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0B1F4D;
  cursor: pointer;
  transition: all 0.25s ease;
}
.enquiry-success-close:hover {
  background: #0B1F4D;
  color: #ffffff;
  border-color: #0B1F4D;
}
@media (max-width: 640px) {
  .enquiry-float-tab span {
    display: none;
  }
  .enquiry-float-tab {
    padding: 0.65rem;
    border-radius: 0 0.75rem 0.75rem 0;
  }
  .enquiry-form-grid {
    grid-template-columns: 1fr;
  }
  .enquiry-modal-dialog {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .enquiry-modal-title {
    font-size: 1.4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .enquiry-modal,
  .enquiry-modal-dialog,
  .enquiry-float-tab {
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   GLOBAL RESPONSIVE — 320px · 375px · 768px · desktop
   ═══════════════════════════════════════════════════════════════════════════ */
html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  overflow-x: hidden;
  max-width: 100%;
  min-width: 0;
}
body.menu-open,
body.enquiry-open {
  overflow: hidden;
  max-width: 100%;
}
img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}
.container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
[class*="grid"],
[class*="flex"] {
  min-width: 0;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}

/* Overflow-safe tables */
.responsive-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.responsive-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

/* Horizontal scroll tab/filter rows */
.courses-tabs,
.gallery-filters-row {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.courses-tabs::-webkit-scrollbar,
.gallery-filters-row::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .courses-tabs,
  .gallery-filters-row {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .courses-tabs .course-tab,
  .gallery-filters-row .gallery-filter {
    flex-shrink: 0;
  }
}

/* Section spacing */
@media (max-width: 767px) {
  .section-padding {
    padding: 3rem 0;
  }
}
@media (max-width: 375px) {
  .section-padding {
    padding: 2.5rem 0;
  }
}

/* Top bar */
@media (max-width: 767px) {
  .top-bar-premium {
    font-size: 0.75rem;
  }
  .topbar-badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.7rem;
  }
  .topbar-badge span:not(.topbar-badge-dot) {
    max-width: 8.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  .topbar-link span {
    display: none;
  }
  .topbar-social {
    gap: 0.35rem;
  }
}

/* Header & logo */
@media (min-width: 1024px) {
  .site-header-inner {
    gap: 2.75rem;
  }
  .site-logo-img {
    height: 72px;
    max-width: 72px;
  }
  .site-logo-title {
    font-size: 1.22rem;
  }
  .site-logo {
    max-width: min(100%, 30rem);
    gap: 0.95rem;
  }
}
@media (max-width: 1023px) {
  .site-header-inner {
    padding: 0.5rem 0;
    gap: 0.85rem;
    justify-content: space-between;
  }
  .site-nav {
    margin-left: 0;
  }
  .site-logo-img {
    height: 50px;
    max-width: 50px;
  }
  .site-logo-title {
    font-size: 0.88rem;
  }
  .site-logo-sub {
    font-size: 0.55rem;
  }
  .site-logo {
    max-width: min(100%, 18rem);
    gap: 0.55rem;
  }
  .site-logo-mark {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  .site-logo-name {
    font-size: 1.05rem;
  }
  .site-logo-est {
    font-size: 0.58rem;
  }
  .mobile-menu-btn {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-logo-img {
    height: 54px;
    max-width: 54px;
  }
  .site-logo-title {
    font-size: 0.98rem;
  }
}
@media (max-width: 375px) {
  .site-logo-img {
    height: 42px;
    max-width: 42px;
  }
  .site-logo-title {
    font-size: 0.76rem;
    line-height: 1.2;
  }
  .site-logo-sub {
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }
  .site-logo {
    max-width: min(100%, 15rem);
  }
}
@media (max-width: 320px) {
  .site-logo-img {
    height: 38px;
    max-width: 38px;
  }
  .site-logo-title {
    font-size: 0.7rem;
  }
  .site-logo-text {
    max-width: 8.5rem;
  }
  .site-logo-name {
    font-size: 0.95rem;
  }
  .site-logo-est {
    display: none;
  }
}

/* Desktop nav — Tailwind lg:flex (1024px) handles display; hamburger hidden via lg:hidden */

/* Mobile drawer — full width on very small screens */
@media (max-width: 375px) {
  .mobile-drawer-panel {
    width: 100%;
    max-width: 100%;
  }
}

/* Announcement ticker small screens */
@media (max-width: 320px) {
  .announcement-ticker {
    height: 36px;
  }
  .announcement-ticker-link,
  .announcement-ticker-text {
    font-size: 0.72rem;
  }
  .announcement-ticker-sep {
    padding: 0 0.65rem;
  }
}

/* Hero */
@media (max-width: 767px) {
  .hero-section {
    min-height: 480px;
    max-height: 85vh;
  }
  .hero-copy-panel {
    max-width: 100%;
  }
  .hero-actions {
    gap: 0.5rem;
  }
  .hero-btn {
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
  }
}
@media (max-width: 375px) {
  .hero-section {
    min-height: 440px;
  }
  .hero-title-accent {
    font-size: 0.88em;
  }
  .container.mx-auto.px-6,
  .container.mx-auto.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Page banners */
@media (max-width: 767px) {
  .page-banner {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .page-banner h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
  }
}

/* Cards & images */
@media (max-width: 767px) {
  .institution-card:hover,
  .premium-card:hover {
    transform: none;
  }
  .institution-card-body h3 {
    font-size: 1rem;
  }
  .institution-card-desc {
    font-size: 0.82rem;
  }
  .course-card-premium {
    padding: 1.1rem 1rem;
  }
  .gallery-item {
    min-height: 0;
  }
}

/* Message / rules pages */
@media (max-width: 767px) {
  .message-page-content {
    padding: 0;
  }
  .message-lead-card {
    padding: 1.25rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .message-lead-card .message-portrait {
    width: 96px;
    height: 96px;
  }
  .rules-list li {
    gap: 0.75rem;
    padding: 1rem 0;
  }
}

/* Events & testimonials sliders */
@media (max-width: 767px) {
  .events-section-header,
  .testimonials-section-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }
  .events-swiper-prev,
  .events-swiper-next,
  .testimonials-swiper-prev,
  .testimonials-swiper-next {
    width: 38px;
    height: 38px;
  }
}

/* CTA premium */
@media (max-width: 767px) {
  .cta-premium-section {
    padding: 3.5rem 0;
  }
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .cta-premium-stats {
    gap: 1rem 1.5rem;
    flex-wrap: wrap;
  }
}

/* Footer */
@media (max-width: 767px) {
  .site-footer-top {
    padding: 2.5rem 0 2rem;
  }
  .footer-about-text {
    max-width: 100%;
  }
  .footer-logo-img {
    height: 56px;
    max-width: 56px;
  }
  .footer-map-embed.premium-map-embed {
    height: 150px;
    min-height: 150px;
  }
  .premium-map-embed--page {
    min-height: 260px;
  }
  .footer-col-contact {
    grid-column: 1 / -1;
  }
  .site-footer-bottom-inner {
    text-align: center;
  }
  .footer-copyright {
    font-size: 0.7rem;
    line-height: 1.65;
    padding: 0 0.5rem;
  }
  .footer-bottom-dot {
    display: none;
  }
  .footer-copyright .footer-bottom-dot + *,
  .footer-copyright br {
    display: block;
    margin-top: 0.25rem;
  }
}

/* Forms — contact, admissions, enquiry */
@media (max-width: 767px) {
  .enquiry-modal {
    padding: 0.75rem;
    align-items: flex-end;
  }
  .enquiry-modal-dialog {
    max-height: 94vh;
    border-radius: 1rem 1rem 0 0;
    padding: 1.35rem 1.15rem 1.15rem;
  }
  .enquiry-form-grid {
    grid-template-columns: 1fr !important;
  }
  form.bg-white.p-8 {
    padding: 1.25rem !important;
  }
  input,
  select,
  textarea {
    font-size: 16px; /* prevent iOS zoom on focus */
  }
}

/* Floating buttons & enquiry tab */
@media (max-width: 480px) {
  .floating-contact {
    bottom: 0.85rem;
    right: 0.85rem;
    gap: 0.5rem;
  }
  .floating-contact-btn {
    width: 2.85rem;
    height: 2.85rem;
  }
  .enquiry-float-tab {
    padding: 0.5rem 0.65rem 0.5rem 0.5rem;
    font-size: 0.68rem;
    max-width: 52px;
    overflow: hidden;
  }
  .enquiry-float-tab span {
    display: none;
  }
}
@media (max-width: 767px) {
  .enquiry-float-tab {
    top: auto;
    bottom: 5.5rem;
    transform: none;
    border-radius: 9999px 0 0 9999px;
    padding: 0.55rem 0.7rem;
  }
  .enquiry-float-tab:hover {
    transform: translateX(2px);
  }
}

/* Swiper — prevent horizontal bleed */
.heroSwiper,
.eventsSwiper,
.testimonialsSwiper {
  max-width: 100%;
  overflow: hidden;
}

/* Utility: prevent long text overflow */
.site-footer,
.site-header,
.hero-content,
.footer-contact-list span {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Touch-friendly targets */
@media (max-width: 1023px) {
  .mobile-nav-link,
  .mobile-nav-toggle,
  .mobile-apply-btn,
  .hero-btn,
  .announcement-ticker-link {
    min-height: 44px;
  }
  .mobile-nav-link,
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
  }
}

/* Decorative blobs — clip on small screens to prevent horizontal bleed */
@media (max-width: 767px) {
  .section-padding .relative:has(> img) {
    overflow: hidden;
  }
  .glass-card.p-8 {
    padding: 1.25rem;
  }
  .why-choose-cta-primary,
  .why-choose-cta-secondary {
    flex: 1 1 auto;
    justify-content: center;
    text-align: center;
  }
}

/* Safe area — notched phones */
.floating-contact {
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  right: max(1rem, env(safe-area-inset-right, 0px));
}
@media (max-width: 767px) {
  .enquiry-float-tab {
    bottom: max(5.5rem, calc(5.5rem + env(safe-area-inset-bottom, 0px)));
    left: max(0, env(safe-area-inset-left, 0px));
  }
}
