/* ============================================================
   MSRIM New UI Stylesheet — Extracted from new-ui-design
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --navy: #0a1f3d;
  --navy-800: #102b52;
  --navy-700: #1a3a6b;
  --navy-100: #e8eef7;
  --gold: #c9a961;
  --gold-dark: #b08f48;
  --gold-light: #f5ecd6;
  --cream: #faf6ee;
  --cream-2: #f3ece0;
  --crimson: #E05A04;
  --orange: #F88C1A;
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --line: #e3dccd;
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, sans-serif;
  --grad: linear-gradient(135deg, var(--crimson) 0%, var(--orange) 100%);
  --shadow-sm: 0 2px 12px rgba(10, 31, 61, .06);
  --shadow-md: 0 8px 30px rgba(10, 31, 61, .12);
  --shadow-lg: 0 20px 60px rgba(10, 31, 61, .18);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s
}

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

ul {
  list-style: none
}

/* ── UTILITY BAR ── */
.util {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  padding: 9px 0
}

.util .w {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px
}

.util .left {
  font-weight: 500;
  letter-spacing: .2px
}

.util .right {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap
}

.util a {
  color: #fff;
  transition: opacity .2s
}

.util a:hover {
  opacity: .78
}

.util .ico {
  display: inline-flex;
  gap: 6px;
  align-items: center
}

.util .pill {
  border: 1px solid rgba(255, 255, 255, .5);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  transition: all .25s
}

.util .pill:hover {
  background: rgba(255, 255, 255, .2)
}

/* ── HEADER ── */
.site-header {
  background: #FDF9F4;
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid rgba(10, 31, 61, .08);
  box-shadow: 0 2px 16px rgba(10, 31, 61, .06)
}

.hdr {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px
}

.logo img {
  height: 44px;
  width: auto
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
  padding: 6px 10px;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap
}

.nav-links a:hover {
  background: var(--gold-light);
  color: var(--navy)
}

.nav-links a.active {
  background: var(--gold-light);
  font-weight: 700
}

.drop-menu a.active {
  background: transparent !important;
  font-weight: 500 !important;
  border-bottom: none !important;
  color: #1a1a1a !important
}

/* Dropdown */
.nav-links .has-drop {
  position: relative
}

.nav-links .has-drop>a {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-links .has-drop>a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: var(--navy);
  margin-top: 2px;
  transition: transform .2s
}

.nav-links .has-drop:hover>a::after {
  transform: rotate(180deg);
  margin-top: -2px
}

.drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(10, 31, 61, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s;
  z-index: 999;
  padding: 6px
}

.has-drop:hover .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.drop-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap
}

.drop-menu a:hover {
  background: var(--navy-100);
  color: var(--navy);
  padding-left: 18px
}

.drop-menu .drop-divider {
  height: 1px;
  background: var(--line);
  margin: 4px 0
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: opacity .25s;
  flex-shrink: 0
}

.nav-cta:hover {
  opacity: .88
}

/* ── BURGER MENU PILL ── */
.menu-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #E05A04;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all .3s;
  flex-shrink: 0;
  margin-left: 24px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  min-width: 64px;
  box-shadow: 0 3px 12px rgba(224, 90, 4, .35)
}

.menu-pill:hover {
  opacity: .88;
  transform: translateY(-1px)
}

.menu-pill .lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 22px
}

.menu-pill .lines span {
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
  display: block
}

.menu-pill .lines span:nth-child(2) {
  width: 70%;
  margin-left: auto
}

/* ── MOBILE NAV PANEL ── */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 980;
  visibility: hidden;
  pointer-events: none
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 61, .55);
  opacity: 0;
  transition: opacity .35s;
  backdrop-filter: blur(3px)
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: #FDF9F4;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.25, .8, .25, 1);
  padding: 24px 22px 36px;
  overflow-y: auto;
  box-shadow: -6px 0 28px rgba(10, 31, 61, .14);
  z-index: 999
}

.mobile-nav.open {
  visibility: visible;
  pointer-events: auto
}

.mobile-nav.open .mobile-nav-overlay {
  opacity: 1
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0)
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px
}

.mobile-nav-header .logo img {
  height: 38px
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-100);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--navy);
  transition: all .25s
}

.mobile-nav-close:hover {
  background: var(--navy);
  color: #fff
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px
}

.mobile-nav-links a {
  display: block;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
  transition: all .2s
}

.mobile-nav-links a:hover {
  background: var(--gold-light)
}

.mobile-nav-links a.active {
  background: var(--gold-light);
  font-weight: 700
}

.mobile-nav-group {
  border-radius: 8px;
  overflow: hidden
}

.mobile-nav-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background .2s
}

.mobile-nav-group-title:hover {
  background: var(--navy-100)
}

.mobile-nav-group-title i {
  font-size: 12px;
  transition: transform .25s;
  color: var(--gold)
}

.mobile-nav-group.open .mobile-nav-group-title i {
  transform: rotate(180deg)
}

.mobile-nav-sub {
  display: none;
  padding-left: 14px;
  border-left: 2px solid var(--gold-light);
  margin-left: 14px
}

.mobile-nav-group.open .mobile-nav-sub {
  display: block
}

.mobile-nav-sub a {
  font-size: 13.5px;
  color: var(--muted);
  padding: 9px 10px
}

.mobile-nav-sub a:hover {
  color: var(--navy);
  background: var(--cream);
  border-radius: 6px
}

.mobile-nav-cta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line)
}

.mobile-nav-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  padding: 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px
}

/* ── VIDEO CAROUSEL HERO ── */
.vc {
  position: relative;
  height: 65vh;
  min-height: 460px;
  overflow: hidden;
  background: #000
}

.vc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none
}

.vc-slide.active {
  opacity: 1;
  pointer-events: auto
}

.vc-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0
}

.vc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .35) 55%, rgba(0, 0, 0, .08) 100%);
  z-index: 1
}

.vc-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8% 100px
}

.vc-caption.right {
  align-items: flex-end;
  text-align: right;
  padding: 0 8% 100px
}

.vc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 97, .18);
  border: 1px solid rgba(201, 169, 97, .35);
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  text-transform: uppercase;
  width: fit-content
}

.vc-caption h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 70px);
  font-weight: 600;
  color: #fff;
  line-height: 1.12;
  max-width: 700px;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(28px);
  transition: all .8s ease .3s
}

.vc-caption.right h1 {
  max-width: 700px
}

.vc-caption p {
  font-size: 16px;
  color: rgba(255, 255, 255, .78);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s ease .5s
}

.vc-caption .vc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: all .7s ease .7s
}

.vc-caption.right .vc-actions {
  justify-content: flex-end
}

.vc-slide.active .vc-caption h1,
.vc-slide.active .vc-caption p,
.vc-slide.active .vc-caption .vc-actions {
  opacity: 1;
  transform: translateY(0)
}

/* Nav arrows */
.vc-prev,
.vc-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s
}

.vc-prev {
  left: 24px
}

.vc-next {
  right: 24px
}

.vc-prev:hover,
.vc-next:hover {
  background: var(--grad);
  border-color: transparent
}

/* Dots */
.vc-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 7px
}

.vc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0
}

.vc-dot.active {
  background: #FDF9F4;
  width: 22px;
  border-radius: 4px
}

/* Chips bottom right */
.vc-chips {
  position: absolute;
  bottom: 12px;
  right: 28px;
  display: flex;
  gap: 10px;
  z-index: 10
}

.chip {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 600;
  text-align: center
}

.chip span {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--gold)
}

/* Progress bar */
.vc-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--grad);
  z-index: 10;
  width: 0;
  transition: none
}

/* ── BUTTONS ── */
.btn-primary-new {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--grad);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(224, 90, 4, .35);
  border: none
}

.btn-primary-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224, 90, 4, .45);
  color: #fff
}

.btn-outline-new {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #fff;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  border: 2px solid rgba(255, 255, 255, .5);
  transition: all .3s
}

.btn-outline-new:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--grad);
  color: #fff;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(224, 90, 4, .25)
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224, 90, 4, .35);
  color: #fff
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #0a1f3d;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid #0a1f3d;
  transition: all .3s
}

.btn-ghost-white:hover {
  background: var(--navy);
  color: #fff
}

/* ── QUICK LINKS ── */
.quicklinks {
  background: #FDF9F4;
  border-bottom: 1px solid var(--line)
}

.ql-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.ql-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition: background .25s;
  text-decoration: none;
  color: inherit
}

.ql-item:last-child {
  border-right: none
}

.ql-item:hover {
  background: var(--navy-100)
}

.ql-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--navy);
  flex-shrink: 0;
  transition: all .25s
}

.ql-item:hover .ql-icon {
  background: var(--grad);
  color: #fff
}

.ql-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy)
}

.ql-text p {
  font-size: 12.5px;
  color: var(--muted)
}

/* ── SECTION COMMONS ── */
.section {
  padding: 56px 0
}

.section.bg-cream {
  background: var(--cream)
}

.section.bg-white {
  background: #FDF9F4
}

.section.bg-navy {
  background: var(--navy)
}

.section.bg-dark {
  background: #071428
}

.wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 28px
}

.eyebrow {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px
}

.eyebrow::before {
  display: none
}

.eyebrow-lg {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px
}

.eyebrow-lg::before {
  display: none
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px
}

.section-heading em {
  color: var(--gold);
  font-style: italic
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width:100%;
  line-height: 1.7
}

.section-header {
  margin-bottom: 32px
}

.section-header.center {
  text-align: center
}

.section-header.center .section-sub {
  margin: 0 auto
}

.section-header.center .eyebrow {
  justify-content: center
}

.section-header.center .eyebrow::before {
  display: none
}

/* ── STATS ── */
.stats-bar {
  background: var(--navy);
  padding: 24px 0
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0
}

.stat-item {
  padding: 16px 24px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  text-align: center
}

.stat-item:last-child {
  border-right: none
}

.stat-num {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  font-weight: 500;
  letter-spacing: .3px
}

.stat-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  margin-top: 2px
}

/* ── PROGRAMS ── */
.prog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.pcard {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #FDF9F4;
  border: 1px solid rgba(10, 31, 61, .09);
  box-shadow: 0 4px 24px rgba(10, 31, 61, .07);
  transition: transform .45s cubic-bezier(.25, .8, .25, 1), box-shadow .45s;
  display: flex;
  flex-direction: column
}

