@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Mulish:wght@300;400;500;600;700&family=Dancing+Script:wght@600&display=swap');

:root {
  --primary: #1a3a6b;
  --primary-dark: #0d2244;
  --primary-light: #2952a3;
  --accent: #c8a951;
  --accent-light: #e8c96e;
  --accent-dark: #a88830;
  --white: #ffffff;
  --off-white: #f8f5ef;
  --light-bg: #eef2f8;
  --text-dark: #1a1a2e;
  --text-body: #3a3a5c;
  --text-light: #6b7280;
  --border: #d1d5db;
  --success: #10b981;
  --shadow: 0 4px 24px rgba(26, 58, 107, 0.12);
  --shadow-lg: 0 16px 48px rgba(26, 58, 107, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Mulish', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

/* ========== CUSTOM CURSOR ========== */
.cursor {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.2s ease;
  transform: translate(-50%, -50%);
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: all 0.15s ease;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

/* ========== PRELOADER ========== */
#preloader {
  position: fixed; inset: 0;
  background: var(--primary-dark);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  width: 80px; height: 80px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: preloaderSpin 1.5s linear infinite;
  margin-bottom: 20px;
}
.preloader-logo img { width: 50px; height: 50px; object-fit: contain; }
.preloader-text {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: pulse 1.5s ease infinite;
}
@keyframes preloaderSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 0.82rem;
  border-bottom: 2px solid var(--accent);
}
.top-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.3s; }
.top-bar a:hover { color: var(--accent); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item i { color: var(--accent); font-size: 0.75rem; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  font-size: 0.75rem;
}
.social-links a:hover { background: var(--accent); color: var(--white) !important; }

/* ========== HEADER ========== */
header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}
header.scrolled { box-shadow: var(--shadow-lg); }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-img {
  width: 60px; height: 60px; object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}
.logo-text .school-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  display: block;
}
.logo-text .school-tag {
  font-size: 0.7rem;
  color: var(--accent-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ========== NAV ========== */
nav ul { display: flex; list-style: none; gap: 2px; align-items: center; }
nav ul li { position: relative; }
nav ul li a {
  display: block;
  padding: 10px 16px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  position: relative;
  border-radius: 6px;
}
nav ul li a::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--accent);
  transition: all 0.3s; border-radius: 2px;
}
nav ul li a:hover { color: var(--primary); background: var(--light-bg); }
nav ul li a:hover::after { left: 16px; right: 16px; }
nav ul li.active > a { color: var(--primary); }
nav ul li.active > a::after { left: 16px; right: 16px; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--accent);
  padding: 10px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
  padding: 10px 20px; border-radius: 0;
  font-weight: 500; font-size: 0.85rem;
}
.dropdown-menu li a::after { display: none; }
.dropdown-menu li a:hover { background: var(--light-bg); color: var(--primary); padding-left: 28px; }
.dropdown > a::before { content: ' ▾'; font-size: 0.7rem; }

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 5px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--primary); transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,34,68,0.88) 0%, rgba(13,34,68,0.5) 60%, rgba(13,34,68,0.3) 100%);
}
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 8s ease forwards; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1); } }

.hero-content {
  position: relative; z-index: 5;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  padding-top: 80px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,169,81,0.2);
  border: 1px solid rgba(200,169,81,0.5);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-tag::before { content: '★'; font-size: 0.7rem; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s 0.5s ease forwards;
}
.hero-title span { color: var(--accent-light); font-style: italic; }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.8s 0.7s ease forwards;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.9s ease forwards;
}
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 0.92rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: all 0.3s; letter-spacing: 0.3px; }
.btn-primary { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,81,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-dark:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Hero stats strip */
.hero-stats {
  display: flex; gap: 0;
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  z-index: 5;
  border-top: 3px solid var(--accent);
}
.hero-stat {
  flex: 1; padding: 24px 20px; text-align: center;
  border-right: 1px solid var(--border);
  transition: all 0.3s;
}
.hero-stat:last-child { border-right: none; }
.hero-stat:hover { background: var(--light-bg); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--primary); line-height: 1;
  display: block;
}
.stat-num span { color: var(--accent); }
.stat-label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-top: 4px; display: block; }

