/* ================= TOKENS ================= */
:root {
  --navy-950: #071a33;
  --navy-900: #0a2647;
  --navy-800: #123a6b;
  --navy-100: #e7eef7;
  --gold-500: #d4a537;
  --gold-600: #b8862a;
  --gold-100: #fbf1d9;
  --orange-500: #e8721e;
  --white: #ffffff;
  --ink: #1c2733;
  --grey-600: #5b6672;
  --grey-300: #d8dee6;
  --grey-100: #f4f6f9;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(7, 26, 51, 0.08);
  --shadow-md: 0 8px 24px rgba(7, 26, 51, 0.1);
  --shadow-lg: 0 20px 48px rgba(7, 26, 51, 0.16);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --font-display: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --dur: 220ms;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --green-600: #2e7d4f;
  --green-100: #e7f5ec;
}

/* High contrast theme override */
body.hc {
  --navy-900: #000000;
  --navy-950: #000000;
  --gold-500: #ffd400;
  --gold-600: #ffd400;
  --ink: #000000;
  --grey-600: #000000;
  --grey-100: #ffffff;
  --grey-300: #000000;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Override Bootstrap defaults that may load after style.css */
.access-bar a,
.access-bar a:hover,
.site-header a,
.site-header a:hover,
.site-footer a,
.site-footer a:hover {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Override Bootstrap's 2rem padding-left on lists */
body ul,
body ol {
  padding-left: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--navy-900);
}

p {
  margin: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 10px 18px;
  font-weight: 600;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 2px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.section {
  padding: var(--space-4) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-4);
}

.section-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-top: var(--space-1);
}

.section-head p {
  color: var(--grey-600);
  margin-top: var(--space-2);
}

.section-alt {
  background: var(--grey-100);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    background var(--dur) var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  background: var(--gold-600);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy-900);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-800);
  box-shadow: var(--shadow-md);
}

/* ================= ACCESSIBILITY BAR ================= */
.access-bar {
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.8rem;
}

.access-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  gap: var(--space-2);
}

.access-bar .a-links {
  display: flex;
  gap: var(--space-3);
}

.access-bar .a-links a {
  opacity: 0.85;
}

.access-bar .a-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.access-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.access-tools button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background var(--dur) var(--ease);
}

.access-tools button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.access-tools .admin-btn {
  /* background: var(--orange-500); */
  color: var(--white);
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.access-tools .admin-btn i {
  font-size: 0.8rem;
}

.access-tools .admin-label {
  font-size: 0.78rem;
}

.font-adjust {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 2px;
}

.font-adjust button {
  border: none;
  width: 22px;
  height: 22px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}

/* ================= HEADER ================= */
header.site-header {
  position: sticky;
  top: -104px;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 104px;
  gap: var(--space-3);
  padding-left: calc(var(--space-3) + 10px);
}

.brand {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
  margin-left: 2px;
}

.brand-mark {
  width: 72px;
  height: 72px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--white);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 4px;
}

.brand-text .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--navy-900);
  line-height: 1.15;
}

.brand-text .sub {
  font-size: 0.85rem;
  color: var(--navy-800);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 2px;
}

.office-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  margin-left: 60px;
}

.office-copy .label-top {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-900);
  line-height: 1.1;
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--space-3);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--navy-900);
  padding: 8px;
}

/* ================= NAV / MEGA MENU ================= */
nav.main-nav {
  background: var(--navy-900);
}

.nav-list {
  display: flex;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a,
.nav-list > li > button.nav-top {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 14px var(--space-2);
  background: none;
  border: none;
  height: 100%;
  border-bottom: 3px solid transparent;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.nav-list > li > a:hover,
.nav-list > li > button.nav-top:hover,
.nav-list > li.open > button.nav-top {
  background: var(--navy-800);
  border-bottom-color: var(--gold-500);
  color: var(--white);
}

.nav-top i.fa-chevron-down {
  font-size: 0.65rem;
  transition: transform var(--dur) var(--ease);
}

.nav-list > li.open .nav-top i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Blinking dot indicator used on Anti-Ragging nav item */
@keyframes blink-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.7);
  }
}