.pcard:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(10, 31, 61, .16)
}

.pcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  z-index: 4;
  opacity: 0;
  transition: opacity .4s
}

.pcard:hover::before {
  opacity: 1
}

.pcard-img {
  position: relative;
  height: 340px;
  flex-shrink: 0;
  overflow: hidden
}

.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .9s cubic-bezier(.25, .46, .45, .94);
  filter: brightness(.92) saturate(1.08)
}

.pcard:hover .pcard-img img {
  transform: scale(1.07)
}

.pcard-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10, 31, 61, .18) 100%)
}

.pcard-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px
}

.pcard-label.pop {
  background: var(--grad);
  color: #fff
}

.pcard-label.glob {
  background: rgba(201, 169, 97, .95);
  color: var(--navy)
}

.pcard-label.res {
  background: rgba(10, 31, 61, .75);
  color: #fff;
  backdrop-filter: blur(8px)
}

.pcard-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.pcard-accent {
  display: block;
  width: 32px;
  height: 2.5px;
  background: var(--gold);
  margin-bottom: 13px;
  border-radius: 2px;
  transition: width .45s ease
}

.pcard:hover .pcard-accent {
  width: 60px
}

.pcard-body h3 {
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 9px
}

.pcard-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1
}

.pcard-pills {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 14px
}

.pcard-pill {
  background: rgba(10, 31, 61, .07);
  color: var(--navy);
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: .3px
}

.pcard-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 18px
}

.pcard-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #777;
  font-weight: 500
}

.pcard-meta i {
  color: var(--gold);
  font-size: 11px
}

.pcard-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  transition: all .35s;
  width: fit-content;
  margin-top: auto
}

.pcard-link:hover {
  background: var(--grad);
  gap: 13px;
  color: #fff
}

/* ── WHY MSRIM (dark) ── */
.why-dark {
  background: var(--navy);
  padding: 52px 0
}

.why-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: 20px;
  overflow: hidden
}

.wbento {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: background .3s
}

.wbento:hover {
  background: rgba(255, 255, 255, .07)
}

.wbento.big {
  grid-column: span 1;
  grid-row: span 2;
  background: linear-gradient(145deg, rgba(201, 169, 97, .1) 0%, rgba(255, 255, 255, .03) 100%);
  border-color: rgba(201, 169, 97, .2)
}

.wbento.dark {
  background: linear-gradient(145deg, #071428, rgba(10, 31, 61, .8))
}

.wbento-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201, 169, 97, .12);
  border: 1px solid rgba(201, 169, 97, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px
}

.wbento h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px
}

.wbento h3.big-num {
  font-size: clamp(56px, 6vw, 80px)
}

.wbento h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px
}

.wbento p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.65
}

.wbento-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 120px;
  opacity: .04;
  color: #fff;
  font-family: var(--serif);
  line-height: 1;
  pointer-events: none
}

.wbento-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 460px
}

.wbento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.wbento-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 15, 35, .85) 0%, transparent 60%)
}

.wbento-img-text {
  position: absolute;
  bottom: 28px;
  left: 28px;
  color: #fff
}

.wbento-img-text .big {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1
}

.wbento-img-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  margin-top: 4px
}

/* ── TESTIMONIALS ── */
.testi-section {
  background: var(--cream);
  padding: 48px 0
}

.testi-carousel {
  position: relative
}

.testi-track-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  mask: linear-gradient(90deg, transparent, black 5%, black 95%, transparent)
}

.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all .3s;
  background: #FDF9F4;
  color: var(--navy);
  box-shadow: 0 3px 14px rgba(10, 31, 61, .14);
  border: 1.5px solid rgba(201, 169, 97, .3)
}

.testi-nav:hover {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(224, 90, 4, .25)
}

.testi-nav.prev {
  left: -20px
}

.testi-nav.next {
  right: -20px
}

.testi-track {
  display: flex;
  gap: 16px;
  animation: tScroll 40s linear infinite;
  width: max-content
}

.testi-track:hover {
  animation-play-state: paused
}

@keyframes tScroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.testi-card-item {
  background: #FDF9F4;
  border: 1px solid rgba(201, 169, 97, .2);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all .35s;
  box-shadow: 0 2px 14px rgba(201, 169, 97, .08);
  width: 300px;
  height: 264px;
  flex-shrink: 0
}

.testi-card-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold))
}

.testi-card-item::after {
  content: "\201C";
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold);
  opacity: .07;
  position: absolute;
  top: -8px;
  right: 12px;
  line-height: 1;
  pointer-events: none
}

.testi-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(201, 169, 97, .18);
  border-color: rgba(201, 169, 97, .4)
}

.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px
}

.testi-stars i {
  color: var(--gold);
  font-size: 12px
}

.testi-text {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(201, 169, 97, .15);
  padding-top: 12px;
  margin-top: auto
}

.testi-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  border: 2.5px solid rgba(201, 169, 97, .55);
  box-shadow: 0 4px 14px rgba(10, 31, 61, .2);
  overflow: hidden
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top
}

.testi-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy)
}

.testi-role {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px
}

.testi-batch {
  display: inline-block;
  background: rgba(201, 169, 97, .1);
  color: var(--gold-dark);
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
  border: 1px solid rgba(201, 169, 97, .25)
}

/* ── ACCREDITATIONS ── */
.accred-bar {
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 100%);
  padding: 36px 0 40px
}

.accred-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
  flex-wrap: wrap
}

.accred-item {
  background: #FDF9F4;
  border: 1px solid rgba(201, 169, 97, .22);
  border-radius: 18px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all .4s cubic-bezier(.25, .8, .25, 1);
  cursor: default;
  box-shadow: 0 3px 20px rgba(10, 31, 61, .07);
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 180px;
  max-width: 240px
}

.accred-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  opacity: 1
}

.accred-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(201, 169, 97, .07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none
}

.accred-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(10, 31, 61, .13), 0 0 0 1px rgba(201, 169, 97, .35);
  border-color: rgba(201, 169, 97, .45)
}

.accred-item:hover::after {
  opacity: 1
}

.accred-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #FDF9F4;
  border: 1.5px solid rgba(201, 169, 97, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(10, 31, 61, .08);
  overflow: hidden;
  padding: 7px;
  flex-shrink: 0;
  transition: all .4s cubic-bezier(.25, .8, .25, 1)
}

.accred-item:hover .accred-icon {
  box-shadow: 0 8px 24px rgba(201, 169, 97, .35);
  border-color: var(--gold);
  transform: scale(1.08) rotate(-2deg)
}

.accred-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.accred-icon i {
  font-size: 28px;
  color: var(--gold)
}

.accred-item .a-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -.1px
}

.accred-item .a-sub {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
  text-align: center
}

.accred-divider {
  display: none
}

/* ── PLACEMENTS ── */
.placement-section {
  background: var(--cream);
  padding: 52px 0
}

.placement-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0
}

.placement-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 14px
}

.pl-stat {
  background: #FDF9F4;
  border: 1.5px solid rgba(201, 169, 97, .22);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 3px 14px rgba(201, 169, 97, .1);
  position: relative;
  overflow: hidden;
  transition: all .3s
}

.pl-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold))
}

.pl-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 169, 97, .18);
  border-color: var(--gold)
}

.pl-stat .num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-top: 4px
}

.pl-stat .lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
  font-weight: 500
}

.partners-marquee {
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  mask: linear-gradient(90deg, transparent, black 5%, black 95%, transparent)
}

.partners-row {
  display: flex;
  gap: 14px;
  width: max-content
}

.partners-row.row1 {
  animation: scrollL 28s linear infinite
}

.partners-row.row2 {
  animation: scrollR 32s linear infinite
}

.partners-row:hover {
  animation-play-state: paused
}

@keyframes scrollL {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

@keyframes scrollR {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

.partner-logo {
  background: #FDF9F4;
  border: 1.5px solid rgba(201, 169, 97, .25);
  border-radius: 16px;
  padding: 16px 28px;
  height: 110px;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s cubic-bezier(.25, .8, .25, 1);
  box-shadow: 0 3px 14px rgba(201, 169, 97, .12), 0 1px 4px rgba(10, 31, 61, .05);
  flex-shrink: 0;
  position: relative;
  overflow: hidden
}

.partner-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 97, .05) 0%, transparent 60%);
  pointer-events: none
}

.partner-logo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease
}

.partner-logo:hover {
  background: linear-gradient(145deg, #fffdf5, #fff);
  border-color: var(--gold);
  box-shadow: 0 14px 40px rgba(201, 169, 97, .3), 0 3px 12px rgba(10, 31, 61, .08);
  transform: translateY(-7px) scale(1.05)
}

.partner-logo:hover::after {
  transform: scaleX(1)
}

.partner-logo img {
  max-height: 72px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  transition: all .35s;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .07))
}

.partner-logo:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .15))
}

/* ── CAMPUS LIFE STAGGER ── */
.campus-stagger {
  background: #f5f0e8;
  padding: 52px 0;
  overflow: hidden
}

.campus-layout {
  display: flex;
  gap: 0;
  align-items: flex-start
}

.campus-vtitle {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 2px solid var(--gold);
  padding: 0 14px;
  flex-shrink: 0;
  align-self: center;
  margin-right: 48px;
  white-space: nowrap
}

.campus-main {
  flex: 1
}

.campus-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 36px
}

.campus-header h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.05
}

.campus-header h2 span {
  color: var(--gold);
  font-style: italic
}

.campus-header p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  border-left: 3px solid var(--gold);
  padding-left: 20px
}

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

@keyframes ballSpin {
  0% {
    transform: rotateY(0deg) scale(1)
  }

  40% {
    transform: rotateY(200deg) scale(1.15)
  }

  100% {
    transform: rotateY(360deg) scale(1)
  }
}

.ccard {
  display: flex;
  flex-direction: column;
  background: #f5f0e8;
  border-radius: 16px;
  padding: 20px 18px 22px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: all .4s cubic-bezier(.25, .8, .25, 1);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(10, 31, 61, .06);
  border: 1px solid rgba(201, 169, 97, .2)
}

