:root {
  color-scheme: light;
  --ink: #0b141a;
  --muted: #4a5d65;
  --paper: #eef3ea;
  --panel: #ffffff;
  --line: #c8d4cc;
  --red: #b9272f;
  --green: #0f604b;
  --blue: #084d68;
  --gold: #c98d1d;
  --teal: #087b80;
  --plum: #65314f;
  --charcoal: #0c1a22;
  --ivory: #fbfbf3;
  --shadow: 0 28px 86px rgba(8, 22, 30, 0.22);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(8, 77, 104, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 77, 104, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fbfbf3 0%, #eef4ee 42%, #faf7ed 100%);
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--ink);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 10px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 251, 246, 0.88)),
    linear-gradient(90deg, rgba(185, 39, 47, 0.05), transparent 32%, rgba(8, 77, 104, 0.06));
  border-bottom: 1px solid rgba(196, 210, 202, 0.88);
  box-shadow: 0 12px 34px rgba(8, 22, 30, 0.09);
  backdrop-filter: blur(28px) saturate(170%);
}

.site-header::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--teal), var(--blue));
  content: "";
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(28, 42, 48, 0.08);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 56px;
  height: 56px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  position: relative;
  min-width: 0;
  padding-left: 14px;
}

.brand-copy::before {
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background: linear-gradient(180deg, rgba(179, 52, 47, 0.24), rgba(20, 95, 134, 0.24));
  content: "";
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
  line-height: 1.08;
}

.brand-lockup strong {
  max-width: min(42vw, 520px);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  color: #0d1a21;
  letter-spacing: 0;
}

.brand-lockup small {
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  padding: 5px;
  border: 1px solid rgba(196, 210, 202, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(247, 250, 246, 0.54));
  color: #1d333d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 820;
}

.main-nav a,
.nav-menu-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  white-space: nowrap;
  transition:
    background 140ms ease,
    color 140ms ease,
    box-shadow 140ms ease;
}

.main-nav a::after,
.nav-menu-button::before {
  display: none;
}

.main-nav > a:hover,
.nav-dropdown:hover .nav-menu-button,
.nav-dropdown:focus-within .nav-menu-button {
  background: rgba(8, 77, 104, 0.1);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(8, 77, 104, 0.08);
}

.nav-dropdown {
  position: relative;
  padding-bottom: 9px;
  margin-bottom: -9px;
}

.nav-dropdown::after {
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 14px;
  content: "";
}

.nav-menu-button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: default;
  font-weight: 840;
}

.nav-menu-button::after {
  margin-left: 7px;
  color: var(--red);
  content: "▾";
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 20;
  display: grid;
  min-width: 250px;
  padding: 10px;
  border: 1px solid rgba(202, 215, 207, 0.94);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 248, 0.96)),
    linear-gradient(135deg, rgba(7, 90, 130, 0.08), transparent 55%);
  box-shadow: 0 26px 70px rgba(8, 22, 30, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 130ms ease,
    transform 130ms ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  justify-content: flex-start;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 10px;
  color: #18323d;
}

.nav-menu a:hover {
  background: rgba(7, 90, 130, 0.11);
  color: var(--blue);
}

.nav-menu a::after {
  display: none;
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(204, 218, 210, 0.94);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 246, 0.9));
  color: var(--ink);
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(8, 22, 30, 0.08);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease;
}

.nav-action:hover,
.button:hover {
  border-color: rgba(8, 77, 104, 0.24);
  box-shadow: 0 18px 40px rgba(8, 22, 30, 0.13);
  transform: translateY(-1px);
}

.nav-action {
  min-width: 92px;
  border-color: rgba(185, 39, 47, 0.24);
  background: linear-gradient(135deg, rgba(185, 39, 47, 0.95), rgba(150, 30, 40, 0.95));
  color: white;
  box-shadow: 0 16px 34px rgba(185, 39, 47, 0.2);
}

.button {
  min-width: 150px;
  cursor: pointer;
}