/* Hero dots */
.hero-dots {
  position: absolute; bottom: 110px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer; transition: all 0.3s;
  border: none;
}
.hero-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ========== NOTICE TICKER ========== */
.notice-bar {
  background: var(--primary);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--accent);
}
.notice-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 20px;
}
.notice-label {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 4px 14px;
  border-radius: 4px;
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap;
}
.ticker-wrap { flex: 1; overflow: hidden; }
.ticker {
  display: flex; gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  font-size: 0.87rem;
}
.ticker a { color: rgba(255,255,255,0.9); text-decoration: none; }
.ticker a:hover { color: var(--accent-light); }
.ticker span { color: var(--accent); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== SECTIONS ========== */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-blue { background: var(--primary); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent-dark); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px;
}
.section-eyebrow::before, .section-eyebrow::after { content: '—'; opacity: 0.5; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--primary);
  font-weight: 700; line-height: 1.25;
  margin-bottom: 16px;
}
.section-title.white { color: var(--white); }
.section-desc { font-size: 1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.75; }
.section-desc.white { color: rgba(255,255,255,0.8); }

/* ========== ABOUT SECTION ========== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; display: block; }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge .badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700;
  line-height: 1; display: block;
}
.about-img-badge .badge-text { font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.about-img-float {
  position: absolute; top: -20px; left: -20px;
  width: 140px; height: 140px;
  border-radius: 12px; overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

.about-content { padding: 20px 0; }
.about-content h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem; color: var(--accent-dark); margin-bottom: 8px;
}
.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--primary); font-weight: 700;
  line-height: 1.3; margin-bottom: 16px;
}
.about-content p { color: var(--text-body); line-height: 1.8; margin-bottom: 20px; font-size: 0.97rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.about-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--light-bg);
  border-radius: 10px; border-left: 3px solid var(--accent);
  transition: all 0.3s;
}
.about-feature:hover { background: var(--white); box-shadow: var(--shadow); }
.about-feature i { color: var(--accent); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.about-feature-text strong { display: block; font-size: 0.88rem; color: var(--primary); font-weight: 700; margin-bottom: 2px; }
.about-feature-text span { font-size: 0.8rem; color: var(--text-light); }

/* ========== WHY CHOOSE US ========== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  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: transform 0.4s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--light-bg), var(--white));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(26,58,107,0.1);
  transition: all 0.4s;
  border: 2px solid var(--border);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-color: var(--primary);
  transform: rotate(5deg) scale(1.1);
}
.feature-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--primary); margin-bottom: 12px; font-weight: 600; }
.feature-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ========== PRINCIPAL MESSAGE ========== */
.principal-section { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); }
.principal-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
.principal-img-wrap { position: relative; text-align: center; }
.principal-img {
  width: 260px; height: 300px;
  object-fit: cover;
  border-radius: 16px;
  border: 5px solid rgba(200,169,81,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.principal-quote-icon {
  position: absolute; top: -15px; left: 10px;
  font-size: 4rem; color: var(--accent); opacity: 0.3;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.principal-content {}
.principal-content .eyebrow { color: var(--accent-light); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.principal-content h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); margin-bottom: 20px; line-height: 1.3; }
.principal-content p { color: rgba(255,255,255,0.82); line-height: 1.85; margin-bottom: 16px; font-size: 0.97rem; }
.principal-sig { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }
.principal-sig .sig-name { font-family: 'Dancing Script', cursive; font-size: 1.8rem; color: var(--accent-light); }
.principal-sig .sig-title { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 4px; }

/* ========== PROGRAMS ========== */
.programs-tabs { margin-bottom: 40px; display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.program-tab {
  padding: 10px 24px;
  border-radius: 8px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-body);
  font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: all 0.3s;
}
.program-tab.active, .program-tab:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.program-panels { }
.program-panel { display: none; }
.program-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card-img { height: 180px; overflow: hidden; }
.program-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.program-card:hover .program-card-img img { transform: scale(1.08); }
.program-card-body { padding: 22px; }
.program-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--primary); margin-bottom: 10px; }
.program-card-body p { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; }
.program-tag { display: inline-block; background: var(--light-bg); color: var(--primary); font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 4px; margin-bottom: 10px; letter-spacing: 0.5px; }

