/* ============================================================
   Path Bhaban - Master Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #1565C0;
  --primary-dark:  #0D47A1;
  --primary-light: #1976D2;
  --secondary:     #0288D1;
  --accent:        #29B6F6;
  --accent-light:  #B3E5FC;
  --navy:          #0D1B40;
  --sky:           #E3F2FD;
  --white:         #FFFFFF;
  --gray-light:    #F5F7FA;
  --gray-mid:      #E8ECF0;
  --gray:          #94A3B8;
  --text-dark:     #1A237E;
  --text-body:     #374151;
  --text-muted:    #6B7280;
  --success:       #22C55E;
  --warning:       #F59E0B;
  --danger:        #EF4444;
  --shadow-sm:     0 2px 8px rgba(21,101,192,0.10);
  --shadow-md:     0 8px 24px rgba(21,101,192,0.15);
  --shadow-lg:     0 20px 60px rgba(21,101,192,0.20);
  --shadow-xl:     0 30px 80px rgba(0,0,0,0.15);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --radius-full:   9999px;
  --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.6s cubic-bezier(0.4,0,0.2,1);
  --font-main:     'Poppins', sans-serif;
  --font-display:  'Playfair Display', serif;
  --nav-height:    80px;
}

/* Dark Mode */
[data-theme="dark"] {
  --white:         #111827;
  --gray-light:    #1F2937;
  --gray-mid:      #374151;
  --sky:           #1E3A5F;
  --text-body:     #D1D5DB;
  --text-muted:    #9CA3AF;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:     0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.5);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---------- Scroll Progress Bar ---------- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  width: 0%;
  z-index: 9999;
  transition: width 0.1s;
}

/* ---------- Page Loader ---------- */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s, visibility 0.5s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 20px; font-family: var(--font-display); }
.loader-spinner {
  width: 50px; height: 50px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Announcement Marquee ---------- */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1000;
}
.announcement-bar .marquee-label {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 2px 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  margin-right: 15px;
  white-space: nowrap;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}
.announcement-inner {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.marquee-wrapper { overflow: hidden; flex: 1; }
.marquee-content {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee-content span { padding: 0 40px; opacity: 0.9; }
.marquee-content span::before { content: "🔔 "; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 998;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: var(--nav-height);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  height: 68px;
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 54px; width: 54px; object-fit: contain; border-radius: 50%; }
.nav-logo-text .name {
  font-size: 1.3rem; font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  font-family: var(--font-display);
}
.nav-logo-text .tagline {
  font-size: 0.68rem; color: var(--text-muted);
  font-weight: 400; letter-spacing: 0.5px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--primary);
  background: var(--sky);
}
.nav-links > li > a i { font-size: 0.75rem; opacity: 0.7; }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  border: 1px solid var(--gray-mid);
}
.nav-links > li:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  font-size: 0.83rem;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--sky); color: var(--primary); }
.dropdown-menu a i { width: 16px; color: var(--accent); }

/* Nav Controls */
.nav-controls { display: flex; align-items: center; gap: 8px; }
.dark-toggle {
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  background: var(--sky);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.dark-toggle:hover { background: var(--primary); color: var(--white); }
.nav-admission-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  box-shadow: 0 4px 15px rgba(21,101,192,0.35);
  transition: var(--transition) !important;
  background-size: 200% !important;
}
.nav-admission-btn:hover {
  box-shadow: 0 6px 20px rgba(21,101,192,0.5);
  transform: translateY(-2px);
  background: var(--sky) !important;
  color: var(--primary) !important;
}
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--sky);
  transition: var(--transition);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Section Utilities ---------- */