.button.primary {
  border-color: rgba(185, 39, 47, 0.9);
  background:
    linear-gradient(135deg, #d63b3f, #9f2029),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent);
  color: white;
  box-shadow: 0 18px 42px rgba(185, 39, 47, 0.28);
}

.button.secondary {
  border-color: rgba(7, 90, 130, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

.hero {
  position: relative;
  min-height: clamp(660px, 90vh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(95deg, rgba(4, 13, 18, 0.96), rgba(7, 50, 65, 0.72) 48%, rgba(18, 54, 50, 0.32)),
    linear-gradient(0deg, rgba(238, 243, 234, 0.98), rgba(238, 243, 234, 0) 28%);
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background:
    linear-gradient(90deg, rgba(189, 48, 43, 0.28), transparent 28%),
    linear-gradient(270deg, rgba(217, 154, 25, 0.24), transparent 34%);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-content {
  position: relative;
  width: min(820px, calc(100% - 36px));
  min-width: 0;
  margin: 0 auto 98px clamp(18px, 6vw, 86px);
  color: white;
}

.hero-content::before {
  position: absolute;
  inset: -28px auto -28px -28px;
  z-index: -1;
  width: min(720px, calc(100vw - 36px));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    linear-gradient(90deg, rgba(201, 141, 29, 0.08), transparent);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(3px);
  content: "";
}

.hero-graphic {
  position: absolute;
  right: clamp(20px, 6vw, 96px);
  top: 22%;
  z-index: -1;
  width: min(360px, 28vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  opacity: 0.72;
  transform: rotate(8deg);
}

.hero-graphic span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
}

.hero-graphic span:nth-child(1) {
  inset: 34px;
}

.hero-graphic span:nth-child(2) {
  inset: 78px;
  border-color: rgba(213, 161, 45, 0.55);
}

.hero-graphic span:nth-child(3) {
  inset: 124px;
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 6.7vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.05rem, 3.45vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.18;
}

.hero-copy,
.section p {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: rgba(20, 33, 40, 0.76);
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.admission-call,
.notice-strip p,
.step-list li,
.required-docs li,
.feature-list li,
.approval-grid li,
.feature-grid li,
.career-list li,
.methodology-grid li,
.light-list li {
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.hero-pills span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 780;
}

.admission-call {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 780;
}

.admission-call a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.notice-strip {
  position: absolute;
  right: clamp(18px, 5vw, 74px);
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(520px, calc(100% - 36px));
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 246, 0.86));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(140%);
}

.notice-strip span,
.status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(157, 48, 47, 0.12);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 850;
}

.notice-strip p {
  margin: 0;
  font-weight: 800;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -1px auto 0;
  border-block: 1px solid rgba(196, 210, 202, 0.88);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 243, 0.92)),
    linear-gradient(90deg, rgba(185, 39, 47, 0.08), transparent 28%, rgba(8, 123, 128, 0.1));
  backdrop-filter: blur(18px);
}

.metric {
  position: relative;
  padding: clamp(28px, 4.2vw, 52px);
  border-right: 1px solid var(--line);
}

.metric::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  content: "";
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 2px;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 9.5vw, 128px) 0;
}

.prestige-section {
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #07131a 0%, #0a3748 48%, #123b35 100%);
  background-size: 86px 86px, 86px 86px, auto;
  color: white;
}

.prestige-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  max-width: 1240px;
  margin-inline: auto;
}

.prestige-copy p,
.prestige-section .section p,
.prestige-section p {
  color: rgba(255, 255, 255, 0.78);
}

.prestige-copy h2,
.ecosystem-section h2,
.campus-depth h2,
.clinical-band-premium h2,
.journey-section h2 {
  max-width: 900px;
}

.recognition-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.recognition-strip span {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff6d7;
  font-size: 0.8rem;
  font-weight: 900;
}

.prestige-panel {
  position: relative;
  min-width: 0;
}

.prestige-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(560px, calc(100% - 28px));
  margin: -72px auto 0;
  position: relative;
}

.proof-grid article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 246, 0.9));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  line-height: 1;
}

.proof-grid span {
  color: #213640;
  font-weight: 820;
  line-height: 1.35;
}

.ecosystem-section {
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background:
    linear-gradient(120deg, rgba(185, 39, 47, 0.08), transparent 36%),
    linear-gradient(300deg, rgba(8, 123, 128, 0.12), transparent 40%),
    #fbfbf3;
}

.ecosystem-section > * {
  max-width: 1240px;
  margin-inline: auto;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ecosystem-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(13, 24, 32, 0.08), rgba(13, 24, 32, 0.84)),
    url("./../assets/nursing-display.jpg") center / cover;
  color: white;
  box-shadow: 0 24px 68px rgba(8, 22, 30, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.ecosystem-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(7, 90, 130, 0.24), transparent 48%);
  content: "";
}

.ecosystem-card:hover {
  box-shadow: 0 32px 88px rgba(10, 28, 36, 0.22);
  transform: translateY(-4px);
}

.ecosystem-card > * {
  position: relative;
  z-index: 1;
}