.ccard::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease
}

.ccard:hover {
  background: linear-gradient(145deg, #0a1f3d 0%, #102b52 100%);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 31, 61, .2);
  border-color: transparent;
  z-index: 2
}

.ccard:hover::before {
  transform: scaleX(1)
}

.ccard.offset {
  margin-top: 40px
}

.ccard-num {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: rgba(10, 31, 61, .05);
  line-height: 1;
  transition: color .4s;
  user-select: none
}

.ccard:hover .ccard-num {
  color: rgba(255, 255, 255, .05)
}

.ccard-ball {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  background: radial-gradient(circle at 33% 28%, rgba(255, 255, 255, .75) 0%, rgba(255, 255, 255, 0) 52%), radial-gradient(circle at 68% 72%, rgba(10, 31, 61, .45) 0%, transparent 48%), linear-gradient(140deg, #c5d8f0 0%, #0a1f3d 100%);
  box-shadow: inset -3px -4px 8px rgba(0, 0, 0, .22), inset 2px 3px 7px rgba(255, 255, 255, .45), 0 10px 28px rgba(10, 31, 61, .28), 0 3px 8px rgba(10, 31, 61, .12);
  transition: background .4s ease, box-shadow .4s ease
}

.ccard:hover .ccard-ball {
  background: radial-gradient(circle at 33% 28%, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, 0) 52%), radial-gradient(circle at 68% 72%, rgba(180, 90, 0, .2) 0%, transparent 48%), linear-gradient(140deg, #F8B050 0%, #F07820 100%);
  box-shadow: inset -3px -4px 8px rgba(0, 0, 0, .2), inset 2px 3px 7px rgba(255, 255, 255, .4), 0 10px 32px rgba(240, 120, 32, .45), 0 3px 8px rgba(240, 120, 32, .25);
  animation: ballSpin .65s cubic-bezier(.4, 0, .2, 1)
}

.ccard h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  transition: color .4s;
  line-height: 1.25
}

.ccard:hover h4 {
  color: #fff
}

.ccard p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  transition: color .4s;
  margin-bottom: 0
}

.ccard:hover p {
  color: rgba(255, 255, 255, .6)
}

.ccard-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--crimson);
  margin-top: 10px;
  transition: all .4s;
  opacity: 0;
  transform: translateY(4px)
}

.ccard:hover .ccard-arrow {
  opacity: 1;
  transform: translateY(0);
  color: var(--gold)
}

/* ── NEWS / CAMPUS LIFE ── */
.news-section {
  background: #f5f0e8;
  padding: 52px 0
}

.news-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px
}

.news-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 32px;
  overflow-x: auto;
  flex-wrap: nowrap
}

.news-tab {
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all .25s
}

.news-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
  font-weight: 600
}

.view-toggle {
  display: flex;
  gap: 6px
}

.view-btn {
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #FDF9F4;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: all .3s;
  font-family: var(--sans)
}

.view-btn:hover {
  border-color: var(--gold);
  color: var(--navy)
}

.view-btn.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(10, 31, 61, .18)
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.news-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s;
  text-decoration: none;
  display: block
}

.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.news-img {
  height: 170px;
  overflow: hidden;
  background: var(--navy-100)
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

.news-card:hover .news-img img {
  transform: scale(1.05)
}

.news-body {
  padding: 16px
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap
}

.news-tag {
  display: inline-block;
  background: var(--navy-100);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px
}

.news-tag.guest {
  background: #FFF0DC;
  color: #D4560C
}

.news-tag.student {
  background: #e8f5e9;
  color: #2e7d32
}

.news-tag.industrial {
  background: #e3f2fd;
  color: #1565c0
}

.news-tag.conclave {
  background: #f3e5f5;
  color: #6a1b9a
}

.news-tag.mdp {
  background: #EFEBE9;
  color: #5D4037
}

.news-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--muted)
}

.news-date i {
  color: var(--gold);
  font-size: 10px
}

.news-body h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0
}

/* Calendar View */
.cal-wrap {
  display: none
}

.cal-wrap.active {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 16px;
  align-items: start
}

.cal-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm)
}

.cal-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.cal-header h3 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .3px
}

.cal-nav {
  display: flex;
  gap: 6px
}

.cal-nav button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all .3s
}

.cal-nav button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy)
}

.cal-days-hdr {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: var(--navy-100)
}

.cal-days-hdr span {
  padding: 6px 2px;
  text-align: center;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
  text-transform: uppercase
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--line)
}

.cal-day {
  background: #fff;
  min-height: 44px;
  padding: 5px 5px 4px;
  cursor: pointer;
  transition: all .2s;
  position: relative
}

.cal-day:hover {
  background: var(--gold-light)
}

.cal-day.other-month {
  background: #fafafa
}

.cal-day.other-month .cal-day-num {
  color: #ccc
}

.cal-day.today {
  background: rgba(201, 169, 97, .1)
}

.cal-day.today .cal-day-num {
  color: var(--navy);
  font-weight: 700;
  background: var(--gold);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px
}

.cal-day.has-event {
  background: #fffbf4
}

.cal-day.has-event:hover {
  background: var(--gold-light)
}

.cal-day.selected {
  background: rgba(10, 31, 61, .05);
  box-shadow: inset 0 0 0 2px var(--navy)
}

.cal-day-num {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px
}

.cal-dots {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
  margin-top: 2px
}

.cal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0
}

.dot-news {
  background: var(--orange)
}

.dot-guest {
  background: #E05A04
}

.dot-student {
  background: #2e7d32
}

.dot-industrial {
  background: #1565c0
}

.dot-conclave {
  background: #6a1b9a
}

.dot-mdp {
  background: #5D4037
}

.cal-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-sm)
}

.cal-panel-hdr {
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  padding: 12px 16px
}

.cal-panel-hdr h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff
}

.cal-panel-hdr p {
  font-size: 10.5px;
  color: rgba(255, 255, 255, .6);
  margin-top: 2px
}

.cal-event-list {
  max-height: 320px;
  overflow-y: auto
}

.cal-event-item {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 9px;
  align-items: flex-start;
  transition: background .2s;
  text-decoration: none
}

.cal-event-item:hover {
  background: var(--cream)
}

.cal-event-item:last-child {
  border-bottom: none
}

.cal-event-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px
}

.cal-event-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 2px
}

.cal-event-cat {
  font-size: 10px;
  color: var(--muted)
}

.cal-no-events {
  padding: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 12px
}

.cal-no-events i {
  font-size: 22px;
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  opacity: .4
}

.cal-legend {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 14px;
  background: var(--cream);
  border-top: 1px solid var(--line)
}

.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  color: var(--muted);
  font-weight: 500
}

.cal-legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%
}

.news-list-wrap {
  display: block
}

.news-list-wrap.hidden {
  display: none
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  transition: gap .25s
}

.view-all:hover {
  gap: 14px;
  color: var(--crimson)
}

/* ── CTA BANNER ── */
.cta-banner {
  background: #f5f0e8;
  padding: 52px 0;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #faf6ee;
  opacity: .04
}

.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  position: relative
}

.cta-banner p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
  position: relative
}

.cta-banner .actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative
}

/* ── FOOTER ── */
footer.newui-footer {
  background: var(--navy);
  color: #fff;
  padding: 48px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px
}

.footer-brand .logo img {
  height: 42px;
  filter: brightness(0) invert(1);
  opacity: .9
}

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  margin: 18px 0 22px
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.footer-contact .fc {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255, 255, 255, .65)
}

.footer-contact .fc i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  transition: all .25s
}

.socials a:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff
}

.footer-col {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: 22px 20px 24px
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-col h5::before {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0
}

.footer-col ul li {
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.footer-col ul li:last-child {
  border-bottom: none
}

.footer-col ul li a {
  font-size: 12px;
  color: rgba(255, 255, 255, .62);
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden
}

.footer-col ul li a::after {
  content: "\203A";
  color: var(--gold);
  font-size: 16px;
  opacity: 0;
  transition: opacity .2s;
  flex-shrink: 0
}

.footer-col ul li a:hover {
  color: #fff;
  padding-left: 6px
}

.footer-col ul li a:hover::after {
  opacity: 1
}

.footer-erp {
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  padding: 13px 0;
  background: rgba(0, 0, 0, .18);
  margin-top: -1px
}

.footer-erp .w {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px
}

.footer-erp-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.footer-erp-title {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  flex-shrink: 0
}

.footer-erp-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap
}

.footer-erp-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .8);
  transition: color .2s;
  font-weight: 700;
  letter-spacing: .2px
}

.footer-erp-links a::before {
  content: "\2192";
  color: var(--orange);
  font-size: 11px;
  font-weight: 900
}

.footer-erp-links a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0
}

.footer-bottom .w {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .4)
}

.footer-bottom a {
  color: rgba(255, 255, 255, .5);
  transition: color .2s
}

.footer-bottom a:hover {
  color: #fff
}

.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px
}

.footer-badge {
  background: #FDF9F4;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px
}

.footer-badge img {
  height: 40px;
  width: auto;
  filter: none;
  opacity: 1;
  object-fit: contain
}

.footer-badge span {
  font-size: 11px;
  color: var(--navy);
  max-width: 90px;
  line-height: 1.3;
  font-weight: 600
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all .7s cubic-bezier(.22, .61, .36, 1)
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

/* ── FULLSCREEN MENU ── */
.fsm-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .38s
}

.fsm-overlay.open {
  opacity: 1;
  visibility: visible
}

.fsm-panel {
  position: fixed;
  inset: 0;
  background: #faf6ee;
  transform: translateY(-105%);
  transition: transform .48s cubic-bezier(.4, 0, .2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column
}

.fsm-panel::before {
  content: "";
  position: fixed;
  inset: 0;
  display: none
}

.fsm-overlay.open .fsm-panel {
  transform: translateY(0)
}

.fsm-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 44px;
  border-bottom: 1px solid #e3dccd
}

.fsm-logo {
  height: 40px;
  filter: none;
  opacity: 1
}

.fsm-header-right {
  display: flex;
  align-items: center;
  gap: 14px
}

.fsm-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  background: #E05A04;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all .2s
}

.fsm-header-cta:hover {
  background: #c94f03;
  color: #fff;
  transform: translateY(-1px)
}