.section { padding: 90px 20px; }
.section-sm { padding: 60px 20px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sky);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
  margin: 16px auto 0;
}
.bg-light { background: var(--gray-light); }
.bg-sky { background: var(--sky); }
.bg-primary { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(21,101,192,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(21,101,192,0.5);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(41,182,246,0.4);
}
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(41,182,246,0.5); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.glass-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 50%, var(--primary) 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  filter: blur(1px);
  scale: 1.05;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,64,0.92) 0%, rgba(21,101,192,0.75) 100%);
}
/* Animated shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  animation: float 8s ease-in-out infinite;
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; animation-delay: 0s; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -50px; animation-delay: 2s; }
.shape-3 { width: 250px; height: 250px; top: 40%; right: 20%; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(41,182,246,0.2);
  border: 1px solid rgba(41,182,246,0.4);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent), #64B5F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num {
  display: block;
  font-size: 2rem; font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.75rem; color: rgba(255,255,255,0.7);
  font-weight: 400; margin-top: 4px;
}
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-wrap {
  position: relative; width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-card-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-card-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(13,27,64,0.85);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero-card-badge i { color: var(--accent); font-size: 1.5rem; }
.hero-card-badge .title { font-weight: 600; color: var(--white); font-size: 0.88rem; }
.hero-card-badge .sub { color: rgba(255,255,255,0.6); font-size: 0.75rem; }
/* Hero floating cards */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-xl);
  display: flex; align-items: center; gap: 10px;
  animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card.fc-1 { top: -20px; left: -30px; animation-delay: 0s; }
.hero-float-card.fc-2 { bottom: 70px; right: -30px; animation-delay: 2s; }
.hero-float-card i { font-size: 1.4rem; color: var(--primary); }
.hero-float-card .fc-label { font-size: 0.72rem; color: var(--text-muted); }
.hero-float-card .fc-value { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Info Bar ---------- */
.info-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 16px 20px;
}
.info-bar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.info-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; }
.info-item i { color: var(--accent); font-size: 1.1rem; }
.info-item a { color: rgba(255,255,255,0.85); }
.info-item a:hover { color: var(--accent); }

/* ---------- Stats Counter ---------- */
.stats-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 70px 20px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-5px); }
.stat-icon { font-size: 2.2rem; color: var(--accent); margin-bottom: 14px; }
.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.75); font-weight: 400; }

/* ---------- Feature Cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-icon {
  width: 64px; height: 64px;
  background: var(--sky);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--primary); color: var(--white); }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ---------- Notice Board ---------- */
.notice-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  display: flex; align-items: flex-start; gap: 16px;
  transition: var(--transition);
}
.notice-card:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.notice-card.important { border-left-color: var(--danger); }
.notice-card.event { border-left-color: var(--success); }
.notice-date {
  background: var(--sky);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  text-align: center;
  min-width: 50px;
}
.notice-date .day { font-size: 1.4rem; font-weight: 800; color: var(--primary); line-height: 1; }
.notice-date .month { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; font-weight: 600; }
.notice-body h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.notice-body p { font-size: 0.83rem; color: var(--text-muted); }
.notice-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 600;
  margin-top: 6px;
}
.notice-tag.important { background: #FEE2E2; color: var(--danger); }
.notice-tag.event { background: #DCFCE7; color: #166534; }
.notice-tag.general { background: var(--sky); color: var(--primary); }

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 500;
  background: var(--gray-mid);
  color: var(--text-body);
  transition: var(--transition);
  border: 2px solid transparent;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary); color: var(--white);
  border-color: var(--primary);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,27,64,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { color: var(--white); font-size: 0.92rem; font-weight: 600; }
.gallery-overlay p { color: rgba(255,255,255,0.7); font-size: 0.78rem; margin-top: 2px; }
.gallery-zoom {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  opacity: 0; transform: scale(0.7);
  transition: var(--transition);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 90vw; max-height: 80vh; border-radius: var(--radius-md); object-fit: contain; }
.lightbox-close {
  position: absolute; top: -40px; right: 0;
  width: 36px; height: 36px;
  background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dark); font-size: 1.1rem; cursor: pointer;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; cursor: pointer;
  transition: var(--transition); backdrop-filter: blur(10px);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-caption {
  text-align: center; margin-top: 16px;
  color: rgba(255,255,255,0.8); font-size: 0.9rem;
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 20px; left: 28px;
  font-size: 5rem; line-height: 1;
  color: var(--sky);
  font-family: var(--font-display);
  font-weight: 700;
}
.testimonial-text {
  font-size: 0.95rem; color: var(--text-muted);
  font-style: italic; line-height: 1.8;
  margin-bottom: 24px; margin-top: 30px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--primary); font-weight: 700;
  overflow: hidden; flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }
