/* =============================================
   Dayanand Ayurvedic College - Main Stylesheet
   ============================================= */

:root {
  --green-dark: #1a5c2a;
  --green-mid: #2d7a3e;
  --green-light: #4a9e5c;
  --gold: #c8a84b;
  --gold-light: #e8c96b;
  --cream: #fdf8f0;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --text-light: #777777;
  --border: #e0d8c8;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  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); margin: 0 8px; }
.top-bar a:hover { color: var(--white); }

/* ---- HEADER ---- */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-area img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.logo-text h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
}
.logo-text p {
  font-size: 12px;
  color: var(--text-light);
}

/* ---- NAVIGATION ---- */
nav { position: relative; }
nav ul { list-style: none; display: flex; gap: 2px; align-items: center; }
nav ul li { position: relative; }
nav ul li a {
  display: block;
  padding: 10px 13px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--green-dark);
  background: rgba(45,122,62,0.08);
}
nav ul li.highlight > a {
  background: var(--green-dark);
  color: white;
  border-radius: 20px;
}
nav ul li.highlight > a:hover { background: var(--green-mid); }

/* Dropdowns */
nav ul li .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 999;
  border-top: 3px solid var(--green-dark);
}
nav ul li:hover > .dropdown { display: block; }
nav ul li .dropdown li a {
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 0;
}
nav ul li .dropdown li a:hover {
  background: var(--cream);
  color: var(--green-dark);
  padding-left: 22px;
}
/* Sub-dropdown */
nav ul li .dropdown li { position: relative; }
nav ul li .dropdown li .sub-dropdown {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: white;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  padding: 8px 0;
  border-top: 3px solid var(--gold);
}
nav ul li .dropdown li:hover > .sub-dropdown { display: block; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 20px;
}

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---- HERO SLIDER ---- */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,92,42,0.8) 0%, rgba(0,0,0,0.4) 100%);
  display: flex;
  align-items: center;
}
.hero-content {
  color: white;
  max-width: 600px;
  padding: 40px;
}
.hero-content .badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-content h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s;
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid white;
  color: white;
  padding: 13px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s;
}
.btn-outline:hover { background: white; color: var(--green-dark); }

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}
.hero-dot.active { background: var(--gold); }