.mega {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 24px 32px;
  display: none;
  grid-auto-flow: column;
  gap: 32px;
  border: 1px solid var(--grey-200);
  border-top: 4px solid var(--gold-500);
  z-index: 100;
}

@keyframes megaFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-list > li.open .mega {
  display: grid;
  animation: megaFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mega-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy-900);
  font-weight: 700;
  border-bottom: 2px solid var(--grey-300);
  padding-bottom: 6px;
  margin-bottom: 8px;
}

.mega-col {
  width: 280px; /* Wider column width so long text (like Facilities) fits */
}

.mega-col ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  margin-left: -12px; /* Pull back to align icon with text above */
  color: var(--grey-600);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition:
    transform 0.2s cubic-bezier(0.2, 0, 0, 1),
    background-color 0.2s ease,
    color 0.2s ease;
}

.mega-col ul li a i {
  color: var(--navy-800);
  width: 16px;
  text-align: center;
}

.mega-col ul li a:hover {
  color: var(--navy-900);
  background: var(--grey-100);
  transform: translateX(4px);
}

.mobile-nav {
  display: none;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(212, 165, 55, 0.22),
      transparent 45%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(232, 114, 30, 0.14),
      transparent 40%
    );
  pointer-events: none;
}

.hero > .container.hero-grid {
  max-width: none;
  width: 99vw;
  margin: 0;
  padding: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  color: var(--gold-500);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-500);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.15;
  margin-top: var(--space-2);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-500);
}

.hero .dosa-msg {
  margin-top: var(--space-3);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  max-width: 52ch;
  border-left: 3px solid var(--gold-500);
  padding-left: var(--space-2);
}