.ecosystem-card span,
.depth-card span {
  color: #ffe5a3;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ecosystem-card h3 {
  margin: 10px 0;
  font-size: 1.35rem;
}

.ecosystem-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.58;
}

.ecosystem-card.pharmacy {
  background:
    linear-gradient(180deg, rgba(13, 24, 32, 0.08), rgba(87, 31, 30, 0.88)),
    url("./../assets/student-cancer-awareness.jpg") center / cover;
}

.ecosystem-card.paramedical {
  background:
    linear-gradient(180deg, rgba(13, 24, 32, 0.08), rgba(13, 54, 78, 0.88)),
    url("./../assets/paramedical-main-building-hero.jpg") center / cover;
}

.ecosystem-card.ayush {
  background:
    linear-gradient(180deg, rgba(13, 24, 32, 0.08), rgba(25, 82, 58, 0.88)),
    url("./../assets/instagram-events/nutrition-day.jpg") center / cover;
}

.campus-depth {
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(232, 242, 238, 0.94)),
    repeating-linear-gradient(90deg, rgba(8, 77, 104, 0.065) 0 1px, transparent 1px 92px);
}

.campus-depth > * {
  max-width: 1240px;
  margin-inline: auto;
}

.depth-grid {
  display: grid;
  grid-template-columns: 1.12fr repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.depth-card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(204, 218, 210, 0.96);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 247, 0.92)),
    linear-gradient(135deg, rgba(7, 90, 130, 0.08), transparent 58%);
  box-shadow: 0 18px 48px rgba(8, 22, 30, 0.11);
}

.depth-card.feature {
  display: grid;
  grid-row: span 2;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.depth-card.feature img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.depth-card.feature div {
  padding: 24px;
}

.depth-card span {
  color: var(--red);
}

.depth-card h3 {
  margin: 9px 0 10px;
  font-size: 1.24rem;
}

.depth-card p {
  margin-bottom: 0;
  color: rgba(20, 33, 40, 0.72);
  line-height: 1.62;
}

.clinical-band-premium {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, #09151d, #153b45 54%, #672b35);
  background-size: 78px 78px, 78px 78px, auto;
  color: white;
}

.clinical-band-premium p {
  color: rgba(255, 255, 255, 0.78);
}

.clinical-band-premium img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.clinical-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.clinical-band-premium .button.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.journey-section {
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background:
    linear-gradient(180deg, #fbfbf3, #edf5f1),
    linear-gradient(90deg, rgba(185, 39, 47, 0.06), transparent 42%);
}

.journey-section > * {
  max-width: 1240px;
  margin-inline: auto;
}

.journey-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.journey-rail article {
  min-height: 270px;
  padding: 22px;
  border: 1px solid rgba(204, 218, 210, 0.96);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 247, 0.9));
  box-shadow: 0 18px 46px rgba(8, 22, 30, 0.11);
}

.journey-rail span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  font-weight: 950;
}

.journey-rail h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.journey-rail p {
  margin-bottom: 0;
  color: rgba(20, 33, 40, 0.72);
  line-height: 1.58;
}

.events-section {
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background:
    linear-gradient(135deg, #0b1820, #0b4053 52%, #173c35),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  color: white;
}

.events-section > * {
  max-width: 1240px;
  margin-inline: auto;
}

.events-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.events-section .button.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.event-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 26px;
}

.event-filters .filter-pill {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.event-filters .filter-pill:hover,
.event-filters .filter-pill.active {
  border-color: rgba(255, 229, 163, 0.62);
  background: #ffe5a3;
  color: #15272d;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.event-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.event-card:hover {
  border-color: rgba(255, 229, 163, 0.42);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.event-card > img {
  width: 100%;
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(235, 242, 239, 0.86));
  object-fit: contain;
  object-position: center;
}

.event-card-crest {
  display: grid;
  min-height: 208px;
  place-items: center;
  padding: 26px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 229, 163, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.event-card-crest img {
  width: 74px;
  height: 74px;
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 50%;
  background: white;
  object-fit: contain;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.event-card > div:not(.event-card-crest) {
  display: grid;
  gap: 9px;
  padding: 22px;
}

.event-card span,
.event-card time,
.event-card small {
  color: #ffe5a3;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card time {
  color: rgba(255, 255, 255, 0.66);
}

.event-card h3 {
  margin: 0;
  color: white;
  font-size: 1.25rem;
}

.event-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.58;
}

.event-card small {
  color: rgba(255, 255, 255, 0.58);
}

.programs-section {
  position: relative;
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background:
    linear-gradient(120deg, rgba(185, 39, 47, 0.08), transparent 34%),
    linear-gradient(300deg, rgba(8, 123, 128, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(226, 243, 238, 0.94)),
    repeating-linear-gradient(135deg, rgba(7, 90, 130, 0.06) 0 1px, transparent 1px 18px);
}

.programs-section > * {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin-inline: auto;
}

.programs-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(179, 52, 47, 0.1), transparent 32%),
    linear-gradient(270deg, rgba(21, 154, 156, 0.14), transparent 36%);
  content: "";
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(36px, 8vw, 90px);
  align-items: start;
  min-width: 0;
}

.enquiry-card,
.program-card,
.notice-card,
.leader-card,
.admin-panel,
.admin-preview {
  border: 1px solid rgba(204, 218, 210, 0.95);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 247, 0.94));
  box-shadow: 0 20px 54px rgba(8, 22, 30, 0.12);
}