.fsm-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #0a1f3d;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s
}

.fsm-close:hover {
  background: #E05A04;
  border-color: #E05A04;
  transform: rotate(90deg)
}

.fsm-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b08f48;
  margin-bottom: 8px;
  display: block
}

.fsm-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 8px
}

.fsm-card {
  background: #fff;
  border: 1px solid #e3dccd;
  border-bottom: 3px solid #e3dccd;
  border-radius: 16px;
  padding: 10px 8px 9px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 2px 10px rgba(10, 31, 61, .06)
}

.fsm-card:hover {
  background: rgba(255, 255, 255, .96);
  border-color: rgba(255, 255, 255, .8);
  border-bottom-color: #E05A04;
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .4)
}

.fsm-card:hover .fsm-label {
  color: #0a1f3d
}

.fsm-card:hover .fsm-icon {
  transform: scale(1.12);
  box-shadow: 0 8px 24px rgba(224, 90, 4, .6)
}

.fsm-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E05A04 0%, #F88C1A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(224, 90, 4, .4);
  transition: all .25s
}

.fsm-label {
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  transition: color .25s
}

.fsm-quicklinks {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid #e3dccd
}

.fsm-quicklink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1px solid #e3dccd;
  border-radius: 999px;
  color: #333;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s
}

.fsm-quicklink:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #000;
  color: #000;
}

.fsm-body {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 28px 32px 40px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start
}

.fsm-left {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.fsm-right {
  background: #fff;
  border: 1px solid #e3dccd;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 20px
}

.fsm-side-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.fsm-side-cta1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 8px;
  background: #E05A04;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s
}

.fsm-side-cta1:hover {
  background: #c94f03;
  color: #fff
}

.fsm-side-cta2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 8px;
  background: #0a1f3d;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s
}

.fsm-side-cta2:hover {
  background: #1a3a6b;
  color: #fff
}

.fsm-side-nav {
  display: flex;
  flex-direction: column
}

.fsm-side-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #e8e3da;
  transition: all .2s;
  cursor: pointer;
  user-select: none
}

a.fsm-side-link:hover,
.fsm-side-link:hover {
  background: #f5f0e8;
  color: #0a1f3d;
  padding-left: 22px
}

.fsm-side-link .chev {
  font-size: 11px;
  color: #aaa;
  transition: transform .25s;
  flex-shrink: 0
}

.fsm-side-group.open>.fsm-side-link .chev {
  transform: rotate(180deg)
}

.fsm-side-group.open>.fsm-side-link {
  background: #fdf0e8;
  color: #E05A04
}

.fsm-side-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: #f9f6f0
}

.fsm-side-group.open .fsm-side-sub {
  max-height: 500px
}

.fsm-side-sub a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px 9px 28px;
  font-size: 12px;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #ede8e0;
  transition: all .2s
}

.fsm-side-sub a::before {
  content: "\203A";
  color: #E05A04;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0
}

.fsm-side-sub a:hover {
  background: #f0ebe0;
  color: #0a1f3d;
  padding-left: 34px
}

.fsm-side-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  background: #f5ecd6;
  color: #b08f48;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s
}

.fsm-side-footer:hover {
  background: rgba(201, 169, 97, .22);
  color: #e0be7a
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .why-dark-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .campus-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
  }
}

@media(max-width:1000px) {
  .fsm-body {
    grid-template-columns: 1fr
  }

  .fsm-right {
    display: none
  }
}

@media(max-width:900px) {
  .prog-cards {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
  }

  .nav-links {
    display: none
  }

  .nav-cta {
    display: none
  }

  .ql-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .ql-item:nth-child(2) {
    border-right: none
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .campus-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
  }

  .ccard.offset {
    margin-top: 0
  }

  .campus-header {
    grid-template-columns: 1fr
  }

  .campus-vtitle {
    display: none
  }

  .placement-stats {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:800px) {
  .fsm-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
  }

  .fsm-body {
    padding: 24px 20px 36px
  }

  .fsm-header {
    padding: 16px 20px
  }
}

@media(max-width:700px) {
  .accred-inner {
    gap: 14px
  }

  .accred-item {
    min-width: calc(50% - 7px);
    padding: 22px 16px 18px
  }

  .accred-icon {
    width: 58px;
    height: 58px
  }

  .fsm-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .fsm-body {
    padding: 20px 14px 32px
  }
}

@media(max-width:600px) {
  .prog-cards {
    grid-template-columns: 1fr
  }

  .news-grid {
    grid-template-columns: 1fr
  }

  .ql-inner {
    grid-template-columns: 1fr
  }

  .ql-item {
    border-right: none;
    border-bottom: 1px solid var(--line)
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .pcard-img {
    height: 180px
  }

  .campus-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .ccard {
    padding: 24px 18px 30px
  }

  .placement-stats {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:480px) {
  .accred-inner {
    flex-direction: column;
    align-items: center
  }

  .accred-item {
    width: 100%;
    max-width: 300px
  }

  .fsm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px
  }

  .placement-stats {
    grid-template-columns: 1fr 1fr
  }
}

/* ============================================================
   INNER PAGE STYLES
   ============================================================ */

/* ── HERO — CURVED CFL STYLE ── */
.hero-curve {
  position: relative;
  background: #FDF9F4;
  overflow: hidden
}

.hero-curve-inner {
  position: relative;
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 420px
}

.hero-left {
  background: linear-gradient(135deg, var(--navy-100) 0%, #f5efe1 60%, #f0e9da 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 84px 60px 28px;
  z-index: 2;
  clip-path: path('M 0 0 L 100% 0 Q 70% 50%, 100% 100% L 0 100% Z');
  justify-content: center;
}

.hero-left::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 169, 97, .18) 0%, transparent 60%);
  pointer-events: none
}

.hero-left::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 80px;
  height: 80px;
  background-image: linear-gradient(45deg, transparent 48%, rgba(10, 31, 61, .07) 49%, rgba(10, 31, 61, .07) 51%, transparent 52%);
  background-size: 12px 12px;
  pointer-events: none;
  border-radius: 50%
}

.hero-title {
  position: relative;
  z-index: 3;
}

.hero-title .eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.hero-title .eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold)
}

.hero-title h1 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  letter-spacing: -.5px
}

.hero-title h1 .gold {
  color: var(--gold-dark);
  font-weight: 400;
  font-style: italic;
  display: block
}

.hero-title h1 .navy {
  color: var(--navy);
  font-weight: 400;
  display: block
}

.hero-title .sub {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 340px
}

.hero-right {
  position: relative;
  background: var(--navy);
  overflow: hidden
}

.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82
}

.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(240, 233, 218, .15) 0%, transparent 30%), linear-gradient(180deg, transparent 60%, rgba(10, 31, 61, .45) 100%)
}

.badge-deco {
  position: absolute;
  bottom: 30px;
  right: 40px;
  color: rgba(255, 255, 255, .85);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500
}

.badge-deco::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold)
}

/* ── INNER PAGE MAIN LAYOUT ── */
.main-section {
  max-width: 1380px;
  margin: 0 auto;
  padding: 56px 28px 72px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: flex-start
}

/* ── SIDEBAR ── */
.sidebar {
  position: sticky;
  top: 88px
}

.sidebar-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm)
}

.sidebar-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 13px;
  padding: 13px 16px;
  background: var(--navy);
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase
}

.sidebar-nav li {
  border-bottom: 1px solid var(--line)
}

.sidebar-nav li:last-child {
  border-bottom: none
}

.sidebar-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  transition: all .22s;
  border-left: 3px solid transparent
}

.sidebar-nav a:hover {
  background: var(--cream);
  color: var(--navy);
  padding-left: 20px;
  border-left-color: rgba(201, 169, 97, .4)
}

.sidebar-nav a.active {
  background: var(--gold-light);
  color: var(--navy);
  font-weight: 700;
  padding-left: 20px;
  border-left: 3px solid var(--gold)
}

.sidebar-nav .arrow {
  color: var(--gold);
  font-size: 16px;
  transition: transform .25s;
  font-weight: 600
}

.sidebar-nav a:hover .arrow {
  transform: translateX(4px)
}

.sidebar-cta {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  color: #fff;
  padding: 28px 22px;
  border-radius: 4px;
  position: relative;
  overflow: hidden
}

.sidebar-cta::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: .25
}

.sidebar-cta h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.2;
  position: relative
}

.sidebar-cta p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 16px;
  position: relative;
  line-height: 1.6
}

.sidebar-cta a {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  position: relative;
  transition: background .25s
}

.sidebar-cta a:hover {
  background: #d8b96e
}

/* ── CONTENT SECTIONS ── */
.content {
  min-width: 0
}

.content-section {
  padding: 0 0 56px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px
}

.content-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px
}

.section-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold)
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px
}

.section-title em {
  color: var(--gold);
  font-style: italic
}

.body-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 16px
}

.body-text+.body-text {
  margin-top: 0
}

/* About stats grid */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0
}

.astat {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border-top: 3px solid var(--gold);
  transition: all .3s
}

.astat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.astat i {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 8px;
  display: block
}

.astat strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1
}

.astat span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500
}

/* Accreditation badges (inner) */
.accred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px
}

.accred-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all .3s
}

.accred-card:hover {
  border-color: rgba(201, 169, 97, .4);
  box-shadow: var(--shadow-sm)
}

.accred-card .accred-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
  flex-shrink: 0
}

.accred-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px
}

.accred-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55
}

/* Dean's message */
.dean-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  margin-top: 20px
}

.dean-photo {
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--gold-light);
  box-shadow: var(--shadow-md)
}

.dean-photo img {
  width: 100%;
  object-fit: cover;
  object-position: center top
}

.dean-quote {
  position: relative;
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 28px 28px 40px;
  border-left: 4px solid var(--gold);
  margin-bottom: 20px
}

.dean-quote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 72px;
  color: var(--gold);
  opacity: .2;
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1
}

.dean-quote p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
  font-style: italic
}

.dean-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px
}

.dean-role {
  font-size: 13px;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px
}

/* Vision / Mission cards */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px
}

.vm-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden
}

.vm-card.vision {
  border-top: 4px solid var(--gold)
}