.hero .dosa-sign {
  margin-top: var(--space-2);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero .dosa-sign strong {
  color: var(--white);
}

.hero-cta {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}

/* Ticker */
.ticker {
  margin-top: var(--space-4);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  display: flex;
  align-items: center;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.ticker-badge {
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 9px 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
  border-radius: 999px 0 0 999px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticker-track-wrap {
  overflow: hidden;
  flex: 1;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-track span {
  padding: 9px 32px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticker-track span i {
  color: var(--gold-500);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Top section: carousel + notices */
.hero-top {
  display: grid;
  gap: var(--space-3);
  align-items: start;
  width: 100%;
  max-width: none;
  position: relative;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.hero-bottom-section {
  background: var(--navy-950);
  padding: var(--space-4) 0;
  position: relative;
  z-index: 2;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: var(--space-3);
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-3);
  box-sizing: border-box;
}

.std-office-dtls {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  color: var(--white);
  background: transparent;
  border: none;
  box-shadow: none;
  padding-top: var(--space-3);
  justify-content: flex-start;
}

.std-office-dtls h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--white);
  line-height: 1.2;
}

.std-office-dtls h1 em {
  font-style: normal;
  color: var(--gold-500);
}

.std-office-dtls .dosa-msg {
  margin-top: 8px;
  max-width: 90%;
  border-left: 3px solid var(--gold-500);
  padding-left: var(--space-2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
}

.notice-announcement {
  display: grid;
  gap: var(--space-3);
}

.notice-announcement .notice-widget {
  margin: 0;
}

.announcement-panel {
  display: flex;
  flex-direction: column;
  height: 500px;
  max-height: 500px;
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.78) 0%,
    rgba(15, 23, 42, 0.92) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.announcement-panel::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(251, 191, 36, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  border-radius: 50%;
}

.announcement-panel .panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
}

.announcement-panel .panel-head .panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  margin: 0;
}

.announcement-panel .panel-head .panel-label i {
  color: #fbbf24;
  font-size: 1.05rem;
}

.live-pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: livePulse 1.8s infinite;
  margin-left: 4px;
}

@keyframes livePulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

.announcement-panel .panel-head a.view-all-btn {
  color: #fbbf24;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  line-height: 1.2;
  transition: all 0.25s ease;
}

/* Category Filter Tabs in Hero Announcement Panel */
.notice-type-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 0 8px 0;
  margin-top: 4px;
  width: 100%;
}

.notice-type-tabs::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.notice-tab-btn {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.notice-tab-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

.notice-tab-btn.active {
  background: #fbbf24;
  color: #0f172a;
  border-color: #fbbf24;
  font-weight: 700;
}

.announcement-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.announcement-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-list li:last-child {
  border-bottom: none;
}

.index-notice-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.index-notice-title {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.index-notice-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
  margin-top: 2px;
}

.index-notice-meta a {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.index-notice-meta a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.notice-badge-new {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  line-height: 1.2;
}

.notice-badge-new::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
  display: inline-block;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 8px;
  border-radius: 8px;
  overflow: hidden;
  align-items: center;
}
.tab-btn {
  background: transparent;
  border: none;
  padding: 6px 12px;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.tab-btn[aria-selected="true"],
.tab-btn.active {
  background: var(--white);
  color: var(--navy-950);
  border-radius: 8px;
  font-weight: 700;
}
.tab-btn:hover:not([aria-selected="true"]) {
  background: rgba(255, 255, 255, 0.1);
}
.tab-panel {
  padding-top: 0;
  min-height: 360px;
}

.tab-panel:not([hidden]) {
  animation: tabFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tabFadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.announcement-panel .panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.announcement-panel .panel-head a {
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--dur) var(--ease);
}

.announcement-panel .panel-head a:hover {
  color: var(--gold-600);
  text-decoration: underline;
}

.panel-head .panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--white);
}

/* Hero Announcement Panel Table-like Rows Override */
.announcement-panel .announcement-list {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;
  flex: 1 !important;
  overflow-y: auto !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  margin-top: 10px !important;
}

.announcement-panel .announcement-list::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.announcement-panel .announcement-list li {
  display: block !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.announcement-panel .notice-row,
.announcement-panel .index-notice-row {
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: transparent !important;
}

.announcement-panel li:last-child .notice-row,
.announcement-panel li:last-child .index-notice-row {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.announcement-panel .notice-title,
.announcement-panel .index-notice-title {
  color: #ffffff !important;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  margin-bottom: 4px !important;
  line-height: 1.4 !important;
}

.announcement-panel .notice-meta,
.announcement-panel .index-notice-meta {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.82rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  margin-top: 2px !important;
}

.announcement-panel .notice-meta a,
.announcement-panel .index-notice-meta a {
  color: #fbbf24 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.announcement-panel .notice-meta a:hover,
.announcement-panel .index-notice-meta a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.notice-row .notice-meta {
  font-size: 0.85rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.notice-row .notice-meta span,
.notice-row .notice-meta i {
  color: #64748b !important;
}

.notice-row .notice-meta a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.notice-row .notice-meta a:hover {
  text-decoration: underline;
}

.ticker {
  display: none;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms var(--ease);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

/* Carousel container: provide viewport-relative height so absolute slides are visible */
.carousel {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 400px;
  max-height: 85vh;
  overflow: hidden;
}

/* Prev / Next controls */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background-color: rgba(7, 26, 51, 0.45);
  background-size: cover;
  background-position: center;
  background-image: none;
  color: var(--white);
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.carousel-prev {
  left: 20px;
}
.carousel-next {
  right: 20px;
}
.carousel-prev:hover,
.carousel-next:hover {
  background-color: rgba(7, 26, 51, 0.6);
  background-image:
    linear-gradient(rgba(7, 26, 51, 0.45), rgba(7, 26, 51, 0.45)),
    var(--preview-bg);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev i,
.carousel-next i {
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide .cap {
  background: linear-gradient(0deg, rgba(7, 26, 51, 0.88), transparent);
  width: 100%;
  padding: var(--space-3);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.carousel-dots {
  position: absolute;
  bottom: var(--space-2);
  right: var(--space-2);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
}

.carousel-dots button.active {
  background: var(--gold-500);
  width: 22px;
  border-radius: 5px;
  transition: width var(--dur) var(--ease);
}

.notice-widget {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  backdrop-filter: blur(6px);
  margin: 10px;
}

.notice-widget h3 {
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notice-widget h3 a {
  font-size: 0.75rem;
  color: var(--gold-500);
  font-weight: 600;
}

.notice-list {
  margin-top: var(--space-2);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notice-list li a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  transition: padding-left var(--dur) var(--ease);
}

.notice-list li:last-child a {
  border-bottom: none;
}

.notice-list li a:hover {
  padding-left: 8px;
  color: var(--white);
}

.notice-tag {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  background: var(--gold-500);
  color: var(--navy-950);
  white-space: nowrap;
}

.notice-tag.circular {
  background: var(--orange-500);
  color: var(--white);
}

.notice-date {
  margin-left: auto;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

/* ================= GALLERY ================= */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.filter-chip {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--grey-300);
  background: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--grey-600);
  transition: all var(--dur) var(--ease);
}

.filter-chip:hover {
  border-color: var(--navy-800);
  color: var(--navy-900);
}

.filter-chip.active {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
  background: var(--grey-100);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
  loading: lazy;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 26, 51, 0.82), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-2);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay .g-cat {
  color: var(--gold-500);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.overlay .g-title {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.gallery-item .play {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(7, 26, 51, 0.7);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 26, 51, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  max-width: 900px;
  width: 100%;
  position: relative;
}

.lightbox-inner img {
  border-radius: var(--radius-md);
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
}

.lightbox-cap {
  color: var(--white);
  margin-top: var(--space-2);
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-close {
  top: -56px;
  right: 0;
}

.lightbox-nav.prev {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.next {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

/* ================= SAFETY & WELLBEING ================= */
.safety-section {
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.safety-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 90% 10%,
    rgba(212, 165, 55, 0.18),
    transparent 45%
  );
}

.helpline-banner {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, var(--orange-500), var(--gold-600));
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-5);
}

.helpline-banner .hl-left {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.helpline-banner .hl-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.helpline-banner h3 {
  color: var(--white);
  font-size: 1.15rem;
}

.helpline-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  margin-top: 2px;
}

.helpline-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.safety-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.safety-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  transition:
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease);
}

.safety-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.safety-card .ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-500);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: var(--space-2);
}

.safety-card.report .ic {
  background: var(--orange-500);
  color: var(--white);
}

.safety-card h4 {
  color: var(--white);
  font-size: 1rem;
}

.safety-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  margin-top: 8px;
}

.safety-card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-2);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-500);
}

.safety-card.report {
  border-color: rgba(232, 114, 30, 0.5);
}

.safety-card.report a.card-link {
  color: var(--orange-500);
}

/* Emergency contacts strip */
.contacts-strip {
  position: relative;
  z-index: 1;
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}

.contact-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-2);
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-pill .num-ic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 165, 55, 0.18);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-pill .txt .role {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-pill .txt a {
  font-weight: 700;
  color: var(--white);
  font-size: 0.92rem;
}

/* ================= SERVICES QUICK GRID (bonus, ties nav to page) ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  transition:
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-500);
}

.service-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy-100);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: var(--space-2);
}

.service-card h4 {
  font-size: 1rem;
}

.service-card p {
  color: var(--grey-600);
  font-size: 0.85rem;
  margin-top: 6px;
}

/* ================= FOOTER ================= */
footer.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.8);
}