.enquiry-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 24px;
  border-top: 5px solid var(--red);
  box-shadow: 0 28px 74px rgba(8, 22, 30, 0.16);
}

label {
  display: grid;
  gap: 8px;
  color: #34464f;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c3d0c8;
  border-radius: var(--radius);
  padding: 10px 12px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcf8);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-note a {
  color: var(--blue);
  font-weight: 850;
}

.form-status {
  min-height: 20px;
  margin: -6px 0 0;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 760;
}

.lead-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.course-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.course-heading > div {
  max-width: 760px;
}

.course-heading .button {
  flex: 0 0 auto;
}

.course-track-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.course-track-strip span {
  min-height: 58px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #29414a;
  box-shadow: 0 16px 40px rgba(14, 30, 37, 0.07);
  font-weight: 850;
  line-height: 1.25;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  overflow: hidden;
  padding: 0 0 24px;
  border-color: rgba(37, 93, 123, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 248, 0.94)),
    linear-gradient(145deg, rgba(20, 95, 134, 0.12), transparent 46%);
  box-shadow:
    0 24px 64px rgba(14, 30, 37, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.program-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(7, 90, 130, 0.12), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(217, 154, 25, 0.16), transparent 28%);
  pointer-events: none;
  content: "";
}

.program-card::after {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 7px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  content: "";
}

.program-card[data-track="pharmacy"]::after {
  background: linear-gradient(90deg, #8f2928, var(--gold));
}

.program-card[data-track="ayush"]::after {
  background: linear-gradient(90deg, #236b55, #9bb95c);
}

.program-card[data-track="paramedical"]::after {
  background: linear-gradient(90deg, #145f86, #5b7cdd);
}

.program-card:hover {
  border-color: rgba(37, 93, 123, 0.32);
  box-shadow: 0 34px 90px rgba(14, 30, 37, 0.2);
  transform: translateY(-5px);
}

.program-card > * {
  position: relative;
  z-index: 1;
}

.program-media {
  position: relative;
  overflow: hidden;
}

.program-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
  transition: transform 220ms ease;
}

.program-card:hover .program-media img {
  transform: scale(1.035);
}

.program-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 24, 32, 0), rgba(10, 24, 32, 0.44)),
    linear-gradient(90deg, rgba(10, 24, 32, 0.28), transparent 55%);
  content: "";
}

.program-media span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.62);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.program-topline,
.program-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.program-topline {
  margin: 20px 22px 0;
}

.program-title-row {
  align-items: start;
  justify-content: start;
  margin: 22px 22px 18px;
}

.program-code {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  box-shadow: 0 16px 34px rgba(20, 95, 134, 0.22);
  font-weight: 900;
}

.program-topline small {
  padding: 8px 11px;
  border: 1px solid rgba(20, 95, 134, 0.14);
  border-radius: 999px;
  background: rgba(20, 95, 134, 0.08);
  color: var(--blue);
  font-weight: 850;
}

.program-number {
  margin: 1px 0 0;
  color: rgba(20, 95, 134, 0.24);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 0.9;
}

.program-card h3 {
  margin-bottom: 6px;
  font-size: 1.42rem;
}

.program-subtitle {
  color: var(--blue);
  font-weight: 800;
  line-height: 1.35;
}