.vm-card.mission {
  border-top: 4px solid var(--navy)
}

.vm-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px
}

.vm-card.vision .vm-card-label {
  color: var(--gold-dark)
}

.vm-card.mission .vm-card-label {
  color: var(--navy)
}

.vm-card h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3
}

.vm-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7
}

.vm-mission-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px
}

.vm-mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6
}

.vm-mission-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px
}

/* Core values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 24px
}

.value-chip {
  background: #FDF9F4;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  transition: all .3s
}

.value-chip:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm)
}

.value-chip i {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 8px;
  display: block
}

.value-chip span {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy)
}

/* Governance table */
.gov-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #FDF9F4;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm)
}

.gov-table thead {
  background: var(--navy)
}

.gov-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .5px;
  text-transform: uppercase
}

.gov-table tbody tr {
  border-bottom: 1px solid var(--line)
}

.gov-table tbody tr:last-child {
  border-bottom: none
}

.gov-table tbody tr:hover {
  background: var(--cream)
}

.gov-table td {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--ink);
  vertical-align: top
}

.gov-table td:first-child {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap
}

/* Council member photo cards */
.council-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line)
}

.council-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 8px
}

.council-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 28px 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: all .25s
}

.council-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 169, 97, .4)
}

.council-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid var(--gold-light)
}

.council-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top
}

.council-photo-avatar {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-100), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--navy)
}

.council-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 6px
}

.council-role {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5
}

.council-tag {
  display: inline-block;
  margin-top: 9px;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  letter-spacing: .3px
}

/* Rankings */
.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px
}

.ranking-row {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all .3s;
  border-left: 4px solid var(--gold)
}

.ranking-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px)
}

.ranking-body h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px
}

.ranking-body p {
  font-size: 13px;
  color: var(--muted)
}

.ranking-badge {
  background: var(--navy);
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 8px;
  white-space: nowrap;
  text-align: center;
  min-width: 90px
}

/* Info box */
.info-box {
  background: linear-gradient(135deg, rgba(10, 31, 61, .04), rgba(201, 169, 97, .06));
  border: 1px solid rgba(201, 169, 97, .2);
  border-radius: 10px;
  padding: 22px 24px;
  margin-top: 20px
}

.info-box p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7
}

.info-box a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold)
}

/* IQAC */
.iqac-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px
}

.iqac-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .3s
}

.iqac-card:hover {
  border-color: rgba(201, 169, 97, .4);
  box-shadow: var(--shadow-sm)
}

.iqac-card .iqac-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 18px;
  flex-shrink: 0
}

.iqac-card h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px
}

.iqac-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5
}

/* ── INNER PAGE RESPONSIVE ── */
@media(max-width:1024px) {
  .main-section {
    grid-template-columns: 250px 1fr;
    gap: 32px
  }
}

@media(max-width:900px) {
  .main-section {
    grid-template-columns: 1fr;
    padding: 36px 20px 56px
  }

  .sidebar {
    position: static
  }

  .hero-curve-inner {
    grid-template-columns: 1fr
  }

  .hero-left {
    clip-path: none;
    padding: 48px 28px
  }

  .hero-right {
    min-height: 260px
  }

  .vm-grid {
    grid-template-columns: 1fr
  }

  .dean-grid {
    grid-template-columns: 1fr
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .accred-grid {
    grid-template-columns: 1fr
  }

  .iqac-grid {
    grid-template-columns: 1fr
  }

  .council-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .about-stats {
    grid-template-columns: 1fr 1fr
  }

  .values-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:500px) {
  .council-grid {
    grid-template-columns: 1fr
  }
}

/* ============================================================
   ADMISSIONS PAGE STYLES
   ============================================================ */

/* Admissions Hero */
.adm-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px
}

.adm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #faf6ee;
  opacity: .1
}

.adm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 31, 61, .95) 0%, rgba(10, 31, 61, .65) 100%)
}

.adm-hero .wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2
}

.adm-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px
}

.adm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 97, .18);
  border: 1px solid rgba(201, 169, 97, .35);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  text-transform: uppercase
}

.adm-hero h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px
}

.adm-hero h1 em {
  color: var(--gold);
  font-style: italic
}

.adm-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, .72);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 26px
}

.adm-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid #0a1f3d;
  color: #0a1f3d;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all .3s
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .18)
}

.adm-hero-stats {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  backdrop-filter: blur(12px);
  min-width: 220px
}

.adm-hero-stat {
  text-align: center
}

.adm-hero-stat-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block
}

.adm-hero-stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  margin-top: 4px;
  display: block;
  font-weight: 500
}

.adm-hero-stat-div {
  height: 1px;
  background: rgba(255, 255, 255, .1)
}

/* Stats bar */
.adm-statsbar {
  background: #FDF9F4;
  border-bottom: 1px solid var(--line)
}

.adm-statsbar .wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 28px
}

.adm-statsbar-inner {
  display: flex;
  align-items: stretch
}

.adm-sbar {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background .25s
}

.adm-sbar:last-child {
  border-right: none
}

.adm-sbar:hover {
  background: var(--cream)
}

.adm-sbar-num {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1
}

.adm-sbar-lbl {
  display: block;
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: .3px
}

/* Section sub text */
.section-sub {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px
}

/* Overview highlights */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px
}

.ov-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  border-top: 3px solid var(--gold);
  text-align: center;
  transition: all .3s
}

.ov-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.ov-card i {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 8px;
  display: block
}

.ov-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px
}

.ov-card span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500
}

/* Process steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px
}

.step-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 28px
}

.step-row:last-child {
  padding-bottom: 0
}

.step-row:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 169, 97, .15))
}

.step-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 3px 12px rgba(10, 31, 61, .18);
  position: relative;
  z-index: 1
}

.step-body {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  flex: 1;
  transition: border-color .25s, box-shadow .25s
}

.step-body:hover {
  border-color: rgba(201, 169, 97, .4);
  box-shadow: var(--shadow-sm)
}

.step-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px
}

.step-body h4 i {
  color: var(--gold)
}

.step-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6
}

/* Eligibility */
.elig-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px
}

.elig-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 16px
}

.elig-item i {
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0
}

.exams-wrap {
  margin-top: 24px
}

.exams-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px
}

.exams-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.exam-tag {
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 999px;
  letter-spacing: .8px;
  transition: all .25s
}

.exam-tag:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px)
}

/* Programme cards */
.prog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px
}

.prog-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.prog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0;
  transition: opacity .3s
}

.prog-card:hover {
  border-color: rgba(201, 169, 97, .35);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px)
}

.prog-card:hover::before {
  opacity: 1
}

.prog-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 14px;
  transition: all .3s
}

.prog-card:hover .prog-card-icon {
  background: var(--grad);
  color: #fff
}

.prog-card h4 {
  font-family: var(--serif);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3
}

.prog-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 10px
}

.prog-tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 3px;
  letter-spacing: .4px
}

/* Fee table */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px
}

.fee-table td {
  padding: 13px 0;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid rgba(10, 31, 61, .06)
}

.fee-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--navy)
}

.fee-total td {
  border-top: 2px solid var(--gold) !important;
  border-bottom: none !important;
  padding-top: 16px !important;
  font-weight: 800 !important;
  font-size: 15px !important
}

.fee-total td:last-child {
  color: var(--crimson) !important;
  font-family: var(--serif);
  font-size: 18px !important
}

.fee-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6
}

/* Scholarships */
.scholar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px
}

.scholar-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all .3s
}

.scholar-card:hover {
  border-color: rgba(201, 169, 97, .4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px)
}

.scholar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 18px;
  flex-shrink: 0;
  transition: all .3s
}

.scholar-card:hover .scholar-icon {
  background: var(--gold);
  color: #fff
}

.scholar-card h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3
}

.scholar-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5
}

/* Documents */
.docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px
}

.doc-item {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
  transition: all .25s
}

.doc-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm)
}

.doc-item i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0
}

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px
}

.contact-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 22px
}

.contact-card h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px
}

.contact-card h5 i {
  color: var(--gold)
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  padding: 7px 0;
  border-bottom: 1px solid rgba(10, 31, 61, .05)
}

.contact-item:last-child {
  border-bottom: none
}

.contact-item i {
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0
}

.contact-item a {
  color: var(--navy);
  font-weight: 600
}

.contact-item a:hover {
  color: var(--crimson)
}

/* Admissions responsive */
@media(max-width:900px) {
  .adm-hero-inner {
    grid-template-columns: 1fr
  }

  .adm-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-width: auto
  }

  .adm-hero-stat-div {
    display: none
  }

  .overview-grid {
    grid-template-columns: 1fr 1fr
  }

  .prog-grid {
    grid-template-columns: 1fr
  }

  .scholar-grid {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:600px) {
  .adm-statsbar-inner {
    flex-wrap: wrap
  }

  .adm-sbar {
    flex: 1 1 50%;
    border-bottom: 1px solid var(--line)
  }

  .docs-grid {
    grid-template-columns: 1fr
  }

  .overview-grid {
    grid-template-columns: 1fr
  }
}

/* ============================================================
   FACULTY PAGE STYLES
   ============================================================ */

/* Faculty Hero */
.faculty-hero {
  background: var(--navy);
  padding: 36px 0 32px;
  position: relative;
  overflow: hidden;
  text-align: center
}

.faculty-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #faf6ee;
  opacity: .08
}

.faculty-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 31, 61, .92) 0%, rgba(10, 31, 61, .85) 100%)
}

.faculty-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px
}

.faculty-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 97, .18);
  border: 1px solid rgba(201, 169, 97, .35);
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  text-transform: uppercase
}

.faculty-hero h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.5px
}

.faculty-hero h1 em {
  color: var(--gold);
  font-style: italic
}

.faculty-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto
}

/* Faculty Stats Bar */
.faculty-stats-bar {
  background: #FDF9F4;
  border-bottom: 1px solid var(--line)
}

.faculty-stats-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex
}

.faculty-sbar {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background .2s
}

.faculty-sbar:last-child {
  border-right: none
}

.faculty-sbar:hover {
  background: var(--cream)
}

.faculty-sbar-num {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1
}

.faculty-sbar-lbl {
  display: block;
  font-size: 10.5px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: .3px
}