.footer-top {
  padding: var(--space-6) 0 var(--space-4);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--space-4);
}

.footer-cols h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-2);
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  font-size: 0.7rem;
}

.footer-brand span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-cols p.desc {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 34ch;
}

.footer-cols ul li {
  margin-bottom: 10px;
}

.footer-cols ul li a {
  font-size: 0.85rem;
  transition: color var(--dur) var(--ease);
}

.footer-cols ul li a:hover {
  color: var(--gold-500);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease);
}

.social-icons a:hover {
  background: var(--gold-500);
  color: var(--navy-950);
}

.gov-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: var(--space-1);
}

.gov-badges a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.gov-badges a i {
  color: var(--gold-500);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: var(--space-2) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.8rem;
}

.footer-bottom .links {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.footer-bottom .links a:hover {
  color: var(--gold-500);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .safety-grid,
  .contacts-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }

  .carousel {
    height: clamp(320px, 50svh, 560px);
    min-height: 0;
    max-height: none;
  }
}

@media (max-width: 1023px) {
  nav.main-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    height: 76px;
    gap: var(--space-2);
  }

  .brand-text .sub {
    max-width: 285px;
  }

  .office-mark {
    min-width: 106px;
  }

  .office-mark .label {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .header-right {
    gap: var(--space-1);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .std-office-dtls,
  .announcement-panel {
    padding: var(--space-4);
  }

  .carousel {
    height: clamp(280px, 48svh, 500px);
    min-height: 0;
    max-height: none;
  }
}

@media (max-width: 820px) {
  .container {
    padding-inline: var(--space-2);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lightbox-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .access-bar .container {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 8px 0;
    gap: 8px;
  }

  .header-inner {
    height: 68px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 6px;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    margin-bottom: 0;
    justify-content: center;
  }

  .brand-text .name {
    font-size: 1.05rem;
    line-height: 1.15;
  }

  .brand-text .sub {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0;
    line-height: 1.25;
    margin-top: 2px;
  }

  .office-mark {
    min-width: 82px;
    flex-direction: column;
    text-align: center;
    gap: 2px;
  }

  .office-mark .seal {
    display: none;
  }

  .office-mark .label {
    display: block;
    font-size: 0.56rem;
    line-height: 1.25;
  }

  .hero-bottom-section {
    padding: var(--space-3) 0 var(--space-4);
  }

  .carousel {
    height: clamp(250px, 45svh, 380px);
    min-height: 0;
    max-height: none;
  }

  .std-office-dtls,
  .announcement-panel {
    border-radius: var(--radius-lg);
    padding: var(--space-3);
  }

  .tab-panel {
    min-height: 0;
  }

  .panel-head,
  .announcement-panel .panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .safety-grid,
  .contacts-strip,
  .services-grid,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-bottom-section {
    padding: var(--space-2) 0 var(--space-3);
  }
  .hero-bottom {
    padding: 0 var(--space-2);
  }
  .std-office-dtls {
    padding: 0;
  }
  .hero h1,
  .std-office-dtls h1 {
    font-size: 1.45rem;
  }
  .std-office-dtls .dosa-msg {
    font-size: 0.9rem;
    padding-left: 12px;
  }
  .announcement-panel {
    padding: 16px;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-cta .btn {
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(5n + 1) {
    grid-row: span 1;
    aspect-ratio: 1/1;
  }

  .helpline-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .helpline-number {
    font-size: 1.4rem;
  }

  .tabs {
    gap: 4px;
  }

  .tab-btn {
    padding: 6px 8px;
    font-size: 0.78rem;
  }

  .announcement-list li {
    padding: 12px;
  }

  .footer-bottom .links {
    gap: var(--space-2);
  }
}

@media (max-width: 380px) {
  .office-mark {
    min-width: 58px;
  }

  .office-mark .label {
    font-size: 0.56rem;
    white-space: nowrap;
  }

  .brand {
    gap: 8px;
  }

  .brand-text .name {
    font-size: 0.9rem;
  }

  .carousel {
    height: clamp(230px, 42svh, 320px);
  }

  .filter-chip {
    padding: 8px 14px;
  }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 86vw);
  background: var(--navy-950);
  color: var(--white);
  z-index: 1500;
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  padding: var(--space-3);
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
  display: block;
}

.mobile-nav .close-drawer {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: var(--space-3);
}

.mobile-nav details {
  padding: 10px 0;
  border-bottom: none !important;
}

.mobile-nav summary {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav ul {
  margin-top: 8px;
  padding-left: var(--space-2);
}

.mobile-nav ul li a {
  display: block;
  padding: 7px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.mobile-nav > a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  border-bottom: none !important;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(7, 26, 51, 0.5);
  z-index: 1400;
  display: none;
}

.scrim.open {
  display: block;
}

/* ================= FORM ELEMENTS INHERIT ================= */
select,
input,
textarea {
  font-family: inherit;
}

/* ================= BUTTON EXTRAS ================= */
.btn-ghost {
  background: var(--white);
  border-color: var(--grey-300);
  color: var(--navy-900);
}
.btn-ghost:hover {
  border-color: var(--gold-500);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.82rem;
}

/* ================= ADMIN BUTTON ================= */
.admin-btn {
  background: var(--orange-500);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 16px rgba(232, 114, 30, 0.32);
  transition:
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.admin-btn:hover {
  background: #cf6414;
  transform: translateY(-2px);
}

/* ================= OFFICE MARK ================= */
.office-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}
.office-mark .seal {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
}
.office-mark .label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-900);
}
.office-mark .label span {
  color: var(--gold-600);
}

/* ================= MOBILE NAV (full positioned) ================= */
.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 86vw);
  background: var(--navy-950);
  color: var(--white);
  z-index: 1500;
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
  padding: var(--space-3);
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav .close-drawer {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: var(--space-3);
  cursor: pointer;
}
.mobile-nav details {
  padding: 10px 0;
  border-bottom: none !important;
}
.mobile-nav summary {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  cursor: pointer;
}
.mobile-nav summary::-webkit-details-marker {
  display: none;
}
.mobile-nav ul {
  margin-top: 8px;
  padding-left: var(--space-2);
}
.mobile-nav ul li a {
  display: block;
  padding: 7px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
}
.mobile-nav ul li a.active {
  color: var(--gold-500);
  font-weight: 700;
}

/* ================= PAGE HERO (sub-pages) ================= */
.page-hero {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(212, 165, 55, 0.22),
      transparent 45%
    ),
    radial-gradient(
      circle at 10% 90%,
      rgba(232, 114, 30, 0.14),
      transparent 40%
    );
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: var(--space-6) 0 var(--space-5);
}
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-3);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--white);
  text-decoration: none;
}
.breadcrumb span {
  color: var(--gold-500);
  font-weight: 500;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.15;
  margin-top: var(--space-2);
  max-width: 20ch;
}
.page-hero p.lede {
  margin-top: var(--space-3);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 60ch;
}