.stars { color: #F59E0B; font-size: 0.85rem; margin-bottom: 4px; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { border-radius: var(--radius-md); overflow: hidden; }
.accordion-item {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.accordion-item.open { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600; color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition);
}
.accordion-header:hover { color: var(--primary); }
.accordion-item.open .accordion-header { color: var(--primary); background: var(--sky); }
.accordion-icon {
  width: 28px; height: 28px;
  background: var(--sky); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 0.8rem;
  transition: var(--transition); flex-shrink: 0;
}
.accordion-item.open .accordion-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.accordion-body {
  padding: 0 24px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.8;
}
.accordion-body.open { max-height: 600px; padding: 16px 24px 24px; }

/* ---------- Form Styles ---------- */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-label .required { color: var(--danger); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-size: 0.92rem; color: var(--text-body);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(21,101,192,0.1); }
.form-control.error { border-color: var(--danger); }
.form-error { font-size: 0.78rem; color: var(--danger); margin-top: 4px; display: none; }
.form-error.show { display: block; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
}
.form-section-title {
  font-size: 1.1rem; font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 2px solid var(--sky);
  display: flex; align-items: center; gap: 10px;
}
.form-section-title i { color: var(--accent); }
.radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.9rem; }
.radio-label input[type="radio"] { accent-color: var(--primary); width: 16px; height: 16px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.9rem; }
.checkbox-label input[type="checkbox"] { accent-color: var(--primary); width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }

/* Step Wizard */
.step-wizard { display: flex; justify-content: center; margin-bottom: 40px; position: relative; }
.step-wizard::before {
  content: '';
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  height: 2px; width: 70%;
  background: var(--gray-mid);
  z-index: 0;
}
.step-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; z-index: 1; flex: 1; max-width: 120px;
}
.step-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-mid); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
  border: 3px solid transparent;
}
.step-item.active .step-circle { background: var(--primary); color: var(--white); border-color: var(--accent); }
.step-item.done .step-circle { background: var(--success); color: var(--white); }
.step-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; text-align: center; }
.step-item.active .step-label { color: var(--primary); font-weight: 700; }
.step-panel { display: none; }
.step-panel.active { display: block; }

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
  padding: 90px 20px 70px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header-content { position: relative; z-index: 2; text-align: center; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); font-weight: 700;
  margin-bottom: 14px;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.88rem; color: rgba(255,255,255,0.75);
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.65rem; opacity: 0.6; }

/* ---------- Team / Faculty Cards ---------- */
.teacher-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.teacher-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.teacher-img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top;
  background: var(--sky);
}
.teacher-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--sky), var(--accent-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--primary);
}
.teacher-info { padding: 22px 20px 28px; }
.teacher-name { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.teacher-subject {
  font-size: 0.82rem; color: var(--primary); font-weight: 500;
  background: var(--sky); display: inline-block;
  padding: 3px 12px; border-radius: var(--radius-full); margin-bottom: 8px;
}
.teacher-qual { font-size: 0.8rem; color: var(--text-muted); }
.teacher-exp { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* ---------- Facility Cards ---------- */
.facility-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.facility-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.facility-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, var(--sky), var(--accent-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--primary);
}
.facility-img-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--sky), var(--accent-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--primary);
}
.facility-info { padding: 24px; }
.facility-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.facility-info p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ---------- Event Cards ---------- */
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  display: flex; gap: 20px;
  transition: var(--transition);
}
.event-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.event-date-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px; text-align: center; flex-shrink: 0;
  min-width: 65px;
}
.event-date-box .day { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.event-date-box .month { font-size: 0.72rem; text-transform: uppercase; font-weight: 600; opacity: 0.85; }
.event-info { flex: 1; }
.event-info h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.event-info p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.event-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.event-meta span { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.event-meta span i { color: var(--accent); }
.event-tag {
  display: inline-block; padding: 3px 12px;
  border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 600;
}
.event-tag.upcoming { background: #EEF2FF; color: #4F46E5; }
.event-tag.past { background: var(--gray-mid); color: var(--text-muted); }

/* ---------- Download Cards ---------- */
.download-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  display: flex; align-items: center; gap: 16px;
  transition: var(--transition);
}
.download-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateX(4px); }
.download-icon {
  width: 50px; height: 50px;
  background: var(--sky); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary); flex-shrink: 0;
}
.download-info { flex: 1; }
.download-info h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.download-info p { font-size: 0.78rem; color: var(--text-muted); }
.download-btn {
  width: 38px; height: 38px;
  background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.9rem;
  transition: var(--transition); flex-shrink: 0;
}
.download-btn:hover { background: var(--primary-dark); transform: scale(1.1); }

