/*
Theme Name: ASJC Theme
Author: Shubham Sharma
Description: Custom WordPress Theme for Arathi Shashikiran Shetty Junior College
Version: 1.0
Text Domain: asjc
*/

/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #003580;
  --primary-dark: #002060;
  --accent: #f5a623;
  --accent-hover: #e0920f;
  --green: #2e7d32;
  --text: #333;
  --muted: #666;
  --light-bg: #f4f6f9;
  --border: #e0e0e0;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  font-size: 14px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
  background: #f5a623;
  color: #fff;
  text-align: center;
  padding: 7px 15px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #f0f4fa;
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.top-bar-left a {
  color: var(--primary);
  font-size: 12px;
  margin-right: 18px;
}

.top-bar-left a i {
  margin-right: 5px;
}

.top-bar-right a {
  color: var(--primary);
  font-size: 13px;
  margin-left: 10px;
  transition: color .2s;
}

.top-bar-right a:hover {
  color: var(--accent);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 15px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo Image Styles */
.nav-brand-logo {
  width: 120px;
  height: 60px;
  flex-shrink: 0;
  overflow: hidden;
}

.nav-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-brand-text {
  line-height: 1.3;
}

.nav-brand-text .org {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .4px;
}

.nav-brand-text .name {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  flex-wrap: wrap;
}

.nav-links a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border-radius: 4px;
  transition: background .2s, color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--primary);
  color: var(--white);
}

.nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--primary);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #001a4d 0%, #003580 55%, #00479b 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 20px 90px;
  position: relative;
  overflow: hidden;
}

.hero::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");
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  margin-bottom: 8px;
  letter-spacing: .5px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
  position: relative;
  z-index: 1;
}

.hero-desc {
  max-width: 640px;
  margin: 0 auto 34px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .85);
  position: relative;
  z-index: 1;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: all .25s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, .6);
  cursor: pointer;
  transition: all .25s;
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff;
}

/* ===== QUICK LINKS BAR ===== */
.quick-links {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.quick-links .container {
  display: flex;
  justify-content: center;
}

.quick-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s;
  flex: 1;
  justify-content: center;
}

.quick-link-item:last-child {
  border-right: none;
}

.quick-link-item:hover {
  background: var(--light-bg);
}

.quick-link-item i {
  font-size: 20px;
  color: var(--accent);
}

/* ===== SECTION COMMON ===== */
section {
  padding: 64px 0;
}

.section-title {
  font-family: 'Merriweather', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 900px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.underline-accent {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* About Image */
.about-img-wrapper {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1.03);
}

.about-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

.about-text blockquote {
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  margin: 16px 0;
  font-size: 13px;
}

.read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
}

.read-more:hover {
  color: var(--accent);
}

.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item .num {
  font-family: 'Merriweather', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-item .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-top: 4px;
}

/* ===== NEWS + NOTICE ===== */
.news-notice {
  background: var(--light-bg);
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.card-box {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.card-box h3 {
  font-family: 'Merriweather', serif;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.news-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}

.news-item:last-child {
  border-bottom: none;
}

.news-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.badge-orange {
  background: #fff3e0;
  color: #e65100;
}

.badge-blue {
  background: #e3f2fd;
  color: #0d47a1;
}

.badge-green {
  background: #e8f5e9;
  color: #1b5e20;
}

.badge-red {
  background: #fce4ec;
  color: #880e4f;
}

.view-all {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.view-all:hover {
  color: var(--accent);
}

/* ===== TEACHER SPOTLIGHT ===== */
.teacher-spotlight {
  background: var(--primary-dark);
  color: var(--white);
  padding: 50px 0;
}

.spotlight-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  background: rgba(255, 255, 255, .07);
  border-radius: 10px;
  padding: 32px 36px;
  border: 1px solid rgba(255, 255, 255, .12);
}

.spotlight-avatar {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 36px;
  color: rgba(255, 255, 255, .5);
}

.spotlight-content {
  flex: 1;
}

.spotlight-stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 8px;
}

.spotlight-content h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
}

.spotlight-content .role {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 12px;
}

.spotlight-content p {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .85);
}

.read-full {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
  display: inline-block;
}

/* ===== COURSES ===== */
.courses {
  background: var(--white);
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.course-card {
  border-radius: 10px;
  padding: 34px 30px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.course-card.science {
  background: linear-gradient(135deg, #003580, #0055b3);
}

.course-card.commerce {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
}

.course-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.course-card p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 9px 22px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  transition: all .2s;
}

.course-card.commerce .btn-white {
  color: var(--green);
}

.btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

/* ===== CAMPUS ===== */
.campus {
  background: var(--light-bg);
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.campus-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
}

/* Campus Real Images */
.campus-img {
  width: 130%;
  height: 350px;
  position: relative;
  overflow: hidden;
}

.campus-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.campus-item:hover .campus-img img {
  transform: scale(1.08);
}

.campus-img .campus-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 100%);
  color: #fff;
  padding: 20px 14px 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Fallback campus placeholder (for classrooms without image) */
.campus-img-ph {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: flex-end;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  padding: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.campus-img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, transparent 60%);
}