/* ========== GALLERY ========== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 200px 200px; gap: 12px; }
.gallery-item { overflow: hidden; border-radius: 12px; cursor: pointer; position: relative; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gallery-item::after {
  content: '🔍';
  position: absolute; inset: 0;
  background: rgba(26,58,107,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* ========== EVENTS ========== */
.events-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.events-list { display: flex; flex-direction: column; gap: 20px; }
.event-card {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white);
  padding: 22px; border-radius: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.event-card:hover { transform: translateX(6px); border-left: 3px solid var(--accent); box-shadow: var(--shadow-lg); }
.event-date {
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  min-width: 62px;
  flex-shrink: 0;
}
.event-date .day { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; line-height: 1; display: block; }
.event-date .month { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.event-info h4 { font-size: 1rem; color: var(--primary); font-weight: 700; margin-bottom: 6px; }
.event-info p { font-size: 0.84rem; color: var(--text-light); line-height: 1.6; }
.event-meta { display: flex; gap: 14px; margin-top: 8px; font-size: 0.78rem; color: var(--text-light); }
.event-meta span { display: flex; align-items: center; gap: 4px; }
.event-meta i { color: var(--accent); }

.notice-board {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: fit-content;
  position: sticky; top: 100px;
}
.notice-board h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
  display: flex; align-items: center; gap: 10px;
}
.notice-board h3 i { color: var(--accent); }
.notice-items { display: flex; flex-direction: column; gap: 14px; max-height: 360px; overflow-y: auto; }
.notice-items::-webkit-scrollbar { width: 4px; }
.notice-items::-webkit-scrollbar-track { background: var(--light-bg); border-radius: 2px; }
.notice-items::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.notice-item { display: flex; gap: 12px; padding-bottom: 14px; border-bottom: 1px dashed var(--border); }
.notice-item:last-child { border-bottom: none; }
.notice-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 6px; }
.notice-item-content a { font-size: 0.87rem; color: var(--text-dark); text-decoration: none; font-weight: 500; line-height: 1.5; display: block; transition: color 0.3s; }
.notice-item-content a:hover { color: var(--primary); }
.notice-item-date { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }
.notice-new {
  display: inline-block;
  background: var(--success);
  color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  padding: 1px 6px; border-radius: 3px; margin-left: 6px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* ========== ACHIEVEMENTS ========== */
.achieve-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.achieve-card {
  text-align: center; padding: 36px 24px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s;
}
.achieve-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-6px); }
.achieve-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.achieve-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--accent-light); line-height: 1;
  display: block; margin-bottom: 8px;
}
.achieve-label { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 600; }

/* ========== TESTIMONIALS ========== */
.testimonials-slider { overflow: hidden; position: relative; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { min-width: 100%; }
.testimonials-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: 16px; padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-card::before {
  content: '"';
  position: absolute; top: 16px; left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--light-bg);
  line-height: 1; z-index: 0;
}
.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.92rem; color: var(--text-body); line-height: 1.8; margin-bottom: 22px; position: relative; z-index: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover;
  border: 3px solid var(--accent);
}
.author-info strong { display: block; font-size: 0.9rem; color: var(--primary); font-weight: 700; }
.author-info span { font-size: 0.78rem; color: var(--text-light); }

/* ========== ADMISSIONS ========== */
.admission-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.admission-steps { display: flex; flex-direction: column; gap: 0; }
.admission-step {
  display: flex; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.admission-step:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: all 0.3s;
}
.admission-step:hover .step-num { background: var(--accent); color: var(--primary-dark); transform: scale(1.1); }
.step-content h4 { font-size: 1rem; color: var(--primary); font-weight: 700; margin-bottom: 6px; }
.step-content p { font-size: 0.87rem; color: var(--text-light); line-height: 1.65; }