/* ---------- Contact ---------- */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  height: 100%;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-mid);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--sky); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary); flex-shrink: 0;
}
.contact-text h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.contact-text p, .contact-text a { font-size: 0.88rem; color: var(--text-muted); }
.contact-text a:hover { color: var(--primary); }

/* ---------- Map ---------- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.map-container iframe { width: 100%; height: 400px; border: none; display: block; }

/* ---------- CTA Banner ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 20px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40v0h-2zm-56 0L0 4v2l6 6V40h2zm4 0L0 8v2l10 10V40h2zm4 0L0 12v2l14 14V40h2zm4 0L0 16v2l18 18V40h2zm4 0L0 20v2l22 22V40h2zm4 0L0 24v2l26 26V40h2zm4 0L0 28v2l30 30V40h2zm4 0L0 32v2l34 34V40h2z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-family: var(--font-display); font-size: 2.4rem; color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Admission Banner ---------- */
.admission-banner {
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  padding: 24px 40px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 8px 30px rgba(2,136,209,0.35);
}
.admission-banner-text h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); }
.admission-banner-text p { color: rgba(255,255,255,0.85); font-size: 0.88rem; }
.admission-banner .btn { background: var(--white); color: var(--primary); font-weight: 700; }
.admission-banner .btn:hover { background: var(--primary-dark); color: var(--white); }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
}
.footer-main { padding: 70px 20px 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-brand .brand-name {
  font-size: 1.6rem; font-weight: 800;
  color: var(--white); font-family: var(--font-display);
  margin-bottom: 6px;
}
.footer-brand .brand-tagline { font-size: 0.82rem; color: var(--accent); margin-bottom: 16px; font-weight: 500; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.footer-brand .trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.footer-col h4 {
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 20px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--accent);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--accent); transform: translateX(4px); }
.footer-links a i { font-size: 0.65rem; opacity: 0.6; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px; font-size: 0.87rem;
}
.footer-contact-item i { color: var(--accent); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--accent); }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}
.social-link:hover { background: var(--accent); color: var(--navy); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.83rem; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { color: var(--white); }

/* Newsletter */
.newsletter-form { display: flex; gap: 0; margin-top: 16px; }
.newsletter-form input {
  flex: 1; padding: 11px 16px;
  border: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 0.85rem; outline: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 11px 18px;
  background: var(--accent); color: var(--navy);
  font-weight: 700; font-size: 0.85rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--white); }

/* ---------- Floating Buttons ---------- */
.floating-buttons {
  position: fixed; bottom: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 500;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}