/* ===== Page Hero Banner Variant ===== */
.page-hero-banner .page-hero-inner {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
  padding-left: var(--space-3);
  padding-right: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-hero-banner .breadcrumb,
.page-hero-banner .hero-title,
.page-hero-banner .hero-subtitle,
.page-hero-banner .hero-stats {
  margin: 0 !important;
}
.page-hero-banner .hero-title {
  max-width: none;
  background: linear-gradient(135deg, #ffffff, var(--gold-500));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.page-hero-banner .hero-subtitle {
  max-width: 650px;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}
.hero-stats {
  display: flex;
  gap: var(--space-5);
  margin-top: var(--space-5);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold-500);
}
.hero-stat .lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

/* ================= SECTION HEAD FLEX ================= */
.section-head.flex-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
  max-width: none;
  flex-wrap: wrap;
}

/* ================= CTA BAND ================= */
.cta-band {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 90% 20%,
    rgba(212, 165, 55, 0.25),
    transparent 45%
  );
}
.cta-band h3 {
  color: var(--white);
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  gap: var(--space-2);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* ================= STAFF / CONTACTS GRID ================= */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}
.staff-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition:
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.staff-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.staff-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.staff-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.staff-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.staff-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-900);
}
.staff-role {
  font-size: 0.75rem;
  color: var(--grey-600);
}
.staff-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.staff-actions a {
  flex: 1;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  border: 1px solid var(--grey-300);
  border-radius: 999px;
  padding: 7px;
  color: var(--navy-900);
  transition: all var(--dur) var(--ease);
}
.staff-actions a:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

