/* ============================================================
   AMP LAW COLLEGE — MAIN STYLESHEET
   Design: Refined Government/Academic — Deep Navy + Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:       #0d2137;
  --navy-mid:   #1a3a56;
  --navy-light: #254d70;
  --gold:       #c8a45a;
  --gold-light: #e0c07a;
  --gold-pale:  #f5edda;
  --white:      #ffffff;
  --off-white:  #f8f6f1;
  --text-dark:  #1a1a2e;
  --text-mid:   #3d4a5c;
  --text-light: #6b7a8d;
  --border:     #ddd5c0;
  --red-accent: #c0392b;
  --success:    #1a6b3c;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', sans-serif;
  --font-serif:   'EB Garamond', Georgia, serif;

  --shadow-sm:  0 2px 8px rgba(13,33,55,0.08);
  --shadow-md:  0 4px 20px rgba(13,33,55,0.12);
  --shadow-lg:  0 8px 40px rgba(13,33,55,0.16);
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;

  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
  --max-width:  1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

p  { text-align: justify; color: var(--text-mid); line-height: 1.8; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.3;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Section ── */
.section { padding: 4rem 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark .section-title { color: var(--gold-light); }
.section-dark p { color: rgba(255,255,255,0.8); }

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
  background: var(--navy);
  padding: 0.45rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar-left { display: flex; gap: 1.5rem; align-items: center; }
.top-bar-right { display: flex; gap: 1rem; align-items: center; }
.top-bar a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.top-bar a:hover { color: var(--gold-light); }
.top-bar .icon-link {
  display: flex; align-items: center; gap: 0.4rem;
}
.top-bar .icon-link svg { width: 14px; height: 14px; }

.top-bar-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.2);
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--gold);
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 0.75rem;
  min-height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 0;
}

/* Logo emblem — shows actual image, falls back to ⚖ emoji */
.logo-emblem {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.logo-text-wrap {
  line-height: 1.25;
  min-width: 0;
}
.logo-college-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-affiliation {
  font-size: 0.68rem;
  color: var(--text-light);
  display: block;
  white-space: nowrap;
}
.logo-naac {
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 600;
  display: block;
  letter-spacing: 0.04em;
}

/* ── Navigation — Desktop ── */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  overflow: visible;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.5rem 0.6rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color var(--transition), background var(--transition);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  cursor: pointer;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }

.nav-link svg { width: 10px; height: 10px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 999;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--off-white);
  transition: background var(--transition), color var(--transition), padding var(--transition);
}
.dropdown-link:hover {
  background: var(--gold-pale);
  color: var(--navy);
  padding-left: 1.3rem;
}
.dropdown-link:last-child { border-bottom: none; }

/* Header actions */
.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}
.btn-student-login {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
  display: flex; align-items: center; gap: 0.4rem;
}
.btn-student-login:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}
.btn-admission {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.btn-admission:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

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

/* ================================================
   HERO SLIDESHOW
   ================================================ */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: var(--navy);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}
.slide.active { opacity: 1; }

/* slide-img is a DIV with background gradient (no external image needed) */
.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
  /* Also works as <img> element */
  object-fit: cover;
  display: block;
}
.slide.active .slide-img { transform: scale(1); }

/* Decorative large icon/emoji in background */
.slide-deco {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(6rem, 18vw, 14rem);
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
  line-height: 1;
  filter: grayscale(0.3);
  transition: opacity 1s;
}
.slide.active .slide-deco { opacity: 0.12; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,33,55,0.88) 0%,
    rgba(13,33,55,0.65) 50%,
    rgba(13,33,55,0.3) 100%
  );
  z-index: 1;
}

.slide-content {
  position: absolute;
  bottom: 2.5rem;
  left: 5%;
  right: 5%;
  max-width: 660px;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.9s cubic-bezier(0.4,0,0.2,1) 0.4s;
}
.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.slide-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.2rem;
  text-align: left;
}
.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: background var(--transition);
}
.slide-cta:hover { background: var(--gold-light); }