.program-meta {
  display: grid;
  gap: 0;
  margin: 18px 22px 20px;
  border: 1px solid rgba(223, 230, 224, 0.9);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 251, 248, 0.76)),
    linear-gradient(135deg, rgba(7, 90, 130, 0.04), transparent 70%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.program-meta div {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(223, 230, 224, 0.9);
}

.program-meta div:last-child {
  border-bottom: 0;
}

.program-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.program-meta dd {
  margin: 0;
  color: #243840;
  font-weight: 720;
  line-height: 1.45;
}

.program-card > p:not(.program-subtitle, .program-number) {
  margin: 0 22px 20px;
  color: rgba(20, 33, 40, 0.72);
  line-height: 1.58;
}

.course-research {
  display: grid;
  gap: 14px;
  margin: 20px 22px;
  padding: 18px;
  border: 1px solid rgba(223, 230, 224, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.course-research h4 {
  margin: 0;
  color: var(--blue);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.course-research ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.course-research li,
.course-research p {
  color: #34464f;
  line-height: 1.55;
}

.career-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 22px 0;
}

.career-chips span {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(20, 95, 134, 0.09);
  color: #154b64;
  font-size: 0.8rem;
  font-weight: 850;
}

.program-action-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: auto 22px 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(223, 230, 224, 0.82);
}

.program-action-row .button {
  min-width: 120px;
  min-height: 38px;
  padding-inline: 14px;
}

.program-action-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1.35;
}

.college-gateway {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gateway-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: #101820;
  color: white;
  box-shadow: 0 24px 68px rgba(10, 28, 36, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.gateway-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 24, 32, 0.02), rgba(16, 24, 32, 0.88)),
    linear-gradient(135deg, rgba(7, 90, 130, 0.34), transparent 58%);
  content: "";
}

.gateway-card:hover {
  box-shadow: 0 34px 90px rgba(10, 28, 36, 0.24);
  transform: translateY(-4px);
}

.gateway-card img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gateway-card:hover img {
  transform: scale(1.04);
}

.gateway-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 24px;
}

.gateway-card span {
  color: #ffe5a3;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gateway-card h3 {
  margin: 10px 0 8px;
  color: white;
  font-size: 1.55rem;
}

.gateway-card p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
}

.gateway-meta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.gateway-meta strong {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 0.82rem;
}

.gateway-meta small {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 760;
  line-height: 1.35;
}

.founder-message-section {
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(185, 39, 47, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(8, 77, 104, 0.12), transparent 48%),
    #f7fbf4;
}

.founder-message {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  max-width: 1240px;
  margin-inline: auto;
}

.founder-message > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(8, 22, 30, 0.18);
}