/* ================= PROCESS STEPS (columns set per-page) ================= */
.process-grid {
  display: grid;
  gap: var(--space-2);
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--grey-300);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold-500);
  color: var(--navy-900);
  font-family: var(--font-display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
}
.process-step h4 {
  font-size: 0.92rem;
}
.process-step p {
  color: var(--grey-600);
  font-size: 0.8rem;
  margin-top: 6px;
}

/* ================= FAQ ACCORDION ================= */
.faq-list {
  max-width: 820px;
}
.faq-item {
  border-bottom: 1px solid var(--grey-300);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-3) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.98rem;
}
.faq-q i {
  transition: transform var(--dur) var(--ease);
  color: var(--gold-600);
  flex-shrink: 0;
  margin-left: var(--space-2);
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease);
}
.faq-item.open .faq-a {
  max-height: 220px;
}
.faq-a p {
  color: var(--grey-600);
  font-size: 0.9rem;
  padding-bottom: var(--space-3);
  max-width: 70ch;
}

/* ================= REUSABLE FORM ROWS ================= */
.form-row {
  margin-bottom: var(--space-3);
}
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color var(--dur) var(--ease);
  background: var(--white);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold-500);
  outline: none;
}
.form-row textarea {
  resize: vertical;
  min-height: 90px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

/* ================= MV CARD (columns set per-page) ================= */
.mv-grid {
  display: grid;
  gap: var(--space-3);
}
.mv-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  position: relative;
  overflow: hidden;
  transition:
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.mv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gold-500);
}
.mv-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy-100);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-2);
}
.mv-card h3 {
  font-size: 1.1rem;
}
.mv-card p {
  color: var(--grey-600);
  margin-top: 10px;
  font-size: 0.92rem;
}

