/* ================================================================
   SIVA COLLEGE OF EDUCATION - Shared Stylesheet
   Pure CSS · Mobile-first · No frameworks
   ================================================================ */

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d2060;
  --navy-light: #1a3a8a;
  --gold:       #e8a020;
  --gold-light: #f5c060;
  --white:      #ffffff;
  --bg:         #f4f6fb;
  --bg-card:    #ffffff;
  --text:       #1a1a2e;
  --text-muted: #5a6478;
  --border:     #dce2ef;
  --shadow-sm:  0 2px 8px rgba(13,32,96,.08);
  --shadow-md:  0 6px 24px rgba(13,32,96,.12);
  --shadow-lg:  0 16px 48px rgba(13,32,96,.16);
  --radius:     12px;
  --radius-sm:  6px;
  --transition: .3s ease;
  --font:       'Segoe UI','Inter',Arial,sans-serif;
}

html { font-size:16px; scroll-behavior:smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width:100%; display:block; }
a   { color:inherit; text-decoration:none; }
ul  { list-style:none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Top Bar ──────────────────────────────────────────────────── */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  padding: 6px 0;
}
.top-bar .container { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:6px; }
.top-bar a          { color:var(--gold-light); transition:color var(--transition); }
.top-bar a:hover    { color:var(--white); }
.top-bar-links      { display:flex; gap:20px; flex-wrap:wrap; }