/* ---- MARQUEE NOTICE ---- */
.marquee-bar {
  background: var(--gold);
  color: var(--green-dark);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  font-size: 13.5px;
}
.marquee-inner { display: inline-block; animation: marquee 30s linear infinite; padding-left: 100%; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* ---- STATS STRIP ---- */
.stats-strip { background: var(--green-dark); color: white; padding: 30px 0; }
.stats-strip .grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stat-item h3 { font-size: 36px; font-weight: 800; color: var(--gold); }
.stat-item p { font-size: 13px; opacity: 0.85; margin-top: 4px; }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header .eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.2;
}
.section-header p {
  color: var(--text-light);
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold));
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ---- ABOUT SECTION ---- */
.about-section { padding: 70px 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-lg); }
.about-img .year-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--green-dark);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img .year-badge .year { font-size: 30px; font-weight: 800; color: var(--gold); }
.about-img .year-badge p { font-size: 11px; opacity: 0.8; }
.about-content h2 { font-size: 30px; font-weight: 800; color: var(--green-dark); margin-bottom: 16px; }
.about-content p { color: var(--text-mid); margin-bottom: 14px; line-height: 1.8; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.feature-item { display: flex; align-items: center; gap: 10px; }
.feature-item .icon { color: var(--green-mid); font-size: 18px; flex-shrink: 0; }
.feature-item p { font-size: 13.5px; font-weight: 600; color: var(--text-mid); }

/* ---- PROGRAMS ---- */
.programs-section { padding: 70px 0; }
.programs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.program-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card .card-top {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  padding: 30px 24px;
  text-align: center;
  color: white;
}
.program-card .card-top .icon { font-size: 36px; margin-bottom: 12px; }
.program-card .card-top h3 { font-size: 18px; font-weight: 700; }
.program-card .card-top p { font-size: 12px; opacity: 0.85; margin-top: 4px; }
.program-card .card-body { padding: 20px 24px; }
.program-card .card-body p { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; }
.program-card .card-body .read-more {
  display: inline-block;
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 13px;
}
.program-card .card-body .read-more:hover { color: var(--gold); }

/* ---- NEWS & NOTICES ---- */
.news-section { padding: 70px 0; background: var(--cream); }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.news-box, .notice-box {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.box-header {
  background: var(--green-dark);
  color: white;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.box-header h3 { font-size: 16px; font-weight: 700; }
.box-header a { color: var(--gold-light); font-size: 12px; }
.box-body { padding: 16px; max-height: 320px; overflow-y: auto; }
.news-item, .notice-item {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.news-item:last-child, .notice-item:last-child { border-bottom: none; }
.news-item .date { font-size: 11px; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.news-item h4 { font-size: 13.5px; font-weight: 600; color: var(--text-dark); line-height: 1.4; }
.news-item h4 a:hover { color: var(--green-dark); }
.notice-item { display: flex; gap: 12px; align-items: flex-start; }
.notice-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-mid); flex-shrink: 0; margin-top: 5px;
}
.notice-item.important .dot { background: #e53e3e; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.notice-item p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }
.notice-item p a:hover { color: var(--green-dark); }

/* ---- DEPARTMENTS ---- */
.departments-section { padding: 70px 0; }
.dept-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.dept-card {
  background: white;
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s;
  cursor: pointer;
}
.dept-card:hover {
  border-color: var(--green-mid);
  background: var(--cream);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.dept-card .icon { font-size: 28px; margin-bottom: 10px; }
.dept-card h4 { font-size: 13px; font-weight: 600; color: var(--green-dark); line-height: 1.4; }

/* ---- GALLERY STRIP ---- */
.gallery-strip { background: var(--green-dark); padding: 60px 0; }
.gallery-strip .section-header h2, .gallery-strip .section-header .eyebrow { color: var(--gold); }
.gallery-strip .section-header p { color: rgba(255,255,255,0.7); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.gallery-item { overflow: hidden; border-radius: 8px; height: 180px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }

/* ---- CONTACT ---- */
.contact-section { padding: 70px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; }
.contact-info h3 { font-size: 22px; font-weight: 700; color: var(--green-dark); margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-item .icon {
  width: 44px; height: 44px;
  background: var(--green-dark);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.contact-item p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }
.contact-item strong { color: var(--text-dark); display: block; margin-bottom: 2px; }
.contact-form { background: white; padding: 30px; border-radius: 12px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 20px; font-weight: 700; color: var(--green-dark); margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border 0.2s;
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--green-mid); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit {
  background: var(--green-dark);
  color: white;
  border: none;
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--green-mid); }

/* ---- RESULT PAGE ---- */
.result-page { padding: 60px 0; min-height: 60vh; }
.result-search-box {
  max-width: 560px;
  margin: 0 auto;
  background: white;
  padding: 36px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.result-search-box h2 { font-size: 22px; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; text-align: center; }
.result-search-box p { color: var(--text-light); text-align: center; font-size: 13.5px; margin-bottom: 24px; }
.result-output {
  max-width: 560px;
  margin: 24px auto 0;
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
}
.result-output.show { display: block; }
.result-info h4 { font-size: 15px; font-weight: 700; color: var(--green-dark); margin-bottom: 4px; }
.result-info p { font-size: 13px; color: var(--text-mid); margin-bottom: 2px; }
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: var(--green-dark);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s;
}
.btn-download:hover { background: var(--green-mid); }
.error-msg {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #c53030;
  padding: 14px;
  border-radius: 8px;
  font-size: 13.5px;
  text-align: center;
  display: none;
}
.error-msg.show { display: block; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: white;
  padding: 50px 0;
  text-align: center;
}
.page-hero h1 { font-size: 34px; font-weight: 800; margin-bottom: 8px; }
.page-hero p { opacity: 0.85; font-size: 15px; }
.breadcrumb { margin-top: 12px; font-size: 13px; opacity: 0.7; }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { margin: 0 6px; }

/* ---- FOOTER ---- */
footer {
  background: #111;
  color: rgba(255,255,255,0.8);
  padding: 50px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand img { width: 65px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; opacity: 0.75; margin-top: 8px; }
.footer-col h4 { color: var(--gold); font-size: 14px; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---- SCROLL TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--green-dark);
  color: white;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 999;
}
.scroll-top.show { opacity: 1; }

/* ---- ADMIN PANEL ---- */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0f3a1a 100%);
}
.admin-login-box {
  background: white;
  padding: 40px;
  border-radius: 16px;
  width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.admin-login-box .logo { text-align: center; margin-bottom: 24px; }
.admin-login-box .logo img { width: 70px; }
.admin-login-box h2 { text-align: center; color: var(--green-dark); font-size: 22px; margin-bottom: 4px; }
.admin-login-box p { text-align: center; color: var(--text-light); font-size: 13px; margin-bottom: 24px; }
.alert {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 16px;
}
.alert-success { background: #f0fff4; border: 1px solid #9ae6b4; color: #276749; }
.alert-error { background: #fff5f5; border: 1px solid #fed7d7; color: #c53030; }

.admin-sidebar {
  width: 240px;
  background: var(--green-dark);
  color: white;
  min-height: 100vh;
  position: fixed;
  left: 0; top: 0;
  padding: 0;
}
.admin-sidebar .brand {
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.admin-sidebar .brand img { width: 50px; margin-bottom: 8px; }
.admin-sidebar .brand h3 { font-size: 13px; font-weight: 700; }
.admin-sidebar nav ul {
  list-style: none;
  padding: 12px 0;
  display: block;
  flex-direction: column;
  gap: 0;
}
.admin-sidebar nav ul li { display: block; width: 100%; }
.admin-sidebar nav ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.8);
  font-size: 13.5px;
  transition: all 0.2s;
}
.admin-sidebar nav ul li a:hover,
.admin-sidebar nav ul li a.active {
  background: rgba(255,255,255,0.12);
  color: white;
  padding-left: 26px;
}
.admin-sidebar nav ul li a .icon { font-size: 16px; width: 20px; text-align: center; }
.admin-main { margin-left: 240px; padding: 30px; min-height: 100vh; background: #f5f7fa; }
.admin-topbar {
  background: white;
  padding: 14px 24px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.admin-topbar h2 { font-size: 18px; font-weight: 700; color: var(--green-dark); }
.admin-topbar .user { font-size: 13px; color: var(--text-mid); }
.admin-topbar .user a { color: #e53e3e; margin-left: 12px; }
.admin-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 24px;
  overflow: hidden;
}
.admin-card .card-header {
  background: var(--green-dark);
  color: white;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
}
.admin-card .card-body { padding: 20px; }
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 24px; }
.stat-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
  border-left: 4px solid var(--green-dark);
}
.stat-card h3 { font-size: 28px; font-weight: 800; color: var(--green-dark); }
.stat-card p { font-size: 13px; color: var(--text-light); margin-top: 4px; }
table { width: 100%; border-collapse: collapse; }
table th { background: var(--cream); font-size: 12px; font-weight: 700; color: var(--text-mid); padding: 10px 14px; text-align: left; border-bottom: 2px solid var(--border); }
table td { padding: 11px 14px; font-size: 13px; border-bottom: 1px solid var(--border); color: var(--text-mid); }
table tr:last-child td { border-bottom: none; }
table tr:hover td { background: var(--cream); }
.badge-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}
.badge-green { background: #c6f6d5; color: #276749; }
.badge-red { background: #fed7d7; color: #c53030; }
.btn-sm {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.btn-sm:hover { opacity: 0.85; }
.btn-danger { background: #fed7d7; color: #c53030; }
.btn-view { background: #bee3f8; color: #2b6cb0; }
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}
.upload-zone:hover { border-color: var(--green-mid); }
.upload-zone .icon { font-size: 36px; color: var(--text-light); margin-bottom: 10px; }
.upload-zone p { color: var(--text-light); font-size: 13.5px; }
.upload-zone input[type=file] { display: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .nav-wrapper { display: none; position: fixed; inset: 0; background: white; z-index: 2000; padding: 20px; overflow-y: auto; flex-direction: column; }
  .nav-wrapper.open { display: flex; }
  nav ul { flex-direction: column; gap: 0; }
  nav ul li .dropdown { position: static; box-shadow: none; border: none; padding: 0 0 0 16px; display: none; }
  nav ul li.open > .dropdown { display: block; }
  .menu-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .dept-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content h2 { font-size: 30px; }
  .news-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .admin-sidebar { width: 200px; }
  .admin-main { margin-left: 200px; }
}
@media (max-width: 640px) {
  .stats-strip .grid { grid-template-columns: repeat(2,1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .dept-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { height: 400px; }
  .hero-content h2 { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
}