/* Filter Tabs */
.filter-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 28px 0
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--line);
  color: var(--muted);
  background: #FDF9F4;
  cursor: pointer;
  transition: all .25s
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--navy)
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff
}

.filter-btn .count {
  background: rgba(255, 255, 255, .2);
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 11px
}

.filter-btn:not(.active) .count {
  background: var(--navy-100);
  color: var(--navy)
}

.faculty-count {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  padding: 0 28px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto
}

/* Faculty Grid */
.faculty-grid-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px 72px
}

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

/* Faculty Card */
.fcard {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: all .35s;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer
}

.fcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 169, 97, .35)
}

.fcard-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-100), var(--gold-light));
  position: relative;
  flex-shrink: 0
}

.fcard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s
}

.fcard:hover .fcard-photo img {
  transform: scale(1.05)
}

.fcard-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(145deg, #dde6f5, #f0e9d8)
}

.fcard-dept-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(10, 31, 61, .82);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .5px;
  backdrop-filter: blur(6px)
}

.fcard-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.fcard-name {
  font-family: var(--serif);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 5px
}

.fcard-role {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 10px;
  flex: 1
}

.fcard-quals {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px
}

.fcard-qual {
  background: var(--navy-100);
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: .3px
}

.fcard-footer-area {
  display: none
}

.fcard-link {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 16px
}

.fcard.hidden {
  display: none
}

/* Adjunct badge */
.adjunct-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(201, 169, 97, .9);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: .5px
}

/* Faculty responsive */
@media(max-width:1100px) {
  .faculty-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:800px) {
  .faculty-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:500px) {
  .faculty-grid {
    grid-template-columns: 1fr
  }

  .faculty-stats-bar-inner {
    flex-wrap: wrap
  }

  .faculty-sbar {
    flex: 1 1 50%
  }
}

/* ============================================================
   PLACEMENTS PAGE STYLES
   ============================================================ */

/* Placements Hero Curve */
.hero-curve {
  position: relative;
  background: #FDF9F4;
  overflow: hidden
}

.hero-curve-inner {
  position: relative;
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 400px
}

.hero-left {
  background: linear-gradient(135deg, var(--navy-100) 0%, #f5efe1 60%, #f0e9da 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 84px 60px 28px;
  z-index: 2;
  clip-path: path('M 0 0 L 100% 0 Q 70% 50%, 100% 100% L 0 100% Z');
  justify-content: center;
}

.hero-left::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 169, 97, .18) 0%, transparent 60%);
  pointer-events: none
}

.hero-title .eyebrow-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px
}

.hero-title .eyebrow-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold)
}

.hero-title h1 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.5px
}

.hero-title h1 .gold {
  color: var(--gold-dark);
  font-weight: 400;
  font-style: italic;
  display: block
}

.hero-title h1 .navy {
  color: var(--navy);
  font-weight: 400;
  display: block
}

.hero-title .sub {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 340px
}

.hero-right {
  position: relative;
  background: var(--navy);
  overflow: hidden
}

.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85
}

.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(240, 233, 218, .12) 0%, transparent 30%), linear-gradient(180deg, transparent 60%, rgba(10, 31, 61, .4) 100%)
}

.hero-right .badge-deco {
  position: absolute;
  bottom: 28px;
  right: 36px;
  color: rgba(255, 255, 255, .85);
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500
}

.hero-right .badge-deco::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold)
}

/* Placement Stats Bar */
.plc-stats-bar {
  background: #FDF9F4;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(10, 31, 61, .05)
}

.plc-stats-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: stretch
}

.stat-item {
  flex: 1;
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background .25s;
  cursor: default
}

.stat-item:last-child {
  border-right: none
}

.stat-item:hover {
  background: var(--cream)
}

.stat-item:hover .stat-num {
  color: #0a1f3d;
}

.stat-item:hover .stat-label {
  color: #0a1f3d;
}

.stat-item:hover .stat-desc {
  color: #0a1f3d;
}

.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1
}

.stat-lbl {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: .3px
}

/* Overview stat cards (placements) */
.ov-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px
}

/* Process timeline */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px
}

.process-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 24px
}

.process-row:last-child {
  padding-bottom: 0
}

.process-row:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 46px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 169, 97, .12))
}

.process-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 3px 12px rgba(10, 31, 61, .18);
  position: relative;
  z-index: 1
}

.process-body {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 20px;
  flex: 1;
  transition: all .25s
}

.process-body:hover {
  border-color: rgba(201, 169, 97, .4);
  box-shadow: var(--shadow-sm)
}

.process-body h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px
}

.process-body h4 i {
  color: var(--gold);
  font-size: 15px
}

.process-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6
}

/* Internship info box */
.info-box {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
  border-left: 4px solid var(--gold)
}

.info-box h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px
}

.info-box h4 i {
  color: var(--gold)
}

.info-box p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px
}

.info-chip {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink)
}

.info-chip i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0
}

.info-chip strong {
  color: var(--navy)
}

/* Company logos grid */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 24px
}

.logo-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  min-height: 72px
}

.logo-card:hover {
  border-color: rgba(201, 169, 97, .4);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px)
}

.logo-card img {
  /* max-height: 36px; */
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter .25s
}

.logo-card:hover img {
  filter: none
}

/* Placement reports */
.reports-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px
}

.report-row {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .25s
}

.report-row:hover {
  border-color: rgba(201, 169, 97, .4);
  box-shadow: var(--shadow-sm)
}

.report-row-left {
  display: flex;
  align-items: center;
  gap: 12px
}

.report-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 18px;
  flex-shrink: 0
}

.report-row h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy)
}

.report-row span {
  font-size: 12px;
  color: var(--muted)
}

.report-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  transition: all .25s;
  white-space: nowrap
}

.report-link:hover {
  background: var(--gold);
  color: var(--navy)
}

/* Industry sectors */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px
}

.sector-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .25s
}

.sector-card:hover {
  border-color: rgba(201, 169, 97, .35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px)
}

.sector-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--navy);
  flex-shrink: 0;
  transition: all .25s
}

.sector-card:hover .sector-icon {
  background: var(--grad);
  color: #fff
}

.sector-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy)
}

/* Charts */
.charts-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px
}

.chart-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden
}

.chart-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light))
}

.chart-card-hdr {
  margin-bottom: 18px
}

.chart-card-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px
}

.chart-card-sub {
  font-size: 12px;
  color: var(--muted)
}

.chart-container {
  position: relative;
  height: 240px
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 16px
}

.chart-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 500
}

.chart-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0
}

.sector-chart-wrap {
  display: flex;
  align-items: center;
  gap: 24px
}

.sector-chart-canvas {
  flex: 0 0 200px
}

.sector-chart-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.sector-bar-row {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.sector-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--navy);
  font-weight: 600
}

.sector-bar-label span:last-child {
  color: var(--muted);
  font-weight: 400
}

.sector-bar-track {
  height: 6px;
  background: var(--line);
  border-radius: 3px;
  overflow: hidden
}

.sector-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--navy), var(--navy-700));
  transition: width 1.2s cubic-bezier(.25, .8, .25, 1)
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px
}

.kpi-chip {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-700) 100%);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.kpi-chip::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(201, 169, 97, .25) 0%, transparent 65%);
  pointer-events: none
}

.kpi-chip strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  position: relative
}

.kpi-chip span {
  display: block;
  font-size: 10.5px;
  color: rgba(255, 255, 255, .6);
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: .2px;
  position: relative
}

/* Contact team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 20px
}

.team-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all .25s
}

.team-card:hover {
  border-color: rgba(201, 169, 97, .35);
  box-shadow: var(--shadow-sm)
}

.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(201, 169, 97, .35)
}

.team-info h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px
}

.team-info .role {
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px
}

.team-contacts {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.team-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted)
}

.team-contact-item i {
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0
}

.team-contact-item a {
  color: var(--navy);
  font-weight: 500
}

.team-contact-item a:hover {
  color: var(--crimson)
}

/* Placements responsive */
@media(max-width:900px) {
  .hero-curve-inner {
    grid-template-columns: 1fr
  }

  .hero-left {
    clip-path: none;
    padding: 48px 28px
  }

  .hero-right {
    min-height: 260px
  }

  .ov-grid {
    grid-template-columns: 1fr 1fr
  }

  .sector-grid {
    grid-template-columns: 1fr 1fr
  }

  .logos-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .charts-wrap {
    grid-template-columns: 1fr
  }

  .sector-chart-wrap {
    flex-direction: column
  }

  .sector-chart-canvas {
    flex: none;
    width: 100%;
    max-width: 200px;
    margin: 0 auto
  }

  .kpi-row {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:600px) {
  .ov-grid {
    grid-template-columns: 1fr 1fr
  }

  .sector-grid {
    grid-template-columns: 1fr
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .info-row {
    grid-template-columns: 1fr
  }

  .kpi-row {
    grid-template-columns: 1fr 1fr
  }

  .plc-stats-bar-inner {
    flex-wrap: wrap
  }

  .stat-item {
    flex: 1 1 50%;
    border-bottom: 1px solid var(--line)
  }
}

/* ============================================================
   PROGRAMS / PGDM PAGE STYLES
   ============================================================ */

/* Programme badge */
.prog-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px
}

.prog-badge.pop {
  background: var(--grad);
  color: #fff
}

.prog-badge.doctoral {
  background: var(--navy);
  color: #fff
}

.prog-badge.online {
  background: rgba(10, 31, 61, .08);
  color: var(--navy);
  border: 1px solid var(--line)
}

.prog-badge.exec {
  background: var(--gold-light);
  color: var(--gold-dark);
  border: 1px solid rgba(201, 169, 97, .3)
}

.prog-badge.sports {
  background: linear-gradient(135deg, #1a6b3d, #2d9b5a);
  color: #fff
}

.prog-badge.innov {
  background: linear-gradient(135deg, #4a1a6b, #7a3a9b);
  color: #fff
}

/* Body text for programs */
.body-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 14px
}

/* Info chips (programs) */
.info-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0
}

.info-chip-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 7px
}

.info-chip-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy)
}

.info-chip-new {
  border-color: rgba(201, 169, 97, .45);
  background: linear-gradient(135deg, #fffaf0 0%, #fdf3e0 100%)
}

.info-chip-new i {
  color: var(--gold-dark)
}

.chip-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: .4px;
  text-transform: uppercase;
  line-height: 1.4
}