/* ── Header ───────────────────────────────────────────────────── */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  position: relative;
}
.logo-block {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.logo-img {
  width: 68px; height: 68px;
  border-radius: 50%;
  object-fit: cover;
  1border: 3px solid var(--gold);
  padding: 3px;
}
.logo-text h1 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.logo-text .tagline {
  font-size: .76rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ── Navigation ───────────────────────────────────────────────── */
.main-nav { display:flex; align-items:center; }
.nav-list { display:flex; gap:2px; align-items:center; flex-wrap:wrap; }
.nav-list li a {
  display: block;
  padding: 7px 12px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.nav-list li a:hover,
.nav-list li a.active { background:var(--navy); color:var(--white); }
.nav-list li a.nav-cta {
  background: var(--gold);
  color: var(--white);
  border-radius: 20px;
  padding: 7px 18px;
}
.nav-list li a.nav-cta:hover { background:var(--navy); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.menu-toggle:hover { background:var(--bg); }
.menu-toggle span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform:translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity:0; }
.menu-toggle.open span:nth-child(3) { transform:translateY(-7.5px) rotate(-45deg); }

/* ── Page Hero / Banner ───────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content:'';
  position:absolute; top:-60px; right:-60px;
  width:280px; height:280px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
}
.page-hero::after {
  content:'';
  position:absolute; bottom:-40px; left:-40px;
  width:200px; height:200px;
  border-radius:50%;
  background:rgba(255,255,255,.04);
}
.page-hero .container { position:relative; z-index:1; }
.page-hero h1 {
  font-size: clamp(1.8rem,4vw,2.8rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 1.05rem;
  opacity: .85;
  max-width: 600px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  margin-bottom: 16px;
  opacity: .8;
}
.breadcrumb a { color:var(--gold-light); }
.breadcrumb a:hover { color:var(--white); }
.breadcrumb span { color:rgba(255,255,255,.5); }

/* ── Sections ─────────────────────────────────────────────────── */
.section     { padding:72px 0; }
.section-alt { background:var(--white); }
.section-header { text-align:center; margin-bottom:52px; }
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem,4vw,2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ── Announcement Ticker ──────────────────────────────────────── */
.announcement {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 0;
  font-weight: 600;
  font-size: .9rem;
  overflow: hidden;
}
.ticker-wrap { overflow:hidden; }
.ticker {
  display: inline-flex;
  gap: 60px;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
.ticker:hover { animation-play-state:paused; }
@keyframes ticker-scroll {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}

/* ── Hero Slider ──────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  background: var(--navy);
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.slide { min-width:100%; position:relative; }
.slide img { width:100%; height:auto; display:block; }
.slide-caption {
  position: absolute; bottom:0; left:0; right:0;
  background: linear-gradient(to top, rgba(13,32,96,.85) 0%, transparent 100%);
  padding: 40px 32px 28px;
  color: var(--white);
}
.slide-caption h2 {
  font-size: clamp(1.1rem,3vw,2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.slide-caption p {
  font-size: clamp(.8rem,2vw,1rem);
  opacity: .9;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.35);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items:center; justify-content:center;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(4px);
  z-index: 10;
}
.slider-btn:hover {
  background: rgba(232,160,32,.85);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}
.slider-btn.prev { left:16px; }
.slider-btn.next { right:16px; }
.slider-dots {
  position: absolute;
  bottom: 14px; left:50%; transform:translateX(-50%);
  display: flex; gap:8px; z-index:10;
}
.dot {
  width:10px; height:10px;
  border-radius:50%;
  background: rgba(255,255,255,.45);
  border: 2px solid rgba(255,255,255,.6);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dot.active { background:var(--gold); border-color:var(--gold); transform:scale(1.3); }

/* ── About ────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrapper img {
  width:100%; height:auto;
  transition: transform .5s ease;
}
.about-img-wrapper:hover img { transform:scale(1.03); }
.about-badge {
  position: absolute; bottom:20px; left:20px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.3;
}
.about-badge .year { font-size:1.8rem; display:block; }
.about-content h2 {
  font-size: clamp(1.5rem,3vw,2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.about-content p { color:var(--text-muted); margin-bottom:18px; font-size:1rem; line-height:1.7; }
.about-highlights { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:28px; }
.highlight-item { display:flex; align-items:flex-start; gap:12px; }
.highlight-icon {
  width:40px; height:40px; min-width:40px;
  background: rgba(13,32,96,.07);
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem;
}
.highlight-text h4 { font-size:.88rem; font-weight:700; color:var(--navy); margin-bottom:2px; }
.highlight-text p  { font-size:.8rem; color:var(--text-muted); margin:0; }

/* ── Stats Bar ────────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 48px 0;
}
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stat-item  { color:var(--white); }
.stat-number {
  font-size: clamp(2rem,5vw,3rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size:.85rem; opacity:.85; letter-spacing:.04em; font-weight:500; }

/* ── Cards / Programs ─────────────────────────────────────────── */
.programs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.program-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.program-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.program-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .5s ease;
}
.program-card:hover .program-img { transform:scale(1.04); }
.program-img-wrap { overflow:hidden; position:relative; }
.program-badge {
  position:absolute; top:14px; left:14px;
  background: var(--gold); color:var(--navy);
  font-size:.7rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding:4px 10px; border-radius:20px;
}
.program-body   { padding:24px; }
.program-body h3 { font-size:1.1rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.program-body p  { font-size:.88rem; color:var(--text-muted); line-height:1.6; margin-bottom:18px; }
.program-meta   { display:flex; gap:16px; font-size:.78rem; color:var(--text-muted); font-weight:600; }
.program-meta span { display:flex; align-items:center; gap:4px; }

/* ── Facilities ───────────────────────────────────────────────── */
.facilities-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.facility-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.facility-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--gold); }
.facility-icon { font-size:2.4rem; margin-bottom:16px; display:block; }
.facility-card h3 { font-size:.95rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.facility-card p  { font-size:.82rem; color:var(--text-muted); line-height:1.5; }

/* ── Vision Cards ─────────────────────────────────────────────── */
.vision-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.vision-card {
  padding: 40px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.vision-card.navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}
.vision-card.gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
}
.vision-card::after {
  content:'';
  position:absolute; bottom:-30px; right:-30px;
  width:120px; height:120px;
  border-radius:50%;
  background:rgba(255,255,255,.07);
}
.vision-tag {
  font-size:.75rem; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; opacity:.8;
  margin-bottom:12px;
  display:flex; align-items:center; gap:8px;
}
.vision-tag::before {
  content:''; display:block;
  width:24px; height:2px;
  background:currentColor;
}
.vision-card h3 { font-size:1.6rem; font-weight:800; margin-bottom:16px; line-height:1.2; }
.vision-card p  { font-size:.95rem; line-height:1.75; opacity:.9; }

/* ── News Cards ───────────────────────────────────────────────── */
.news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.news-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.news-card-img {
  width:100%; aspect-ratio:16/9;
  object-fit:cover;
  transition: transform .5s ease;
}
.news-card-img-wrap { overflow:hidden; }
.news-card:hover .news-card-img { transform:scale(1.05); }
.news-card-body { padding:22px; }
.news-date {
  font-size:.75rem; color:var(--gold);
  font-weight:700; letter-spacing:.06em;
  margin-bottom:8px; text-transform:uppercase;
}
.news-card-body h3 { font-size:1rem; font-weight:700; color:var(--navy); line-height:1.4; margin-bottom:10px; }
.news-card-body p  { font-size:.85rem; color:var(--text-muted); line-height:1.6; }

/* ── Contact Band ─────────────────────────────────────────────── */
.contact-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-band::before {
  content:''; position:absolute; top:-80px; right:-80px;
  width:300px; height:300px; border-radius:50%;
  background:rgba(255,255,255,.04);
}
.contact-band::after {
  content:''; position:absolute; bottom:-60px; left:-60px;
  width:240px; height:240px; border-radius:50%;
  background:rgba(255,255,255,.04);
}
.contact-band h2 {
  font-size: clamp(1.6rem,4vw,2.4rem);
  font-weight:800; margin-bottom:14px;
  position:relative; z-index:1;
}
.contact-band .cta-sub {
  font-size:1.05rem; opacity:.85;
  max-width:560px; margin:0 auto 36px;
  position:relative; z-index:1;
}
.btn-group { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; z-index:1; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items:center; gap:8px;
  padding: 13px 30px;
  border-radius: 40px;
  font-weight: 700; font-size:.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer; border:none; text-decoration:none;
}
.btn:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.25); }
.btn-gold         { background:var(--gold); color:var(--navy); }
.btn-gold:hover   { background:var(--gold-light); }
.btn-navy         { background:var(--navy); color:var(--white); }
.btn-navy:hover   { background:var(--navy-light); }
.btn-outline-white {
  background:transparent; color:var(--white);
  border:2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { background:rgba(255,255,255,.12); border-color:var(--white); }

/* ── Contact Info Grid ────────────────────────────────────────── */
.contact-info-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:56px; }
.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-info-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.contact-info-icon { font-size:2rem; margin-bottom:14px; display:block; }
.contact-info-card h3 {
  font-size:.85rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color:var(--gold); margin-bottom:8px;
}
.contact-info-card p  { font-size:.92rem; color:var(--text-muted); line-height:1.6; }
.contact-info-card a  { color:var(--navy); font-weight:600; transition:color var(--transition); }
.contact-info-card a:hover { color:var(--gold); }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer { background:#080f2e; color:rgba(255,255,255,.75); padding:64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo-block { margin-bottom:18px; }
.footer-brand .logo-text h1   { font-size:1rem; color:var(--white); }
.footer-brand .logo-text .tagline { color:var(--gold); }
.footer-brand p { font-size:.85rem; line-height:1.7; color:rgba(255,255,255,.6); margin-bottom:20px; }
.footer-social  { display:flex; gap:10px; }
.social-btn {
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem; font-weight:700; color:var(--white);
  transition:background var(--transition), transform var(--transition);
  cursor:pointer;
}
.social-btn:hover { background:var(--gold); transform:translateY(-2px); }
.footer-col h4 {
  font-size:.9rem; font-weight:700; color:var(--white);
  letter-spacing:.06em; text-transform:uppercase;
  margin-bottom:20px; padding-bottom:10px;
  border-bottom:2px solid var(--gold);
  display:inline-block;
}
.footer-links li { margin-bottom:10px; }
.footer-links li a {
  font-size:.85rem; color:rgba(255,255,255,.6);
  transition:color var(--transition), padding-left var(--transition);
  display:inline-flex; align-items:center; gap:6px;
}
.footer-links li a::before { content:'›'; color:var(--gold); font-size:1.1rem; }
.footer-links li a:hover   { color:var(--gold-light); padding-left:4px; }
.footer-contact-list li {
  display:flex; gap:10px; margin-bottom:14px;
  font-size:.85rem; color:rgba(255,255,255,.6); line-height:1.5;
}
.footer-contact-list .fc-icon { font-size:1rem; flex-shrink:0; margin-top:1px; color:var(--gold); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.08);
  padding:20px 0;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:8px;
}
.footer-bottom p { font-size:.8rem; color:rgba(255,255,255,.45); }
.footer-bottom-links { display:flex; gap:20px; }
.footer-bottom-links a {
  font-size:.8rem; color:rgba(255,255,255,.45);
  transition:color var(--transition);
}
.footer-bottom-links a:hover { color:var(--gold); }