.admission-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--accent);
}
.admission-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--primary); margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Mulish', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: border-color 0.3s;
  background: var(--off-white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ========== FACULTY ========== */
.faculty-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.faculty-card {
  background: var(--white);
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  text-align: center; transition: all 0.3s;
}
.faculty-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.faculty-img { height: 220px; overflow: hidden; position: relative; }
.faculty-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.faculty-card:hover .faculty-img img { transform: scale(1.05); }
.faculty-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,58,107,0.8), transparent);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 16px;
}
.faculty-card:hover .faculty-overlay { opacity: 1; }
.faculty-overlay a { color: var(--white); font-size: 1.1rem; margin: 0 6px; transition: color 0.3s; }
.faculty-overlay a:hover { color: var(--accent-light); }
.faculty-body { padding: 20px 16px; }
.faculty-body h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--primary); font-weight: 700; margin-bottom: 4px; }
.faculty-body .subject { font-size: 0.8rem; color: var(--accent-dark); font-weight: 600; margin-bottom: 8px; }
.faculty-body .exp { font-size: 0.78rem; color: var(--text-light); }

/* ========== CONTACT ========== */
.contact-wrap { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  background: var(--white);
  border-radius: 14px; padding: 24px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 16px;
  transition: all 0.3s;
}
.contact-card:hover { border-left: 3px solid var(--accent); transform: translateX(4px); }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--primary);
  flex-shrink: 0;
}
.contact-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.87rem; color: var(--text-body); text-decoration: none; line-height: 1.6; }
.contact-card a:hover { color: var(--primary); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 20px; padding: 44px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary);
}
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--primary); margin-bottom: 28px; }

/* ========== MAP ========== */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 400px; border: none; display: block; }

/* ========== FOOTER ========== */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; text-decoration: none; }
.footer-logo img { width: 55px; height: 55px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-logo-text .name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); display: block; }
.footer-logo-text .tag { font-size: 0.7rem; color: var(--accent-light); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-desc { font-size: 0.87rem; line-height: 1.75; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s; font-size: 0.88rem;
}
.footer-social:hover { background: var(--accent); border-color: var(--accent); color: var(--primary-dark); transform: translateY(-3px); }

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--white);
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.87rem; transition: all 0.3s;
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '›'; color: var(--accent); font-size: 1rem; }
.footer-links a:hover { color: var(--accent-light); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--accent-light); text-decoration: none; }

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: var(--white); font-size: 2rem; cursor: pointer;
  background: none; border: none; transition: color 0.3s;
}
.lightbox-close:hover { color: var(--accent); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none; color: var(--white); font-size: 1.5rem;
  width: 50px; height: 50px; border-radius: 50%;
  cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); color: var(--primary-dark); }

/* ========== BACK TO TOP ========== */
.back-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 999;
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s;
  border: none; font-size: 1.1rem; text-decoration: none;
  box-shadow: var(--shadow);
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-4px); }

/* ========== SCROLL ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ========== PAGE BANNER ========== */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.page-banner::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-banner-content { position: relative; z-index: 1; }
.page-banner h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); font-weight: 700; margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: var(--accent-light); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .about-grid, .principal-wrap, .admission-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
  .achieve-grid { grid-template-columns: repeat(2, 1fr); }
  .program-panel.active { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .testimonials-inner { grid-template-columns: 1fr 1fr; }
  .about-img-float, .about-img-badge { display: none; }
  .principal-img-wrap { text-align: center; }
  .principal-img { width: 200px; height: 240px; }
}

@media (max-width: 768px) {
  .top-bar-left { display: none; }
  nav { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--white); box-shadow: var(--shadow-lg); z-index: 999; padding: 90px 20px 40px; transition: right 0.4s ease; overflow-y: auto; }
  nav.open { right: 0; }
  nav ul { flex-direction: column; gap: 4px; }
  nav ul li a { padding: 12px 16px; }
  nav ul li a::after { display: none; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .dropdown.open .dropdown-menu { max-height: 300px; }
  .hamburger { display: flex; }
  .hero-stats { position: static; flex-wrap: wrap; }
  .hero-stat { min-width: 50%; flex: none; }
  .features-grid { grid-template-columns: 1fr; }
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
  .achieve-grid { grid-template-columns: repeat(2, 1fr); }
  .program-panel.active { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .testimonials-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-bottom: 120px; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .faculty-grid { grid-template-columns: 1fr; }
  .achieve-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
  .hero-stat { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
}