.fab:hover { transform: scale(1.1); }
.fab-whatsapp { background: #25D366; color: var(--white); }
.fab-call { background: var(--primary); color: var(--white); }
.fab-top {
  background: var(--white); color: var(--primary);
  border: 2px solid var(--gray-mid);
  opacity: 0; transform: translateY(10px);
  transition: var(--transition);
}
.fab-top.visible { opacity: 1; transform: translateY(0); }
.fab-tooltip {
  position: absolute; right: 62px; top: 50%; transform: translateY(-50%);
  background: var(--text-dark); color: var(--white);
  padding: 4px 10px; border-radius: var(--radius-sm);
  font-size: 0.75rem; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.fab:hover .fab-tooltip { opacity: 1; }

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-up { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
.scale-up.visible { opacity: 1; transform: scale(1); }
.stagger-children > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }

/* ---------- Alert Messages ---------- */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem;
}
.alert-success { background: #DCFCE7; color: #166534; border: 1px solid #86EFAC; }
.alert-error { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }
.alert-info { background: #EFF6FF; color: #1E40AF; border: 1px solid #93C5FD; }
.alert-warning { background: #FFFBEB; color: #92400E; border: 1px solid #FCD34D; }
.alert i { margin-top: 1px; font-size: 1rem; flex-shrink: 0; }

/* ---------- Tables ---------- */
.table-responsive { overflow-x: auto; border-radius: var(--radius-md); }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
th {
  background: var(--primary); color: var(--white);
  padding: 14px 16px; text-align: left;
  font-weight: 600; font-size: 0.85rem;
}
td { padding: 12px 16px; border-bottom: 1px solid var(--gray-mid); color: var(--text-body); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--gray-light); }
tr:nth-child(even) td { background: var(--gray-light); }
tr:nth-child(even):hover td { background: var(--sky); }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 600;
}
.badge-primary { background: var(--sky); color: var(--primary); }
.badge-success { background: #DCFCE7; color: #166534; }
.badge-danger { background: #FEE2E2; color: #991B1B; }
.badge-warning { background: #FFFBEB; color: #92400E; }

/* ---------- Pricing / Fee Cards ---------- */
.fee-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  text-align: center;
}
.fee-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white); border: none;
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}
.fee-card:hover { transform: translateY(-6px) scale(1.02); }
.fee-card.featured:hover { transform: translateY(-6px) scale(1.05); }
.fee-amount {
  font-size: 2.5rem; font-weight: 800;
  color: var(--primary); margin: 16px 0;
}
.fee-card.featured .fee-amount { color: var(--white); }
.fee-list { text-align: left; margin: 20px 0; }
.fee-list li {
  padding: 8px 0; border-bottom: 1px solid var(--gray-mid);
  font-size: 0.88rem; display: flex; align-items: center; gap: 10px;
}
.fee-card.featured .fee-list li { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); }
.fee-list li i { color: var(--success); }
.fee-card.featured .fee-list li i { color: #86EFAC; }

/* ---------- Process Steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
}
.process-step { text-align: center; position: relative; }
.process-num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(21,101,192,0.35);
  position: relative; z-index: 2;
}
.process-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.process-step p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }

/* ---------- Image Cards ---------- */
.img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.img-card img { width: 100%; object-fit: cover; transition: var(--transition-slow); display: block; }
.img-card:hover img { transform: scale(1.05); }

/* ---------- Quote / Highlight Box ---------- */
.highlight-box {
  background: linear-gradient(135deg, var(--sky), var(--accent-light));
  border-radius: var(--radius-lg);
  padding: 36px;
  border-left: 5px solid var(--primary);
  position: relative;
}
.highlight-box blockquote {
  font-size: 1.1rem; font-style: italic;
  color: var(--text-dark); line-height: 1.8;
  font-family: var(--font-display);
}
.highlight-box cite {
  display: block; margin-top: 14px;
  font-size: 0.88rem; color: var(--primary); font-weight: 700;
  font-style: normal;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav-links { gap: 2px; }
  .nav-links > li > a { padding: 7px 10px; font-size: 0.82rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --nav-height: 70px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid-3 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 60px 16px; }
  .section-title { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-content { padding: 100px 16px 60px; }
  .form-grid-3 { grid-template-columns: 1fr; }
  .event-card { flex-direction: column; }
  .lightbox-prev { left: -50px; }
  .lightbox-next { right: -50px; }
  .step-wizard { gap: 0; }
  .step-wizard::before { width: 80%; }
  .step-label { font-size: 0.65rem; }
}

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 997;
  overflow-y: auto;
  padding: 90px 24px 40px;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { display: flex; transform: translateX(0); }
.mobile-nav a {
  padding: 14px 16px;
  font-size: 1rem; font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--gray-mid);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--primary); background: var(--sky); border-color: transparent; }
.mobile-nav .admit-link {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white); text-align: center;
  border-radius: var(--radius-full); border: none;
  font-weight: 700; padding: 16px;
}

/* ---------- Slider Controls ---------- */
.slider-dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition);
}
.dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.fw-700 { font-weight: 700; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.gap-24 { gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