/* ── Scroll to Top ────────────────────────────────────────────── */
.scroll-top {
  position:fixed; bottom:28px; right:28px;
  width:46px; height:46px;
  background:var(--navy); color:var(--white);
  border-radius:50%; border:2px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:1.1rem;
  box-shadow:var(--shadow-md);
  transition:all var(--transition);
  opacity:0; pointer-events:none; z-index:999;
}
.scroll-top.visible { opacity:1; pointer-events:auto; }
.scroll-top:hover   { background:var(--gold); transform:translateY(-3px); }

/* ── Generic Info Boxes ───────────────────────────────────────── */
.info-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.info-card h3 {
  font-size: 1.1rem; font-weight:700; color:var(--navy); margin-bottom:12px;
  display:flex; align-items:center; gap:10px;
}
.info-card p, .info-card li {
  font-size:.9rem; color:var(--text-muted); line-height:1.7;
}
.info-card ul { padding-left:0; }
.info-card ul li {
  padding:6px 0; border-bottom:1px solid var(--border);
  display:flex; align-items:flex-start; gap:8px;
}
.info-card ul li:last-child { border-bottom:none; }
.info-card ul li::before { content:'✔'; color:var(--gold); flex-shrink:0; margin-top:2px; }

/* ── Two/Three column generic grids ──────────────────────────── */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }

/* ── Table ────────────────────────────────────────────────────── */
.table-wrap { overflow-x:auto; border-radius:var(--radius); box-shadow:var(--shadow-sm); }
table {
  width:100%; border-collapse:collapse;
  background:var(--bg-card); font-size:.9rem;
}
thead { background:var(--navy); color:var(--white); }
thead th { padding:14px 18px; text-align:left; font-weight:700; font-size:.82rem; letter-spacing:.04em; }
tbody tr { border-bottom:1px solid var(--border); transition:background var(--transition); }
tbody tr:hover { background:rgba(13,32,96,.04); }
tbody td { padding:13px 18px; color:var(--text-muted); }
tbody td:first-child { color:var(--navy); font-weight:600; }

/* ── Form ─────────────────────────────────────────────────────── */
.form-group { margin-bottom:20px; }
.form-group label { display:block; font-size:.85rem; font-weight:600; color:var(--navy); margin-bottom:6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:12px 14px;
  border:1.5px solid var(--border);
  border-radius:var(--radius-sm);
  font-family:var(--font); font-size:.92rem; color:var(--text);
  background:var(--white);
  transition:border-color var(--transition), box-shadow var(--transition);
  outline:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:var(--navy);
  box-shadow:0 0 0 3px rgba(13,32,96,.1);
}
.form-group textarea { resize:vertical; min-height:130px; }

/* ── Timeline ─────────────────────────────────────────────────── */
.timeline { position:relative; padding-left:40px; }
.timeline::before {
  content:'';
  position:absolute; left:16px; top:0; bottom:0;
  width:2px; background:var(--border);
}
.timeline-item { position:relative; margin-bottom:36px; }
.timeline-item::before {
  content:'';
  position:absolute; left:-31px; top:4px;
  width:14px; height:14px;
  border-radius:50%;
  background:var(--gold); border:3px solid var(--white);
  box-shadow:0 0 0 2px var(--gold);
}
.timeline-year {
  font-size:.78rem; font-weight:700; color:var(--gold);
  letter-spacing:.08em; text-transform:uppercase;
  margin-bottom:4px;
}
.timeline-item h3 { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:6px; }
.timeline-item p  { font-size:.88rem; color:var(--text-muted); line-height:1.6; }