/* Slideshow controls */
.slide-controls {
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}
.slide-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  z-index: 10;
  backdrop-filter: blur(4px);
}
.slide-arrow:hover { background: rgba(200,164,90,0.5); }
.slide-arrow.prev { left: 1.5rem; }
.slide-arrow.next { right: 1.5rem; }

/* ================================================
   NOTICE TICKER
   ================================================ */
.notice-ticker {
  background: var(--navy-mid);
  padding: 0.6rem 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ticker-label {
  background: var(--gold);
  color: var(--navy);
  padding: 0.25rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ticker-text {
  display: flex;
  gap: 3rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-text:hover { animation-play-state: paused; }
.ticker-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: color var(--transition);
}
.ticker-item:hover { color: var(--gold-light); }
.ticker-item::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-right: 0.6rem;
  vertical-align: middle;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 1.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.4rem;
  display: block;
}

/* ================================================
   JURIS HIGHLIGHT
   ================================================ */
.juris-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.juris-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,164,90,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.juris-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.juris-badge {
  background: var(--gold);
  color: var(--navy);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  flex-shrink: 0;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,164,90,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(200,164,90,0); }
}
.juris-text { flex: 1; }
.juris-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 0.3rem;
}
.juris-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  text-align: left;
  margin: 0;
}
.juris-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }
.btn-juris-read, .btn-juris-download {
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 0.4rem;
}
.btn-juris-read {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-juris-read:hover { background: var(--gold); color: var(--navy); }
.btn-juris-download {
  background: var(--gold);
  color: var(--navy);
  border: 1.5px solid var(--gold);
}
.btn-juris-download:hover { background: var(--gold-light); }

/* ================================================
   PRINCIPAL MESSAGE
   ================================================ */
.principal-section {
  background: var(--white);
  padding: 4rem 0;
}
.principal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.principal-photo-wrap {
  position: relative;
}
.principal-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 3px solid var(--gold);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--gold);
}
.principal-photo-card {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-align: center;
  margin-top: -4px;
}
.principal-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
}
.principal-designation {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 0.2rem;
}
.principal-content { }
.principal-content .quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-pale);
  line-height: 0.6;
  display: block;
  margin-bottom: 0.5rem;
}
.principal-message {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-mid);
}
.principal-signature {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
}

/* ================================================
   QUICK CARDS
   ================================================ */
.quick-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.quick-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.quick-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.quick-card:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.quick-card:hover::before { transform: scaleX(1); }
.quick-card-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  transition: background var(--transition);
}
.quick-card:hover .quick-card-icon { background: var(--navy); }
.quick-card-icon svg { 
  width: 24px; height: 24px;
  color: var(--navy);
  transition: color var(--transition);
}
.quick-card:hover .quick-card-icon svg { color: var(--gold-light); }
.quick-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

/* ================================================
   NOTICE + NEWS GRID
   ================================================ */