.founder-message h2 {
  margin: 8px 0 16px;
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.founder-message p {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.75;
}

.message-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.message-values article {
  padding: 20px;
  border: 1px solid rgba(196, 210, 202, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 54px rgba(10, 28, 36, 0.08);
}

.message-values span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.message-values p {
  margin: 8px 0 0;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 34px;
  align-items: center;
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 10% 10%, rgba(217, 154, 25, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(10, 23, 31, 0.96), rgba(7, 90, 130, 0.9)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
  color: white;
}

.feature-band p,
.feature-band .feature-list li {
  color: rgba(255, 255, 255, 0.82);
}

.feature-band img,
.notice-layout img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.quick-links a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-weight: 750;
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: #34464f;
  line-height: 1.55;
  min-width: 0;
}

.step-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(40, 107, 78, 0.12);
  color: var(--green);
  font-weight: 900;
}

.required-docs {
  padding-top: 4px;
}

.required-docs h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.required-docs ul,
.feature-list,
.approval-grid,
.feature-grid,
.career-list,
.methodology-grid,
.light-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.required-docs li,
.feature-list li,
.approval-grid li,
.feature-grid li,
.career-list li,
.methodology-grid li,
.light-list li {
  position: relative;
  padding-left: 22px;
  color: #34464f;
  line-height: 1.55;
}

.required-docs li::before,
.feature-list li::before,
.approval-grid li::before,
.feature-grid li::before,
.career-list li::before,
.methodology-grid li::before,
.light-list li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.approvals-section {
  align-items: center;
}

.approval-grid,
.feature-grid,
.career-list,
.methodology-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.approval-grid li,
.feature-grid li,
.career-list li,
.methodology-grid li {
  min-height: 72px;
  padding: 18px 18px 18px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 28px rgba(28, 42, 48, 0.05);
  font-weight: 720;
}

.approval-grid li::before,
.feature-grid li::before,
.career-list li::before,
.methodology-grid li::before {
  left: 18px;
  top: 26px;
}

.photo-section {
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background: #101820;
  color: white;
}

.photo-section .section-heading {
  max-width: 880px;
}

.photo-section .section-heading p,
.photo-card p {
  color: rgba(255, 255, 255, 0.76);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.photo-card {
  color: inherit;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.photo-card:hover {
  border-color: rgba(213, 161, 45, 0.45);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card div {
  padding: 20px;
}

.photo-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.gallery-section {
  width: min(1280px, calc(100% - 36px));
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #142128;
  box-shadow: 0 20px 54px rgba(10, 28, 36, 0.14);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-feature {
  grid-row: span 2;
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.72);
  color: white;
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.home-secondary {
  display: none !important;
}

.methodology-section,
.staff-section,
.resources-section,
.society-section {
  width: min(1180px, calc(100% - 36px));
}

.college-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 720px;
  padding: clamp(42px, 8vw, 100px) clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 12% 14%, rgba(217, 154, 25, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(10, 23, 31, 0.96), rgba(7, 90, 130, 0.86)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 20px);
  color: white;
}

.college-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.college-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
}

.college-hero .hero-copy {
  color: rgba(255, 255, 255, 0.84);
}

.college-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: start;
}

.college-programmes .program-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.college-programmes .program-card {
  min-height: auto;
}

.college-gallery-section {
  display: grid;
  gap: 28px;
  background: linear-gradient(135deg, #f7fbfa, #fff7eb);
}

.college-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.college-gallery-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 18px 42px rgba(14, 30, 37, 0.08);
}

.college-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #eef4f2;
  object-fit: cover;
}

.college-gallery-card figcaption {
  padding: 14px 16px 16px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.main-nav a[aria-current="page"] {
  color: var(--red);
}

.staff-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.staff-card,
.resource-card {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(14, 30, 37, 0.08);
}

.staff-card span,
.resource-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.resource-card {
  min-height: 120px;
}

.vacancy-section {
  align-items: center;
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background: linear-gradient(135deg, #edf5f3, #fff7ea);
}

.light-list li {
  padding: 16px 16px 16px 38px;
  border: 1px solid rgba(223, 230, 224, 0.9);
  border-radius: 14px;
  background: white;
  box-shadow: 0 12px 28px rgba(14, 30, 37, 0.05);
}

.light-list li::before {
  left: 16px;
  top: 25px;
}

.utility-hero,
.course-detail-hero {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 6vw, 86px);
  background:
    radial-gradient(circle at 8% 0, rgba(217, 154, 25, 0.2), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(7, 143, 149, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(10, 23, 31, 0.96), rgba(7, 90, 130, 0.86)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px);
  color: white;
}

.utility-hero h1,
.course-detail-hero h1 {
  max-width: 900px;
}

.utility-hero p,
.course-detail-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.course-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.course-stat-grid div,
.info-panel,
.search-result,
.faculty-card {
  border: 1px solid rgba(204, 218, 210, 0.95);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 247, 0.95)),
    linear-gradient(135deg, rgba(7, 90, 130, 0.06), transparent 60%);
  box-shadow: 0 18px 44px rgba(10, 28, 36, 0.11);
}

.course-stat-grid div {
  padding: 18px;
  color: var(--ink);
}

.course-stat-grid span {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.course-stat-grid strong {
  display: block;
  margin-top: 6px;
  line-height: 1.35;
}

.info-panel {
  padding: 24px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filter-bar button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(7, 90, 130, 0.18);
  border-radius: 999px;
  background: white;
  color: #34464f;
  font-weight: 800;
  cursor: pointer;
}

.filter-bar button.active {
  border-color: var(--blue);
  background: linear-gradient(135deg, rgba(7, 90, 130, 0.13), rgba(7, 143, 149, 0.1));
  color: var(--blue);
}

.utility-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.faculty-card {
  overflow: hidden;
  padding: 18px;
}

.faculty-card img {
  width: 84px;
  height: 84px;
  margin-bottom: 16px;
  border-radius: 50%;
  object-fit: cover;
}

.faculty-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.faculty-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
}

.site-search {
  width: min(760px, 100%);
  margin-top: 24px;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.92);
}

.search-results {
  display: grid;
  gap: 12px;
}

.search-result {
  display: block;
  padding: 18px;
}

.search-result span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(204, 218, 210, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(10, 28, 36, 0.08);
}