/* ── Value Cards ──────────────────────────────────────────────── */
.value-card {
  text-align:center;
  padding:36px 24px;
  border-radius:var(--radius);
  background:var(--bg-card);
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  transition:transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.value-icon { font-size:2.6rem; margin-bottom:16px; }
.value-card h3 { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:10px; }
.value-card p  { font-size:.85rem; color:var(--text-muted); line-height:1.6; }

/* ── Step Cards (Admissions) ──────────────────────────────────── */
.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.step-card  {
  text-align:center; padding:32px 20px;
  border-radius:var(--radius);
  background:var(--bg-card);
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  position:relative;
}
.step-number {
  width:50px; height:50px; margin:0 auto 16px;
  background:var(--navy); color:var(--white);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; font-weight:800;
}
.step-card h3 { font-size:.95rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.step-card p  { font-size:.82rem; color:var(--text-muted); line-height:1.5; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width:1024px) {
  .about-grid         { grid-template-columns:1fr; gap:36px; }
  .about-img-wrapper  { max-width:600px; margin:0 auto; }
  .programs-grid      { grid-template-columns:repeat(2,1fr); }
  .facilities-grid    { grid-template-columns:repeat(3,1fr); }
  .footer-grid        { grid-template-columns:1fr 1fr; gap:36px; }
  .steps-grid         { grid-template-columns:repeat(2,1fr); }
  .grid-4             { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:768px) {
  .menu-toggle { display:flex; }
  .main-nav {
    position:absolute; top:100%; left:0; right:0;
    background:var(--white); box-shadow:var(--shadow-md);
    max-height:0; overflow:hidden;
    transition:max-height .35s ease;
  }
  .main-nav.open { max-height:520px; }
  .nav-list { flex-direction:column; align-items:stretch; gap:0; padding:10px 20px 20px; }
  .nav-list li a { padding:12px 0; border-bottom:1px solid var(--border); border-radius:0; font-size:.9rem; }
  .nav-list li:last-child a { border-bottom:none; }
  .nav-list li a.nav-cta { border-radius:var(--radius-sm); margin-top:8px; text-align:center; border-bottom:none; }

  .slider-btn        { width:38px; height:38px; font-size:1rem; }
  .slider-btn.prev   { left:8px; }
  .slider-btn.next   { right:8px; }
  .slide-caption     { padding:24px 16px 16px; }

  .section           { padding:52px 0; }
  .about-highlights  { grid-template-columns:1fr; }
  .stats-grid        { grid-template-columns:repeat(2,1fr); gap:28px 16px; }
  .programs-grid     { grid-template-columns:1fr; }
  .facilities-grid   { grid-template-columns:repeat(2,1fr); }
  .vision-grid       { grid-template-columns:1fr; }
  .news-grid         { grid-template-columns:1fr; }
  .contact-info-grid { grid-template-columns:1fr; }
  .footer-grid       { grid-template-columns:1fr; gap:32px; }
  .footer-bottom     { flex-direction:column; text-align:center; }
  .top-bar           { display:none; }
  .logo-text h1      { font-size:.95rem; }
  .logo-img          { width:54px; height:54px; }
  .grid-2            { grid-template-columns:1fr; }
  .grid-3            { grid-template-columns:1fr; }
  .grid-4            { grid-template-columns:1fr 1fr; }
  .steps-grid        { grid-template-columns:1fr 1fr; }
  .page-hero         { padding:40px 0 32px; }
}

@media (max-width:480px) {
  .facilities-grid { grid-template-columns:1fr 1fr; gap:14px; }
  .stats-grid      { grid-template-columns:1fr 1fr; }
  .vision-card     { padding:28px 22px; }
  .container       { padding:0 16px; }
  .btn             { padding:12px 24px; font-size:.9rem; }
  .steps-grid      { grid-template-columns:1fr; }
  .grid-4          { grid-template-columns:1fr; }
}