.notice-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.notice-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.notice-box-header {
  background: var(--navy);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.notice-box-title {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.notice-box-more {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.notice-box-more:hover { color: var(--gold-light); }
.notice-list { padding: 0.5rem 0; max-height: 320px; overflow-y: auto; }
.notice-list::-webkit-scrollbar { width: 4px; }
.notice-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.notice-list-item {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--off-white);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  transition: background var(--transition);
  cursor: pointer;
}
.notice-list-item:hover { background: var(--gold-pale); }
.notice-list-item:last-child { border-bottom: none; }
.notice-date {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.4;
}
.notice-date-day { font-weight: 700; display: block; font-size: 0.85rem; }
.notice-date-mon { display: block; opacity: 0.7; }
.notice-item-text {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.5;
  text-align: left;
}
.notice-item-text .new-badge {
  display: inline-block;
  background: var(--red-accent);
  color: var(--white);
  font-size: 0.6rem;
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  margin-right: 0.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

/* ================================================
   ABOUT SNAPSHOT
   ================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-img-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 0.75rem;
}
.collage-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gold-pale);
}
.collage-img:first-child {
  grid-row: 1 / 3;
  border-radius: var(--radius-md);
}
.collage-img img, .collage-img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  background: var(--gold-pale);
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-feature {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.about-feature-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.about-feature-text { font-size: 0.82rem; color: var(--text-mid); }
.about-feature-text strong { display: block; color: var(--navy); font-size: 0.85rem; margin-bottom: 0.15rem; }

/* ================================================
   ACADEMIC HIGHLIGHTS
   ================================================ */
.academics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.academic-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.academic-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.academic-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.academic-card:hover::after { transform: scaleY(1); }
.academic-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.academic-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.academic-card-text {
  font-size: 0.83rem;
  color: var(--text-light);
  text-align: left;
}
.academic-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.academic-card-link:hover { gap: 0.6rem; }

/* ================================================
   GALLERY PREVIEW
   ================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--gold-pale);
}
.gallery-item-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold-pale), #ede3c8);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-item-placeholder { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,33,55,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-size: 0.78rem;
  color: var(--white);
  text-align: center;
  padding: 0.5rem;
  font-weight: 500;
}

/* ================================================
   ACHIEVEMENTS
   ================================================ */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.achievement-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all var(--transition);
}
.achievement-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.achievement-num {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.achievement-content { }
.achievement-title { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.achievement-desc { font-size: 0.82rem; color: var(--text-light); text-align: left; }

/* ================================================
   QUICK LINKS SECTION
   ================================================ */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.quick-link-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  color: rgba(255,255,255,0.82);
  font-size: 0.83rem;
}
.quick-link-item:hover {
  background: rgba(200,164,90,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateX(4px);
}
.quick-link-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); }

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { }
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.3rem;
}
.footer-logo-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.82rem; text-align: left; margin-bottom: 1rem; }
.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,164,90,0.3);
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy); }
.back-to-top svg { width: 18px; height: 18px; }

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb-item {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb-item.active { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); font-size: 0.75rem; }

/* ================================================
   RESPONSIVE — LARGE DESKTOP (nav shrink)
   ================================================ */
@media (max-width: 1200px) {
  .nav-link { padding: 0.5rem 0.5rem; font-size: 0.72rem; }
  .logo-college-name { font-size: 0.9rem; }
}

/* ================================================
   RESPONSIVE — TABLET (1024px)
   ================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .principal-grid { grid-template-columns: 200px 1fr; gap: 2rem; }
  .about-grid { gap: 2rem; }
  .notice-news-grid { grid-template-columns: 1fr; }
  .nav-link { padding: 0.45rem 0.45rem; font-size: 0.7rem; }
}

/* ================================================
   RESPONSIVE — MOBILE (768px)
   ================================================ */