.campus-img-ph span {
  position: relative;
  z-index: 1;
}

.bg-class {
  background-color: #546e7a;
}

/* ===== EVENTS ===== */

.events {
  background: var(--white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.event-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .09);
}

.event-img {
  height: 200px;
  overflow: hidden;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-card:hover .event-img img {
  transform: scale(1.1);
}

.event-body {
  padding: 16px;
}

.event-meta {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}

.event-meta span {
  margin-right: 8px;
}

.event-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.event-body p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== ACHIEVEMENTS ===== */
.achievements {
  background: var(--primary-dark);
  color: var(--white);
  text-align: center;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.achievements::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.achievements .section-title {
  color: var(--white);
}

.achievements .section-sub {
  color: rgba(255, 255, 255, .7);
}

.achievements-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.ach-item {
  text-align: center;
}

.ach-icon {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 10px;
}

.ach-num {
  font-family: 'Merriweather', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.ach-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  max-width: 160px;
  margin: 0 auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--light-bg);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.testi-stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 10px;
}

.testi-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testi-author {
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
}

.testi-class {
  font-size: 11px;
  color: var(--muted);
}

/* ===== CTA ===== */
.cta-section {
  background: var(--white);
  text-align: center;
  padding: 70px 20px;
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  font-family: 'Merriweather', serif;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 12px;
}

.cta-section p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-dark {
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all .25s;
  display: inline-block;
}

.btn-dark:hover {
  background: var(--primary-dark);
}

/* ===== FOOTER ===== */
footer {
  background: #15296b;
  color: rgba(255, 255, 255, .8);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

footer h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

footer p,
footer li {
  font-size: 12.5px;
  line-height: 1.8;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 4px;
}

footer ul li a {
  color: rgba(255, 255, 255, .7);
  font-size: 12.5px;
  transition: color .2s;
}

footer ul li a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  transition: background .2s, color .2s;
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
}

.footer-contact li {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  align-items: flex-start;
}

.footer-contact li i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  background: #0e1b4f;
  text-align: center;
  padding: 14px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
}

.affiliation-bar {
  background: #15296b;
  padding: 18px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.affiliation-bar p {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: #b8c3e0;
}

.affiliation-bar p+p {
  margin-top: 8px;
}

.affiliation-bar strong {
  color: #9fb3e8;
  font-weight: 700;
}

.affiliation-bar a {
  color: #ff9800;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.affiliation-bar a:hover {
  color: #ffb74d;
}

.affiliation-bar span {
  margin: 0 8px;
  color: #8ea0cc;
}

.sister-text {
  color: #b8c3e0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

  .about-grid,
  .two-col-grid,
  .courses-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .campus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    gap: 36px;
  }

  .spotlight-inner {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    z-index: 999;
  }

  .navbar .container {
    position: relative;
    flex-wrap: wrap;
  }

  .quick-link-item {
    padding: 12px 16px;
    font-size: 12px;
  }

  .about-stats {
    justify-content: space-around;
  }
}

@media (max-width: 500px) {
  .campus-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .top-bar-left {
    display: none;
  }

  .section-title {
    font-size: 20px;
  }

  .quick-links .container {
    flex-direction: column;
  }

  .quick-link-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== OUR MANAGEMENT & LEADERSHIP ===== */
.management-home {
  background: var(--light-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.management-home::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.04) 0%, transparent 70%);
  z-index: 0;
}

.management-home .container {
  position: relative;
  z-index: 1;
}

.management-hierarchy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

/* Premium Spotlight Card */
.leader-spotlight-card {
  background: var(--white);
  border: 1px solid rgba(224, 224, 224, 0.8);
  border-radius: 16px;
  padding: 40px;
  max-width: 820px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
  box-shadow: 0 10px 30px rgba(0, 53, 128, 0.05);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.leader-spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--primary));
}

.leader-spotlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 53, 128, 0.1);
  border-color: rgba(245, 166, 35, 0.4);
}

/* Avatar Containers with Elegant Gradients */
.leader-avatar-inner {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  box-shadow: 0 8px 24px rgba(0, 53, 128, 0.12);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.leader-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
  background: #f7f9fc;
  transition: transform 0.4s ease;
}

.leader-spotlight-card:hover .leader-avatar-inner img {
  transform: scale(1.05);
}

/* Dynamic Fallback Avatar CSS if no image exists */
.leader-avatar-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid var(--white);
  background: linear-gradient(135deg, #e6f0fa 0%, #cce0f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 56px;
}

.leader-info {
  flex: 1;
}