.faq-item summary {
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.faq-item p {
  padding: 0 18px 18px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-frame iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.legal-page {
  max-width: 920px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-page h2 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-size: 1.35rem;
}

.legal-page h2:first-child {
  margin-top: 0;
}

.legal-page a {
  color: var(--blue);
  font-weight: 850;
}

.hospital-section {
  width: 100%;
  padding-inline: clamp(18px, 5vw, 70px);
  background:
    linear-gradient(180deg, #fff8eb, #f4f7ef),
    repeating-linear-gradient(90deg, rgba(213, 161, 45, 0.08) 0 1px, transparent 1px 90px);
}

.hospital-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 34px;
  align-items: center;
  margin-bottom: 26px;
}

.hospital-layout .section-heading {
  margin-bottom: 0;
}

.hospital-layout img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hospital-tagline {
  color: var(--green);
  font-weight: 850;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.leader-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
}

.leader-card img {
  width: 132px;
  aspect-ratio: 1;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(14, 30, 37, 0.12);
}

.leader-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
}

.notice-layout {
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  gap: 24px;
  align-items: start;
}

.notice-list {
  display: grid;
  gap: 14px;
}

.notice-card {
  padding: 18px;
}

.notice-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.notice-card time,
.notice-card small {
  color: var(--muted);
  font-weight: 750;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 70px);
  background: #142128;
  color: white;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.admin-body {
  background: #f3f4ef;
}

.admin-header {
  position: relative;
}

.admin-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(320px, 420px);
  gap: 18px;
  width: min(1380px, calc(100% - 32px));
  margin: 22px auto;
}

.admin-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
}

.admin-sidebar button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: #3d4f58;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.admin-sidebar button.active {
  border-color: var(--line);
  background: white;
  box-shadow: 0 12px 28px rgba(28, 42, 48, 0.06);
}

.admin-panel,
.admin-preview {
  padding: 22px;
}

.admin-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-title h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.save-state {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(40, 107, 78, 0.12);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
}