/* ================= QUICK GRID / CARD ================= */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.quick-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition:
    box-shadow var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.quick-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-500);
}
.quick-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy-100);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.quick-card h4 {
  font-size: 1rem;
}
.quick-card p {
  color: var(--grey-600);
  font-size: 0.85rem;
}
.quick-card a.card-link {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ================= TIMELINE ================= */
.timeline {
  position: relative;
  margin-top: var(--space-4);
}
.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grey-300);
}
.tl-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: var(--space-4);
}
.tl-item:last-child {
  margin-bottom: 0;
}
.tl-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  border: 3px solid var(--gold-500);
  z-index: 1;
}
.tl-item h4 {
  font-size: 1.05rem;
}
.tl-item p {
  color: var(--grey-600);
  margin-top: 6px;
  font-size: 0.92rem;
  max-width: 64ch;
}

/* ================= SPOTLIGHT (clubs & achievements) ================= */
.spotlight {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-950);
}
.spotlight-photo {
  position: relative;
  min-height: 340px;
}
.spotlight-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight-photo .badge {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.spotlight-body {
  padding: var(--space-5);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spotlight-body .cat {
  color: var(--gold-500);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.spotlight-body h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-top: 10px;
  line-height: 1.25;
}
.spotlight-body p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: var(--space-2);
  font-size: 0.98rem;
  max-width: 56ch;
}
.spotlight-meta {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-3);
  flex-wrap: wrap;
}
.spotlight-meta span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  align-items: center;
  gap: 8px;
}
.spotlight-meta i {
  color: var(--gold-500);
}

/* ================= STATUS CHIP ================= */
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-100);
  color: var(--green-600);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-top: var(--space-3);
}

/* ================= RESPONSIVE ADDITIONS ================= */
@media (max-width: 1080px) {
  .spotlight {
    grid-template-columns: 1fr;
  }
  .spotlight-photo {
    min-height: 260px;
  }
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    row-gap: var(--space-4);
  }
  .process-grid::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .office-mark {
    display: none;
  }
  .admin-btn span {
    display: none;
  }
  .admin-btn {
    padding: 10px 14px;
  }

  .hero-stats {
    gap: var(--space-4);
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .quick-grid {
    grid-template-columns: 1fr;
  }
  .staff-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ================= GO TO TOP BUTTON ================= */
.go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--gold-500);
  color: var(--navy-950);
  border: none;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.3s var(--ease),
    visibility 0.3s,
    transform 0.3s var(--ease),
    background-color 0.2s;
  z-index: 1500;
}

.go-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-to-top:hover {
  background-color: var(--gold-600);
  transform: translateY(-4px);
}

/* Animated Banner Styles */
@keyframes bannerSlideUpFade {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-content-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 50px;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(15, 23, 42, 0.4) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}

.carousel-title {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow:
    0 4px 20px rgba(0, 0, 0, 0.9),
    0 2px 10px rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: auto;
}

.carousel-subtitle {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 24px;
  max-width: 800px;
  line-height: 1.6;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.9),
    0 1px 6px rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: auto;
}