.leader-tag {
  display: inline-block;
  background: rgba(245, 166, 35, 0.1);
  color: var(--accent-hover);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.leader-info h3 {
  font-family: 'Merriweather', serif;
  font-size: 24px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 4px;
}

.leader-info .leader-role {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.leader-info .leader-quote {
  font-size: 13.5px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.leader-info .leader-quote::before {
  content: '"';
  font-family: 'Merriweather', serif;
  font-size: 40px;
  color: rgba(245, 166, 35, 0.3);
  position: absolute;
  left: 0;
  top: -10px;
  line-height: 1;
}

/* Subordinate Level (President/Management Grid) */
.management-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  width: 100%;
  margin-top: 20px;
}

.leader-sub-card {
  background: var(--white);
  border: 1px solid rgba(224, 224, 224, 0.8);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 24px rgba(0, 53, 128, 0.04);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.leader-sub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary);
}

.leader-sub-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 53, 128, 0.08);
  border-color: rgba(0, 53, 128, 0.2);
}

.leader-sub-card .leader-avatar-inner {
  width: 120px;
  height: 120px;
  padding: 4px;
}

.leader-sub-card .leader-avatar-fallback {
  font-size: 40px;
}

.leader-sub-card .leader-info h3 {
  font-size: 18px;
}

.leader-sub-card .leader-info .leader-role {
  font-size: 13px;
  margin-bottom: 10px;
}

.leader-sub-card .leader-info .leader-quote {
  font-size: 12.5px;
}

/* Responsiveness for Leadership Section */
@media (max-width: 850px) {
  .leader-spotlight-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 20px;
  }

  .leader-spotlight-card::before {
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
  }

  .leader-info .leader-quote {
    padding-left: 0;
  }

  .leader-info .leader-quote::before {
    display: none;
  }

  .management-sub-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 550px) {
  .leader-sub-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 16px;
  }

  .leader-sub-card::before {
    width: 100%;
    height: 3px;
    top: 0;
    left: 0;
  }
}/* ===== ADMISSIONS PAGE SPECIFIC STYLES ===== */

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #1a3d7c 0%, #2e5ba8 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.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 h1 {
  font-family: 'Merriweather', serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  margin: 0 8px;
}

/* INTRO SECTION */
.admissions-intro {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.admissions-intro .intro-text {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* SECTION TITLES */
.section-title {
  font-family: 'Merriweather', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 24px;
}

.sub-title {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 32px 0 16px;
}

/* ELIGIBILITY SECTION */
.eligibility-section {
  padding: 64px 0;
  background: var(--white);
}

.eligibility-section p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
}

.info-box {
  background: #e3f2fd;
  border-left: 4px solid var(--primary);
  padding: 20px;
  margin: 24px 0;
  border-radius: 4px;
}

.info-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--primary-dark);
}

.info-box strong {
  font-weight: 700;
}

.info-box em {
  display: block;
  font-style: italic;
  margin-top: 4px;
}

/* DOCUMENTS SECTION */
.documents-section {
  padding: 64px 0;
  background: var(--light-bg);
}

.doc-category {
  font-family: 'Merriweather', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 32px 0 16px;
}

.doc-list {
  list-style: decimal;
  margin: 0 0 24px 24px;
  padding: 0;
}

.doc-list li {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
  padding-left: 8px;
}

.doc-list em {
  color: var(--muted);
  font-style: italic;
}

/* ADMISSION PROCESS */
.process-section {
  padding: 64px 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.process-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.step-number {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.process-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-card p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* STREAMS OFFERED */
.streams-offered {
  padding: 64px 0;
  background: var(--light-bg);
}

.streams-offered p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.streams-list {
  list-style: none;
  margin: 24px 0;
}

.streams-list li {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.streams-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 18px;
}

.streams-list strong {
  color: var(--primary);
  font-weight: 700;
}

.link-orange {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  margin-top: 16px;
  transition: color 0.2s;
}

.link-orange:hover {
  color: var(--accent-hover);
}

/* IMPORTANT DATES */
.dates-section {
  padding: 64px 0;
  background: var(--white);
}

.dates-section p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.dates-list {
  list-style: none;
  margin: 24px 0;
}

.dates-list li {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dates-list i {
  color: var(--accent);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.note-text {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 24px;
}

/* FEE SECTION */
.fee-section {
  padding: 64px 0;
  background: var(--light-bg);
}

.fee-section p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

/* RESERVATIONS SECTION */
.reservations-section {
  padding: 64px 0;
  background: var(--white);
}

.reservations-section p {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

/* SCHOLARSHIPS SECTION */
.scholarships-section {
  padding: 64px 0;
  background: var(--light-bg);
}

.scholarship-list {
  list-style: none;
  margin: 24px 0;
}

.scholarship-list li {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.scholarship-list i {
  color: var(--green);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.scholarship-list strong {
  color: var(--primary);
  font-weight: 700;
}

/* CONTACT ADMISSION CELL */
.contact-admission {
  padding: 64px 0;
  background: var(--white);
}

.contact-box {
  background: #f8f9fc;
  border: 2px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 32px;
  margin: 32px 0;
}

.contact-box h3 {
  font-family: 'Merriweather', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

.contact-box a {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s;
}

.contact-box a:hover {
  color: var(--accent-hover);
}

/* CTA BUTTONS */
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all .25s;
  display: inline-block;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .page-header h1 {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .page-header h1 {
    font-size: 26px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}