.editor-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.editor-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.preview-card {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .site-header,
  .admin-shell,
  .split,
  .prestige-layout,
  .founder-message,
  .college-hero,
  .college-overview,
  .hospital-layout,
  .clinical-band-premium,
  .feature-band,
  .notice-layout {
    grid-template-columns: 1fr;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: start;
    width: max-content;
    max-width: 100%;
    overflow: visible;
  }

  .program-grid,
  .college-programmes .program-grid,
  .course-track-strip,
  .college-gateway,
  .course-stat-grid,
  .photo-grid,
  .college-gallery,
  .approval-grid,
  .feature-grid,
  .leader-grid,
  .career-list,
  .methodology-grid,
    .staff-grid,
    .faculty-grid,
    .utility-grid,
    .resource-grid,
    .proof-grid,
    .ecosystem-grid,
    .event-grid,
    .depth-grid,
    .journey-rail,
    .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .depth-card.feature {
    grid-row: auto;
  }

  .admin-sidebar {
    grid-auto-flow: column;
    overflow-x: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-feature {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  html,
  body,
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    gap: 12px;
    width: 100vw;
    max-width: 100vw;
    grid-template-columns: 1fr;
    padding-inline: 14px;
    overflow: visible;
  }

  .main-nav {
    justify-self: start;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    gap: 4px;
    overflow-x: visible;
    overflow-y: visible;
    padding: 5px;
    font-size: 0.82rem;
    scrollbar-width: none;
    transform: scale(0.74);
    transform-origin: left top;
    margin-bottom: -26px;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a,
  .nav-menu-button {
    justify-content: center;
    min-width: 0;
    min-height: 34px;
    width: 100%;
    padding: 0 8px;
    text-align: center;
  }

  .nav-dropdown {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
  }

  .main-nav > a {
    flex: 1 1 calc(50% - 4px);
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .brand-lockup {
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }

  .brand-lockup strong {
    max-width: min(245px, calc(100vw - 112px));
    font-size: 0.84rem;
    line-height: 1.08;
    white-space: normal;
  }

  .brand-lockup small {
    font-size: 0.78rem;
    line-height: 1.12;
  }

  .nav-menu {
    left: 0;
    min-width: min(260px, calc(100vw - 28px));
    transform: translate(0, 8px);
  }

  .nav-dropdown:hover .nav-menu,
  .nav-dropdown:focus-within .nav-menu {
    transform: translate(0, 0);
  }

  .nav-action {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 38px;
    padding-inline: 10px;
    font-size: 0.9rem;
  }

  .hero-content {
    width: min(330px, calc(100% - 36px));
    max-width: min(330px, calc(100vw - 36px));
    min-width: 0;
    margin-left: 18px;
    margin-right: 18px;
    margin-bottom: 170px;
  }

  .hero-content::before,
  .hero-graphic {
    display: none;
  }

  h1 {
    font-size: 2.18rem;
    line-height: 1.02;
  }

  h2 {
    max-width: 280px;
    font-size: 1.55rem;
    line-height: 1.08;
  }

  .split > div {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-copy {
    width: min(330px, calc(100vw - 36px));
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }

  .utility-hero,
  .course-detail-hero {
    padding-inline: 18px;
    overflow: hidden;
  }

  .utility-hero h1,
  .course-detail-hero h1,
  .utility-hero p,
  .course-detail-hero p,
  .site-search {
    max-width: min(330px, calc(100vw - 36px));
  }

  .search-result {
    max-width: min(330px, calc(100vw - 36px));
    overflow: hidden;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .hero-pills {
    gap: 7px;
  }

  .hero-pills span {
    padding: 7px 9px;
    font-size: 0.76rem;
  }

  .notice-strip {
    left: 18px;
    right: 18px;
    align-items: flex-start;
    flex-direction: column;
    width: min(330px, calc(100vw - 36px));
    max-width: min(330px, calc(100vw - 36px));
  }

  .notice-strip p {
    max-width: 100%;
  }

  .section {
    width: min(330px, calc(100% - 28px));
    max-width: min(330px, calc(100vw - 28px));
    overflow: hidden;
  }

  .prestige-section,
  .founder-message-section,
  .ecosystem-section,
  .events-section,
  .programs-section,
  .campus-depth,
  .clinical-band-premium,
  .journey-section,
  .feature-band,
  .photo-section,
  .hospital-section,
  .vacancy-section {
    width: 100%;
    max-width: 100%;
    padding-inline: 18px;
  }

  .prestige-section > *,
  .founder-message-section > *,
  .ecosystem-section > *,
  .events-section > *,
  .programs-section > *,
  .campus-depth > *,
  .journey-section > * {
    width: min(330px, 100%);
    max-width: min(330px, calc(100vw - 36px));
  }

  .prestige-layout,
  .founder-message,
  .prestige-panel,
  .ecosystem-grid,
  .depth-grid,
  .journey-rail {
    width: 100%;
    min-width: 0;
  }

  .prestige-copy {
    width: min(280px, 100%);
    min-width: 0;
    margin-inline: auto;
  }

  .prestige-copy h2,
  .ecosystem-section h2,
  .campus-depth h2,
  .clinical-band-premium h2,
  .journey-section h2 {
    max-width: 100%;
    font-size: 1.55rem;
    line-height: 1.08;
  }

  .hero-actions,
  .site-footer,
  .editor-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .program-grid,
  .college-programmes .program-grid,
  .course-track-strip,
  .college-gateway,
  .course-stat-grid,
  .photo-grid,
  .college-gallery,
  .approval-grid,
  .feature-grid,
  .leader-grid,
  .career-list,
  .methodology-grid,
    .staff-grid,
    .faculty-grid,
    .utility-grid,
    .resource-grid,
    .proof-grid,
    .ecosystem-grid,
    .event-grid,
    .depth-grid,
    .journey-rail,
    .metrics,
    .form-grid {
    grid-template-columns: 1fr;
  }

  .prestige-layout {
    gap: 28px;
  }

  .prestige-panel img,
  .clinical-band-premium img {
    border-radius: 18px;
  }

  .proof-grid {
    width: 100%;
    margin-top: 12px;
  }

  .proof-grid article,
  .ecosystem-card,
  .depth-card,
  .journey-rail article {
    min-height: auto;
  }

  .clinical-actions .button {
    width: 100%;
  }

  .leader-card {
    grid-template-columns: 1fr;
  }

  .leader-card img {
    width: 100%;
    max-width: 220px;
  }

  .course-heading {
    display: block;
  }

  .course-heading .button {
    margin-top: 18px;
    width: 100%;
  }

  .program-card {
    min-height: auto;
  }

  .program-action-row {
    grid-template-columns: 1fr;
  }

  .program-action-row .button {
    width: 100%;
  }

  .gateway-card,
  .gateway-card img {
    min-height: 380px;
  }

  .gateway-body {
    padding: 20px;
  }

  .gateway-meta {
    grid-template-columns: 1fr;
  }

  .program-title-row {
    gap: 12px;
  }

  .program-number {
    font-size: 1.9rem;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-feature {
    grid-column: auto;
    grid-row: auto;
  }

  .college-hero {
    min-height: auto;
    padding-block: 44px;
  }

  .college-hero h1 {
    font-size: 2.35rem;
  }

  .college-hero img {
    border-radius: 18px;
  }
}