/* Specialisation pills */
.spec-wrap {
  margin: 28px 0;
  text-align: center
}

.spec-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px
}

.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center
}

.spec-pill {
  background: var(--navy-100);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  letter-spacing: .3px;
  transition: all .3s;
  cursor: default;
  border: 1.5px solid transparent;
  box-shadow: 0 2px 8px rgba(10, 31, 61, .07)
}

.spec-pill:hover {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(224, 90, 4, .25)
}

/* Highlights */
.highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 16px
}

.highlight-item i {
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px
}

/* Curriculum grid */
.curr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px
}

.curr-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
  min-height: 52px
}

.curr-card:hover {
  border-color: rgba(201, 169, 97, .4);
  box-shadow: var(--shadow-sm)
}

.curr-card i {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0
}

.curr-card.sip-card,
.curr-card.hbi-card,
.curr-card.dt-card,
.curr-card.inno-card,
.curr-card.sim-card {
  background: linear-gradient(135deg, #fffaf0 0%, #fdf3e0 100%);
  border-color: rgba(201, 169, 97, .45)
}

.curr-card.sip-card:hover,
.curr-card.hbi-card:hover,
.curr-card.dt-card:hover,
.curr-card.inno-card:hover,
.curr-card.sim-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 169, 97, .18)
}

.sip-logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0
}

/* Fellowship box */
.fellowship-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-700));
  border-radius: 10px;
  padding: 22px 24px;
  color: #fff;
  margin-top: 16px
}

.fellowship-box h5 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px
}

.fellowship-box p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.65;
  margin-bottom: 12px
}

.fellowship-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 169, 97, .18);
  border: 1px solid rgba(201, 169, 97, .35);
  color: var(--gold);
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700
}

/* Apply button */
.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: all .3s;
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(224, 90, 4, .3)
}

.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 90, 4, .4)
}

/* Programs responsive */
@media(max-width:900px) {
  .info-chips {
    grid-template-columns: 1fr
  }

  .curr-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:600px) {
  .curr-grid {
    grid-template-columns: 1fr
  }
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  border-top: 4px solid var(--gold);
  transition: all .3s
}

.contact-card:hover {
  box-shadow: 0 8px 30px rgba(10, 31, 61, .12);
  transform: translateY(-4px)
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--navy);
  margin: 0 auto 14px
}

.contact-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px
}

.contact-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6
}

.contact-card a {
  color: var(--navy);
  font-weight: 600
}

.contact-card a:hover {
  color: var(--gold-dark)
}

.enquiry-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  margin-top: 24px
}

.enquiry-form h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.form-group.full {
  grid-column: 1/-1
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
  text-transform: uppercase
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  transition: border .2s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold)
}

.form-group textarea {
  resize: vertical;
  min-height: 120px
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .3s;
  margin-top: 8px
}

.form-submit:hover {
  background: var(--navy-700);
  transform: translateY(-2px)
}

.map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 24px
}

.map-placeholder {
  height: 300px;
  background: linear-gradient(135deg, var(--navy-100), var(--gold-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--navy)
}

.map-placeholder i {
  font-size: 48px;
  opacity: .4
}

.map-placeholder p {
  font-size: 14px;
  font-weight: 600;
  opacity: .6
}

.accred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px
}

.accred-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all .3s
}

.accred-card:hover {
  border-color: rgba(201, 169, 97, .4);
  box-shadow: var(--shadow-sm)
}

.accred-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
  flex-shrink: 0
}

.accred-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px
}

.accred-card p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55
}

.accred-card a {
  color: var(--navy);
  font-weight: 700;
  font-size: 12.5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px
}

.accred-card a:hover {
  color: var(--gold-dark)
}

/* Contact responsive */
@media(max-width:900px) {
  .contact-cards {
    grid-template-columns: 1fr 1fr
  }

  .accred-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:600px) {
  .contact-cards {
    grid-template-columns: 1fr
  }

  .form-grid {
    grid-template-columns: 1fr
  }

  .form-group.full {
    grid-column: 1
  }

  .accred-grid {
    grid-template-columns: 1fr
  }
}

/* ============================================================
   INFRASTRUCTURE PAGE STYLES
   ============================================================ */

/* Quick Stats Bar */
.infra-stats-bar {
  background: var(--navy);
  padding: 0
}

.infra-stats-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr)
}

.infra-stat-item {
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08);
  position: relative
}

.infra-stat-item:last-child {
  border-right: none
}

.infra-stat-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width .3s
}

.infra-stat-item:hover::after {
  width: 60%
}

.infra-stat-num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px
}

.infra-stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
  letter-spacing: .3px
}

/* Photo Gallery Strip */
.gallery-wrap {
  position: relative;
  margin-top: 24px
}

.photo-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: 14px
}

.photo-strip::-webkit-scrollbar {
  display: none
}

.photo-strip img {
  flex-shrink: 0;
  width: calc(50% - 5px);
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  scroll-snap-align: start;
  transition: transform .3s
}

.photo-strip img:hover {
  transform: scale(1.01)
}

.photo-strip.full-strip img {
  width: calc(33.33% - 7px);
  height: 280px
}

.strip-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
  z-index: 2;
  transition: all .25s;
  color: var(--navy)
}

.strip-btn:hover {
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .22);
  transform: translateY(-50%) scale(1.08)
}

.strip-prev {
  left: 12px
}

.strip-next {
  right: 12px
}

/* Section Split Layout */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 20px;
  align-items: start
}

.section-split.reverse {
  direction: rtl
}

.section-split.reverse>* {
  direction: ltr
}

/* Library Stats */
.lib-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 24px
}

.lib-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  border-top: 3px solid var(--gold);
  transition: all .3s
}

.lib-stat:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.lib-stat .num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 5px
}

.lib-stat .lbl {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4
}

/* Digital Resources */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px
}

.resource-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  transition: all .3s;
  position: relative
}

.resource-card:hover {
  box-shadow: 0 12px 32px rgba(10, 31, 61, .14);
  transform: translateY(-5px);
  border-color: rgba(201, 169, 97, .35)
}

.rc-top {
  width: 100%;
  padding: 20px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: linear-gradient(160deg, #f8f4ec 0%, #fff 100%)
}

.rc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  transition: all .3s;
  box-shadow: 0 4px 12px rgba(10, 31, 61, .18)
}

.resource-card:hover .rc-icon {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.08)
}

.rc-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.3
}

.rc-bottom {
  width: 100%;
  padding: 8px 12px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(201, 169, 97, .2)
}

.rc-type {
  font-size: 11px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: .3px
}

.rc-arrow {
  font-size: 13px;
  color: var(--gold-dark);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  transform: translateX(-4px)
}

.resource-card:hover .rc-arrow {
  opacity: 1;
  transform: translateX(0)
}

/* Feature List (Hostel) */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: all .3s;
  border-left: 3px solid var(--gold)
}

.feature-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px)
}

.feature-item i {
  font-size: 18px;
  color: var(--gold);
  width: 24px;
  flex-shrink: 0
}

.feature-item span {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500
}

/* Sports Mosaic */
.sports-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 10px;
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden
}

.sports-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s
}

.sports-mosaic img:hover {
  transform: scale(1.04)
}

.sports-mosaic .big {
  grid-column: span 2;
  grid-row: span 2
}

/* IT Grid */
.it-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px
}

.it-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  transition: all .3s
}

.it-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.it-card .it-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px
}

.it-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px
}

.it-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55
}

/* Wi-Fi Card */
.wifi-card {
  background: linear-gradient(135deg, #0a1f3d 0%, #152e55 60%, #1a3a6b 100%);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 300px;
  margin-top: 24px;
  position: relative;
  box-shadow: 0 20px 60px rgba(10, 31, 61, .28)
}

.wifi-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 169, 97, .18) 0%, transparent 60%);
  pointer-events: none
}

.wifi-left {
  padding: 36px 40px;
  position: relative;
  z-index: 1
}

.wifi-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px
}

.wifi-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px
}

.wifi-eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .08)
}

.wifi-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.wifi-stat-box {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .3s;
  cursor: default
}

.wifi-stat-box:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(201, 169, 97, .35);
  transform: translateY(-2px)
}

.wifi-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(201, 169, 97, .15);
  border: 1px solid rgba(201, 169, 97, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: all .3s
}

.wifi-stat-box:hover .wifi-stat-icon {
  background: rgba(201, 169, 97, .28);
  transform: scale(1.06)
}

.wifi-stat-num {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px
}

.wifi-stat-lbl {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
  line-height: 1.35
}

.wifi-right {
  position: relative;
  overflow: hidden
}

.wifi-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
  display: block;
  transition: transform .5s
}

.wifi-card:hover .wifi-right img {
  transform: scale(1.04)
}

.wifi-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, transparent 40%, rgba(10, 31, 61, .85) 100%);
  z-index: 1
}

/* CCTV Info */
.cctv-info {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  margin-top: 20px;
  display: flex;
  gap: 32px
}

.cctv-info-item {
  flex: 1;
  text-align: center
}

.cctv-info-item i {
  font-size: 28px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px
}

.cctv-info-item h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px
}

.cctv-info-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5
}

/* Infrastructure responsive */
@media(max-width:1100px) {
  .sports-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto
  }

  .sports-mosaic .big {
    grid-column: span 2
  }
}

@media(max-width:900px) {
  .section-split {
    grid-template-columns: 1fr
  }

  .lib-stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .it-grid {
    grid-template-columns: 1fr 1fr
  }

  .infra-stats-bar-inner {
    grid-template-columns: repeat(3, 1fr)
  }

  .wifi-card {
    grid-template-columns: 1fr
  }

  .wifi-right {
    display: none
  }
}

@media(max-width:700px) {
  .resource-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .sports-mosaic {
    grid-template-columns: 1fr
  }

  .sports-mosaic .big {
    grid-column: span 1
  }

  .cctv-info {
    flex-direction: column
  }
}