@media (max-width: 768px) {

  /* ── Top bar: hide on mobile ── */
  .top-bar { display: none; }

  /* ── Header ── */
  .header-inner {
    padding: 0.5rem 1rem;
    min-height: 60px;
    gap: 0.5rem;
  }

  /* Logo: smaller on mobile */
  .logo-emblem { width: 44px; height: 44px; font-size: 1.2rem; }
  .logo-college-name { font-size: 0.82rem; }
  .logo-affiliation { font-size: 0.62rem; }
  .logo-naac { font-size: 0.6rem; }
  .site-logo { gap: 0.5rem; }

  /* ── Nav: mobile fullscreen overlay ── */
  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 998;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.open { display: flex; }

  /* Mobile nav inner scroll area */
  .main-nav .nav-list {
    flex-direction: column;
    width: 100%;
    padding: 4.5rem 0 2rem;
    gap: 0;
  }

  .nav-item { width: 100%; border-bottom: 1px solid var(--off-white); }
  .nav-link {
    width: 100%;
    padding: 0.95rem 1.5rem;
    font-size: 0.95rem;
    justify-content: space-between;
    border-radius: 0;
    border-bottom: none;
  }
  .nav-link svg { width: 14px; height: 14px; }

  /* Mobile dropdown */
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--gold);
    border-radius: 0;
    margin-left: 1.5rem;
    margin-right: 1rem;
    display: none;
    background: var(--off-white);
  }
  .nav-item.open .dropdown { display: block; }
  .dropdown-link {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
  }
  .dropdown-link:hover { padding-left: 1.25rem; }

  /* ── Hamburger visible ── */
  .hamburger { display: flex; z-index: 999; position: relative; }

  /* ── Hide admission button on mobile ── */
  .btn-admission { display: none; }

  /* Student login button: compact */
  .btn-student-login {
    padding: 0.4rem 0.75rem;
    font-size: 0.72rem;
  }
  .btn-student-login svg { display: none; }

  /* ── Hero Slideshow ── */
  .hero-slideshow { height: 340px; }
  .slide-content {
    bottom: 1.25rem;
    left: 1rem;
    right: 1rem;
    max-width: 100%;
  }
  .slide-title { font-size: 1.2rem; }
  .slide-subtitle { font-size: 0.82rem; margin-bottom: 0.85rem; }
  .slide-deco { font-size: 4.5rem; right: 3%; opacity: 0.07; }
  .slide-arrow { width: 32px; height: 32px; }
  .slide-arrow.prev { left: 0.4rem; }
  .slide-arrow.next { right: 0.4rem; }

  /* ── Stats bar ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0.85rem 1rem;
  }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-number { font-size: 1.6rem; }

  /* ── Juris section ── */
  .juris-inner { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
  .juris-desc { text-align: center; }
  .juris-actions { justify-content: center; }

  /* ── Principal section ── */
  .principal-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .principal-photo-wrap { max-width: 220px; margin: 0 auto; }

  /* ── About section ── */
  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-img-collage {
    grid-template-rows: 140px 140px;
    max-width: 100%;
  }
  .about-features { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  /* ── Notices grid ── */
  .notice-news-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* ── Quick cards ── */
  .quick-cards { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .quick-card { padding: 1rem 0.75rem; }
  .quick-card-icon { width: 44px; height: 44px; margin-bottom: 0.75rem; }

  /* ── Academics grid ── */
  .academics-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* ── Gallery grid ── */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

  /* ── Achievements grid ── */
  .achievements-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* ── Quick links grid ── */
  .quick-links-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .quick-link-item { font-size: 0.78rem; padding: 0.6rem 0.75rem; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
  .footer-bottom-links { justify-content: center; }

  /* ── Section spacing ── */
  .section { padding: 2.5rem 0; }
  .section-line { margin-bottom: 1.5rem; }

  /* ── Page hero ── */
  .page-hero { padding: 2rem 0 1.75rem; }
  .page-hero-title { font-size: 1.5rem; }
}

/* ================================================
   RESPONSIVE — SMALL MOBILE (480px)
   ================================================ */
@media (max-width: 480px) {
  .hero-slideshow { height: 260px; }
  .slide-content {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
  }
  .slide-title { font-size: 1.05rem; line-height: 1.3; }
  .slide-subtitle { display: none; }
  .slide-tag { font-size: 0.62rem; padding: 0.25rem 0.6rem; margin-bottom: 0.4rem; }
  .slide-cta { font-size: 0.75rem; padding: 0.4rem 0.85rem; }
  .slide-deco { display: none; }

  .quick-cards { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .quick-card-title { font-size: 0.75rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: 0.68rem; }

  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-links-grid { grid-template-columns: 1fr; }

  .logo-emblem { width: 36px; height: 36px; font-size: 0.9rem; }
  .logo-college-name { font-size: 0.72rem; }
  .logo-affiliation, .logo-naac { display: none; }

  .section { padding: 2rem 0; }
  .container { padding: 0 0.85rem; }

  .juris-title { font-size: 1.1rem; }
  .juris-badge { font-size: 0.65rem; }
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
}
.fade-in-up.delay-1 { animation-delay: 0.1s; }
.fade-in-up.delay-2 { animation-delay: 0.2s; }
.fade-in-up.delay-3 { animation-delay: 0.3s; }
.fade-in-up.delay-4 { animation-delay: 0.4s; }

/* Intersection Observer animate class */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Utility ── */
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