.carousel-btn {
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  z-index: 10;
  opacity: 0;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.carousel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.carousel-slide.active .carousel-title {
  animation: bannerSlideUpFade 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

.carousel-slide.active .carousel-subtitle {
  animation: bannerSlideUpFade 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.25s;
}

.carousel-slide.active .carousel-btn {
  animation: bannerSlideUpFade 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.4s;
}

/* Mosaic House Walls Gallery */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  grid-auto-rows: 220px;
  grid-gap: 16px;
  grid-auto-flow: dense;
}

.mosaic-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mosaic-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mosaic-item:hover img {
  transform: scale(1.05);
}

.mosaic-large {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.mosaic-tall {
  grid-column: span 1;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .mosaic-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-rows: 150px;
  }

  .mosaic-large,
  .mosaic-wide,
  .mosaic-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .mosaic-large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* Lightbox Modal Advanced */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 9999;
  background: rgba(10, 15, 29, 0.97);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-top-left {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 100;
  background: rgba(15, 23, 42, 0.85);
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 60%;
  box-sizing: border-box;
}

.lightbox-title-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lightbox-counter {
  font-size: 0.8rem;
  color: #fbbf24;
  margin-top: 2px;
  font-weight: 600;
}

.lightbox-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 100;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s,
    transform 0.15s;
}

.lightbox-close-btn:hover {
  background: #ef4444;
  border-color: #ef4444;
  transform: scale(1.08);
}

.lightbox-body {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 24px 16px 24px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.lightbox-main-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s,
    transform 0.15s;
  z-index: 10;
}

.lightbox-nav-btn.prev-btn {
  left: 24px;
}

.lightbox-nav-btn.next-btn {
  right: 24px;
}

.lightbox-nav-btn:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: #0f172a;
  transform: translateY(-50%) scale(1.08);
}

.lightbox-thumbnails {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  padding: 12px 24px;
  overflow-x: auto;
  overflow-y: hidden;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  box-sizing: border-box;
}

.lightbox-thumb {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition:
    opacity 0.15s,
    border-color 0.15s;
  flex-shrink: 0;
}

.lightbox-thumb.active,
.lightbox-thumb:hover {
  opacity: 1;
  border-color: #fbbf24;
}

@media (max-width: 768px) {
  .lightbox-top-left {
    top: 12px;
    left: 12px;
    padding: 8px 14px;
    max-width: calc(100% - 70px);
  }
  .lightbox-close-btn {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
  .lightbox-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  .lightbox-nav-btn.prev-btn {
    left: 12px;
  }
  .lightbox-nav-btn.next-btn {
    right: 12px;
  }
  .lightbox-body {
    padding: 60px 12px 12px 12px;
  }
  .lightbox-thumb {
    width: 44px;
    height: 44px;
  }
}

/* ================= ALBUM CARDS ================= */
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

@media (max-width: 768px) {
  .albums-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.album-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.album-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.album-media {
  position: relative;
  width: 100%;
  height: 240px;
  background: #0f172a;
  overflow: hidden;
}

.album-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.album-card:hover .album-cover-img {
  transform: scale(1.05);
}

.album-count-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.album-count-badge i {
  color: #fbbf24;
}

.album-details {
  padding: 18px 20px;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
}

.album-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.album-meta-text {
  font-size: 0.82rem;
  color: #64748b;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .carousel-prev,
  .carousel-next {
    width: 42px;
    height: 42px;
  }
  .carousel-prev {
    left: 10px;
  }
  .carousel-next {
    right: 10px;
  }
  .carousel-prev i,
  .carousel-next i {
    font-size: 1rem;
  }
  .carousel-content-wrapper {
    padding: 30px 20px 20px 20px;
  }
  .carousel-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  .carousel-subtitle {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
}

/* Anti-Ragging Specific Styles */
.helpline-badge {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: #ffffff;
  border-radius: 8px;
  padding: 16px 24px;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.doc-item-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px 20px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.doc-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.media-poster-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.media-poster-img:hover {
  transform: scale(1.03);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Global Quill Editor Overrides */
.ql-editor {
  white-space: normal !important;
}