/* ============================================================
   FAQ PAGE STYLES
   ============================================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 169, 97, .4)
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  gap: 16px
}

.faq-q h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  flex: 1
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all .3s
}

.faq-item.open .faq-icon {
  background: var(--navy);
  color: #fff;
  transform: rotate(45deg)
}

.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  border-top: 1px solid var(--line)
}

.faq-item.open .faq-a {
  display: block;
  padding-top: 16px
}

.faq-a ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px
}

.faq-a ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px
}

.faq-a ul li::before {
  content: "\203A";
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.4
}

/* ============================================================
   CENTRE PAGES — SHARED STYLES
   ============================================================ */

/* About Grid & Emblem */
.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: center
}

.about-emblem {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #1a3a6b, #0a1f3d 70%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  position: relative;
  box-shadow: 0 12px 40px rgba(10, 31, 61, .25), 0 0 0 2px var(--gold), 0 0 0 5px var(--navy), 0 0 0 7px var(--gold);
  flex-shrink: 0
}

.about-emblem::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, .35);
  pointer-events: none
}

.about-emblem::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 169, 97, .15);
  pointer-events: none
}

.about-emblem .icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 6px rgba(201, 169, 97, .5))
}

.about-emblem .label-top {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600
}

.about-emblem .label-main {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .3)
}

.about-text p {
  color: #2a2a2a;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.75;
  text-align: justify
}

.about-text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  float: left;
  line-height: .9;
  margin: 6px 10px 0 0;
  color: var(--navy)
}

/* Lead Card (Vision/Mission/Contact) */
.lead-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  padding: 30px 32px;
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center
}

.lead-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 36px
}

.lead-card h5 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 4px
}

.lead-card .lead-role {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 10px
}

.lead-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.65
}

/* Objectives Grid */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px
}

.objective-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  padding: 26px 24px;
  border-radius: 4px;
  position: relative;
  transition: all .35s
}

.objective-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform .35s
}

.objective-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm)
}

.objective-card:hover::before {
  transform: scaleY(1)
}

.objective-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px
}

.objective-card h5 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3
}

/* Team Section */
.team-header {
  text-align: center;
  margin-bottom: 36px
}

.team-header .section-title {
  margin-bottom: 8px
}

.team-subtitle {
  font-size: 15px;
  color: var(--muted);
  letter-spacing: .3px
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap
}

.team-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 0 28px;
  text-align: center;
  transition: all .4s cubic-bezier(.25, .8, .25, 1);
  position: relative;
  overflow: hidden;
  width: 320px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(10, 31, 61, .07);
  display: block;
}


.team-card h4,
.team-card .role,
.team-card .dept {
  padding-left: 20px;
  padding-right: 20px
}

.team-card h4 {
  margin-top: 20px
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light))
}

.team-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(10, 31, 61, .14);
  border-color: rgba(201, 169, 97, .4)
}

.team-card:hover::after {
  transform: scaleX(1)
}

.team-avatar {
  width: 100%;
  height: 260px;
  border-radius: 0;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy-100), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  border: none;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .4s
}

.team-card:hover .team-avatar img {
  transform: scale(1.04)
}

.team-card h4 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 6px
}

.team-card .role {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 6px
}

.team-card .dept {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px
}

/* News Grid (Centre events) */
.centre-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.centre-news-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: all .4s;
  display: flex;
  flex-direction: column
}

.centre-news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md)
}

.centre-news-img {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 48px;
  position: relative;
  overflow: hidden
}

.centre-news-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(45deg, transparent 48%, rgba(201, 169, 97, .15) 49%, rgba(201, 169, 97, .15) 51%, transparent 52%);
  background-size: 30px 30px
}

.centre-news-img.v2 {
  background: linear-gradient(135deg, #1a3a6b, #0a1f3d)
}

.centre-news-img.v3 {
  background: linear-gradient(135deg, #2c4a7e, #102b52)
}

.centre-news-body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.centre-news-date {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 10px
}

.centre-news-card h5 {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 14px;
  flex: 1
}

.view-more-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 12px
}

/* Centre responsive */
@media(max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center
  }

  .about-emblem {
    margin: 0 auto
  }

  .objectives-grid {
    grid-template-columns: 1fr
  }

  .lead-card {
    grid-template-columns: 1fr;
    text-align: center
  }

  .lead-icon {
    margin: 0 auto
  }

  .about-text p:first-of-type::first-letter {
    float: none;
    font-size: 1em;
    margin: 0
  }
}

@media(max-width:768px) {
  .team-grid {
    flex-direction: column;
    align-items: center
  }

  .centre-news-grid {
    grid-template-columns: 1fr
  }
}

/* Gallery Grid (Centre pages) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.gallery-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--navy-100);
  cursor: pointer
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.gallery-item:hover img {
  transform: scale(1.08)
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 61, .92) 0%, rgba(10, 31, 61, .3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .3s
}

.gallery-item:hover .gallery-overlay {
  opacity: 1
}

.gallery-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3
}

.gallery-item.has-icon {
  background: linear-gradient(135deg, var(--navy-700), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 48px
}

.gallery-item.has-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(201, 169, 97, .08) 1px, transparent 1px), linear-gradient(to bottom, rgba(201, 169, 97, .08) 1px, transparent 1px);
  background-size: 20px 20px
}

.gallery-item.has-icon i {
  position: relative
}

/* Resources Grid (Centre pages) */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px
}

.resources-grid .resource-card {
  background: #FDF9F4;
  border: 1px solid var(--line);
  padding: 26px 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all .35s;
  text-decoration: none
}

.resources-grid .resource-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold)
}

.resource-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 24px;
  flex-shrink: 0
}

.resources-grid .resource-card h5 {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 4px
}

.resources-grid .resource-card span {
  font-size: 13px;
  color: var(--muted)
}

/* News link */
.news-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .25s
}

.news-link:hover {
  gap: 12px;
  color: var(--gold-dark)
}

.view-more-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
  transition: gap .25s
}

.view-more-link:hover {
  gap: 12px
}

/* Centre gallery/resources responsive */
@media(max-width:768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .resources-grid {
    grid-template-columns: 1fr
  }
}

/* ── LARGE DESKTOP SCALING ── */
@media(min-width:1440px) {
  :root {
    font-size: 17.5px
  }

  .util .w,
  .hdr,
  .ql-inner,
  .wrap,
  .main-section,
  .adm-hero .wrap,
  .adm-statsbar .wrap {
    max-width: 1540px;
    padding: 0 40px
  }

  .util {
    font-size: 14.5px
  }

  .util .pill {
    font-size: 13px
  }

  .nav-links a {
    font-size: 15.5px;
    padding: 8px 14px
  }

  .drop-menu a {
    font-size: 14.5px
  }

  .hdr .btn-gold,
  .hdr .btn-navy {
    font-size: 15px
  }

  .vc-caption p {
    font-size: 18px
  }

  .vc-tag {
    font-size: 12.5px
  }

  .eyebrow {
    font-size: 15px
  }

  .eyebrow-lg {
    font-size: 25px
  }

  .section-title {
    font-size: 2.8rem
  }

  .section-sub {
    font-size: 18px
  }

  .stat-num {
    font-size: 40px
  }

  .stat-label {
    font-size: 14.5px
  }

  .stat-desc {
    font-size: 12px
  }

  .pcard-desc {
    font-size: 14.5px
  }

  .pcard-pill {
    font-size: 11px
  }

  .pcard-link {
    font-size: 14px
  }

  .ql-text h4 {
    font-size: 17px
  }

  .ql-text p {
    font-size: 14px
  }

  .wbento h4 {
    font-size: 18px
  }

  .wbento p {
    font-size: 15px
  }

  .wbento-img-text .big {
    font-size: 60px
  }

  .wbento-img-text p {
    font-size: 14.5px
  }

  .testi-text {
    font-size: 14.5px
  }

  .testi-name {
    font-size: 15px
  }

  .testi-role {
    font-size: 12.5px
  }

  .accred-item .a-title {
    font-size: 15.5px
  }

  .mobile-nav-links a,
  .mobile-nav-group-title,
  .mobile-nav-sub a {
    font-size: inherit
  }
}

@media(min-width:1700px) {
  :root {
    font-size: 18.5px
  }

  .util .w,
  .hdr,
  .ql-inner,
  .wrap,
  .main-section,
  .adm-hero .wrap,
  .adm-statsbar .wrap {
    max-width: 1680px
  }

  .section-title {
    font-size: 3rem
  }

  .stat-num {
    font-size: 46px
  }

  .wbento-img-text .big {
    font-size: 68px
  }
}

/* ── WHATSAPP FLOATER ── */
.floater {
  position: fixed;
  left: 18px;
  bottom: 80px;
  z-index: 990;
}

.floater a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
  transition: all .25s;
}

.floater a:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
}

@media(max-width:600px) {
  .floater {
    left: 12px;
    bottom: 70px;
  }

  .floater a {
    width: 46px;
    height: 46px;
    font-size: 22px;
  }
}

/* Homepage Campus Life tab grids */
.news-list-wrap .tab-grid {
  display: none;
}

.news-list-wrap .tab-grid.active {
  display: grid;
}

/* ── SPLIT CAMPUS LIFE & EVENTS (cards 2/3 + calendar 1/3) ── */
.news-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

.news-split .news-list-wrap {
  display: block;
}

.news-split .news-grid {
  grid-template-columns: repeat(2, 1fr);
}

.news-split .cal-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}

.news-split .cal-wrap.active {
  display: flex;
  flex-direction: column;
}

.news-split .cal-panel {
  position: static;
}

.news-split .cal-day.has-event {
  background: #2e7d32;
  color: #fff;
}

.news-split .cal-day.has-event .cal-day-num {
  color: #fff;
  font-weight: 600;
}

.news-split .cal-day.has-event .cal-dots {
  display: none;
}

.news-split .cal-day.has-event:hover {
  background: #1b5e20;
}

.news-split .cal-day.selected {
  background: var(--gold);
  box-shadow: inset 0 0 0 2px var(--navy);
}

.news-split .cal-day.selected .cal-day-num {
  color: var(--navy);
}

@media(max-width:1100px) {
  .news-split {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media(max-width:900px) {
  .news-split {
    grid-template-columns: 1fr;
  }
  .news-split .cal-wrap {
    position: static;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media(max-width:640px) {
  .news-split .news-grid {
    grid-template-columns: 1fr;
  }
}