:root {
  --primary: #064a80;
  --deep: #053a68;
  --yellow: #77eb62;
  --green: #1b9c52;
  --red: #d13e3e;
  --light: #f4f4f4;
}

* {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, input, select, textarea, button, p, a, span, label, li {
  font-family: 'Montserrat', sans-serif;
}

body {
  margin: 0;
  color: #1d2b38;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
}

a {
  color: inherit;
}

.top-strip {
  min-height: 38px;
  color: #fff;
  background: linear-gradient(115deg, var(--red) 0 32%, var(--primary) 32% 100%);
  font-size: 14px;
  font-weight: 700;
}

.top-strip .container {
  min-height: 38px;
}

.follow {
  color: #fff;
}

.follow i {
  margin-left: 8px;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease;
}

.follow i:hover {
  color: var(--yellow);
  transform: scale(1.15);
}

.quick-links a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}

.quick-links a i {
  margin-right: 5px;
  color: rgba(255, 255, 255, 0.85);
  transition: color .2s ease;
}

.quick-links a:hover {
  color: #fff;
}

.quick-links a:hover i {
  color: var(--yellow);
}

.brand-row {
  padding: 14px 0;
  background: #fff;
}

.brand {
  color: #11263a;
}

.school-logo {
  display: block;
  width: 68px;
  height: 68px;
  margin-right: 16px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .18));
  flex: 0 0 auto;
}

.school-logo.large {
  width: 118px;
  height: 118px;
  margin-right: 24px;
}

.brand h1,
.hero-logo h2,
.welcome-panel h3 {
  margin: 0;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 700;
  line-height: .95;
}

.brand h1 {
  font-size: clamp(24px, 3vw, 34px);
}

.brand h1 span,
.hero-logo h2 span,
.welcome-panel h3 span {
  color: var(--red);
  font-family: inherit;
  text-transform: none;
}

.brand p {
  margin: 2px 0 0;
  color: #111;
  font-size: 15px;
  font-weight: 700;
}

.contact-box a {
  color: #1e293b;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: color .2s ease;
}

.contact-box a:hover {
  color: var(--primary);
}

.contact-box i {
  margin-right: 8px;
  font-size: 20px;
  color: var(--red);
  transition: transform .2s ease, color .2s ease;
}

.contact-box .bi-envelope-fill {
  color: var(--red);
}

.contact-box .bi-telephone-fill {
  color: var(--green);
}

.contact-box a:hover i {
  transform: scale(1.12);
}

.main-nav {
  min-height: 36px;
  background: var(--primary);
  padding: 0;
  transition: box-shadow .2s ease;
}

.main-nav .container {
  min-height: 50px;
  align-items: center;
}

.main-nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  box-shadow: 0 8px 18px rgba(5, 47, 85, .18);
}

.main-nav .nav-link {
  color: #fff;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
  color: var(--yellow);
}


.main-nav .dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
}

.main-nav .dropdown-menu {
  min-width: 230px;
  margin-top: 0;
  padding: 10px;
  border: 1px dotted rgba(209, 62, 62, .55);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(5, 47, 85, .22);
}

.main-nav .dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--red);
}

.main-nav .dropdown-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px 9px 28px;
  color: #1b3f5f;
  border-bottom: 1px dotted rgba(27, 63, 95, .28);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}


.main-nav .dropdown-item::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 2px solid var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

.main-nav .dropdown-menu li:last-child .dropdown-item {
  border-bottom: 0;
}

.main-nav .dropdown-item:hover::before,
.main-nav .dropdown-item:focus::before {
  border-color: #fff;
  background: #fff;
}

.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus {
  color: #fff;
  background: var(--red);
}

@media (min-width: 992px) {
  .main-nav .dropdown:hover > .dropdown-menu,
  .main-nav .dropdown:focus-within > .dropdown-menu {
    display: block;
  }

  .main-nav .dropdown:hover > .dropdown-toggle,
  .main-nav .dropdown:focus-within > .dropdown-toggle {
    color: var(--yellow);
  }
}
.navbar-toggler {
  width: 50px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 8px 18px rgba(0, 0, 0, .16);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  background: rgba(255, 255, 255, .14);
  border-color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 10px 22px rgba(0, 0, 0, .2);
}

.navbar-toggler:focus {
  outline: 0;
}

.navbar-toggler[aria-expanded="true"] {
  background: rgba(209, 62, 62, .95);
  border-color: rgba(255, 255, 255, .9);
}

.navbar-toggler-icon {
  position: relative;
  width: 24px;
  height: 18px;
  background-image: none;
  filter: none;
}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  display: block;
  border-radius: 999px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  box-shadow: 0 7.5px 0 #fff;
  transition: transform .2s ease, top .2s ease, box-shadow .2s ease;
}

.navbar-toggler-icon::before {
  top: 0;
}

.navbar-toggler-icon::after {
  top: 15px;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 7.5px;
  transform: rotate(45deg);
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 7.5px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 520px;
  max-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #020b14;
}

.hero::after {
  display: none;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: none;
  filter: saturate(1.06) contrast(1.02);
  pointer-events: none;
}

.hero-overlay {
  background: radial-gradient(circle at center, rgba(4, 15, 36, 0.32) 0%, rgba(3, 14, 32, 0.58) 70%, rgba(2, 9, 22, 0.78) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 92vw);
  text-align: center;
  color: #fff;
  pointer-events: none;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  text-align: left;
}

.hero-logo h2 {
  font-size: clamp(34px, 5.2vw, 58px);
  text-shadow: 0 2px 5px rgba(0, 0, 0, .45);
}

.hero-logo p {
  margin: 5px 0 0;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0, 0, 0, .85);
}

.hero-content h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 3px 8px rgba(0, 0, 0, .65);
}

.hero-video-controls {
  position: absolute;
  bottom: 22px;
  right: 24px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-vid-btn {
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  padding: 7px 15px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  user-select: none;
}

.hero-vid-btn:hover {
  background: var(--red, #e43d5f);
  border-color: var(--red, #e43d5f);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 61, 95, 0.45);
  color: #fff;
}

.hero-vid-btn i {
  font-size: 15px;
}

/* Accessible keyboard focus ring */
.hero-vid-btn:focus-visible {
  outline: 3px solid var(--yellow, #f59e0b);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.35);
}

/* Active state indicator */
.hero-vid-btn[aria-pressed="true"] {
  background: rgba(228, 61, 95, 0.85);
  border-color: var(--red, #e43d5f);
}

@media (max-width: 575.98px) {
  .hero-video-controls {
    bottom: 14px;
    right: 14px;
    gap: 6px;
  }
  .hero-vid-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

.announcement-marquee {
  position: relative;
  z-index: 5;
  margin-top: 0;
  overflow: hidden;
  background: linear-gradient(115deg, #052a4f 0%, var(--primary) 50%, #084c7f 100%);
  color: #fff;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 4px 18px rgba(5, 42, 79, .22);
}

.announcement-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .1), transparent 25%, rgba(255, 255, 255, .06) 75%, transparent 100%);
  pointer-events: none;
}

.marquee-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  animation: announcement-marquee 28s linear infinite;
}

.announcement-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 48px;
  padding: 11px 24px;
  white-space: nowrap;
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
}

.marquee-content i {
  color: var(--yellow);
  font-size: 15px;
}

@media (max-width: 991px) {
  .announcement-marquee {
    margin-top: -50px;
  }
}

@media (max-width: 576px) {
  .announcement-marquee {
    margin-top: -35px;
  }
}

@keyframes announcement-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
.campus-intro {
  position: relative;
  padding: 58px 0 68px;
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 46%, #eef4f8 100%);
  overflow: hidden;
}


.campus-intro::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 34px;
  width: 118px;
  height: 118px;
  border: 18px solid rgba(255, 212, 37, .28);
  border-radius: 50%;
}

.intro-header {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto 30px;
}

.intro-header span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.intro-header h2 {
  margin: 0;
  color: #082f52;
  font-family: inherit;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.1;
}

.intro-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 560px;
  background: #fff;
  border: 1px solid rgba(6, 74, 128, .12);
  box-shadow: 0 24px 60px rgba(5, 47, 85, .16);
}

.intro-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 47, 85, .08), rgba(5, 47, 85, .38));
}

.intro-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.intro-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 56px);
  padding: 13px 18px;
  color: #082f52;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
  font-size: 14px;
  font-weight: 700;
}

.intro-badge i {
  color: var(--yellow);
  font-size: 16px;
}

.intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  padding: clamp(34px, 5vw, 62px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(246, 250, 252, .98)),
    radial-gradient(circle at top right, rgba(255, 212, 37, .2), transparent 34%);
}

.intro-title {
  margin-bottom: 22px;
}

.intro-title img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  flex: 0 0 auto;
}

.intro-title p {
  margin: 0 0 4px;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.intro-title h3 {
  margin: 0;
  color: var(--green);
  text-transform: uppercase;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1;
}

.intro-title h3 span {
  color: var(--red);
  font-family: inherit;
  text-transform: none;
}

.intro-content h4 {
  margin: 0 0 18px;
  color: #063f70;
  font-family: inherit;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.08;
}

.intro-text {
  max-width: 680px;
  margin: 0 0 28px;
  color: #526372;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

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

.intro-grid div {
  min-height: 142px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(6, 74, 128, .1);
  border-top: 4px solid var(--yellow);
  box-shadow: 0 10px 24px rgba(5, 47, 85, .08);
}

.intro-grid i,
.intro-grid strong,
.intro-grid span {
  display: block;
}

.intro-grid i {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 26px;
}

.intro-grid strong {
  margin-bottom: 6px;
  color: #092f51;
  font-size: 16px;
  font-weight: 700;
}

.intro-grid span {
  color: #65717c;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}
.yellow-divider {
  height: 46px;
  background: #fff900;
}

.enquiry-section {
  position: relative;
  padding: 64px 0 42px;
  overflow: hidden;
  background: #fff;
}

.shape {
  position: absolute;
  display: block;
  opacity: .65;
}

.shape-one {
  left: 3%;
  top: 48px;
  width: 18px;
  height: 18px;
  background: #8979ff;
}

.shape-two,
.shape-three {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #f67582;
}

.shape-two {
  left: 34%;
  top: 70px;
}

.shape-three {
  left: 47%;
  top: 68px;
}

.enquiry-section::before,
.enquiry-section::after {
  content: "+";
  position: absolute;
  color: #6fba74;
  font-size: 34px;
  font-weight: 700;
  opacity: .55;
}

.enquiry-section::before {
  left: 2%;
  top: 86px;
}

.enquiry-section::after {
  right: 26%;
  top: 26px;
}

.enquiry-card {
  position: relative;
  min-height: 260px;
  padding: 43px 56px 28px 74px;
  border-radius: 18px;
  background: linear-gradient(105deg, #073f78, #1268bc 72%, #064478);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .35);
  overflow: hidden;
}

.enquiry-card h2 {
  margin-bottom: 22px;
  color: #fff;
  text-align: center;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 255, 255, .8);
}

.form-control,
.form-select {
  min-height: 35px;
  border: 0;
  border-left: 7px solid var(--yellow);
  border-radius: 0;
  font-size: 14px;
}

.submit-btn {
  min-height: 35px;
  margin-top: 12px;
  border: 0;
  border-radius: 4px;
  background: var(--yellow);
  color: #111;
  font-weight: 700;
}

.submit-btn:hover {
  background: #ffe25a;
}

.student-cutout {
  position: absolute;
  right: 18px;
  bottom: -2px;
  width: 290px;
  height: 286px;
  background:
    linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    url("https://images.unsplash.com/photo-1607453998774-d533f65dac99?auto=format&fit=crop&w=600&q=80") center top / cover;
  clip-path: ellipse(48% 58% at 50% 50%);
  filter: saturate(.9);
}

.welcome {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  padding: 70px 0;
  overflow: hidden;
}

.welcome-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .08), rgba(255, 255, 255, .15)),
    url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.welcome-panel {
  position: relative;
  padding: 38px 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .75);
  color: #111;
  text-align: center;
}

.welcome-panel h2 {
  color: var(--primary);
  font-family: inherit;
  font-size: clamp(28px, 3vw, 41px);
  text-transform: uppercase;
}

.welcome-panel h3 {
  margin: 5px 0 24px;
  font-size: clamp(28px, 3vw, 43px);
}

.welcome-panel h4 {
  position: relative;
  margin: 0 0 30px;
  color: #075087;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.05;
}

.welcome-panel h4::before,
.welcome-panel h4::after {
  position: absolute;
  color: var(--yellow);
  font-size: 58px;
  line-height: 1;
}

.welcome-panel h4::before {
  content: open-quote;
  left: -8px;
  top: -20px;
}

.welcome-panel h4::after {
  content: close-quote;
  right: -4px;
  bottom: -34px;
}

.welcome-panel p {
  text-align: left;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.55;
}

.welcome-panel a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.values {
  padding: 50px 0;
  background: #efefef;
}

.value-card {
  min-height: 176px;
  padding: 30px 26px 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .14);
}

.value-dot {
  display: inline-block;
  width: 56px;
  height: 56px;
  margin-right: 12px;
  border-radius: 50%;
  vertical-align: middle;
}

.value-dot.blue {
  background: #dfeef8;
}

.value-dot.cream {
  background: #fff2e1;
}

.value-dot.aqua {
  background: #e0f8ff;
}

.value-card h3 {
  display: inline-block;
  margin: 0;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  vertical-align: middle;
}

.value-card p {
  margin: 24px 0 0;
  color: #5f6569;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.chairman-message {
  position: relative;
  padding: 92px 0 98px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5fafc 52%, #eef6fb 100%);
  overflow: hidden;
}

.chairman-message::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 70px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 62, 62, .1), transparent 68%);
  pointer-events: none;
}

.chairman-message::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 74, 128, .11), transparent 68%);
  pointer-events: none;
}

.chairman-message .container {
  position: relative;
  z-index: 1;
}

.chairman-shell {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(6, 74, 128, .12);
  border-radius: 10px;
  box-shadow: 0 24px 58px rgba(5, 47, 85, .14);
  overflow: hidden;
}

.chairman-photo-panel {
  position: relative;
  min-height: 520px;
  padding: 34px;
  background: linear-gradient(145deg, #082f52, #064a80);
}

.chairman-photo-panel::before {
  content: "";
  position: absolute;
  inset: 34px 34px auto auto;
  width: 110px;
  height: 110px;
  border-top: 6px solid var(--yellow);
  border-right: 6px solid var(--yellow);
  opacity: .9;
}

.chairman-photo {
  position: relative;
  height: 100%;
  min-height: 452px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .26);
}

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

.chairman-name-card {
  position: absolute;
  left: 54px;
  right: 54px;
  bottom: 54px;
  padding: 18px 20px;
  color: #fff;
  background: rgba(209, 62, 62, .94);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
}

.chairman-name-card strong,
.chairman-name-card span {
  display: block;
}

.chairman-name-card strong {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 900;
}

.chairman-name-card span {
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 700;
}

.chairman-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}

.chairman-content h2 {
  max-width: 760px;
  margin: 0 0 24px;
  color: #082f52;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1.08;
}

.chairman-content p {
  max-width: 760px;
  margin: 0 0 18px;
  color: #536472;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.chairman-content .chairman-lead {
  color: #263d50;
  font-size: 18px;
  font-weight: 700;
}

.chairman-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 760px;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(6, 74, 128, .14);
}

.chairman-signature strong,
.chairman-signature span {
  display: block;
}

.chairman-signature strong {
  color: #082f52;
  font-size: 21px;
  font-weight: 900;
}

.chairman-signature span {
  margin-top: 3px;
  color: #667685;
  font-size: 14px;
  font-weight: 700;
}

.chairman-signature i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #082f52;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 30px;
  flex: 0 0 auto;
}

/* ============================================================
   ENHANCED STATS & HIGHLIGHTS SECTION
   ============================================================ */
.school-highlights {
  position: relative;
  min-height: 420px;
  padding: 85px 0 95px;
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, fixed;
  overflow: hidden;
}

.school-highlights::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(228, 61, 95, 0.18), transparent 45%),
              radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.14), transparent 45%);
  pointer-events: none;
}

.school-highlights .container {
  position: relative;
  z-index: 2;
}

.stat-card-modern {
  position: relative;
  background: rgba(12, 22, 52, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 34px 22px 28px;
  text-align: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--stat-accent, var(--red));
  border-radius: 20px 20px 0 0;
}

.stat-card-modern:hover {
  transform: translateY(-9px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.52), 0 0 22px var(--stat-glow, rgba(228, 61, 95, 0.3));
  border-color: rgba(255, 255, 255, 0.35);
}

.stat-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--stat-icon-bg, rgba(228, 61, 95, 0.16));
  color: var(--stat-accent, #ff6b8b);
  border: 1px solid var(--stat-icon-border, rgba(228, 61, 95, 0.35));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.stat-card-modern:hover .stat-icon-box {
  transform: scale(1.12) rotate(4deg);
  background: var(--stat-accent, #e43d5f);
  color: #ffffff;
}

.stat-num-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 3vw, 42px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.5px;
}

.stat-plus {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  color: var(--stat-accent, #fca5a5);
  line-height: 1;
}

.stat-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #f1f5f9;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 8px;
  line-height: 1.35;
}

.stat-desc {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

/* Color Themes */
.stat-theme-crimson {
  --stat-accent: #e43d5f;
  --stat-glow: rgba(228, 61, 95, 0.4);
  --stat-icon-bg: rgba(228, 61, 95, 0.18);
  --stat-icon-border: rgba(228, 61, 95, 0.4);
}

.stat-theme-emerald {
  --stat-accent: #10b981;
  --stat-glow: rgba(16, 185, 129, 0.4);
  --stat-icon-bg: rgba(16, 185, 129, 0.18);
  --stat-icon-border: rgba(16, 185, 129, 0.4);
}

.stat-theme-sky {
  --stat-accent: #38bdf8;
  --stat-glow: rgba(56, 189, 248, 0.4);
  --stat-icon-bg: rgba(56, 189, 248, 0.18);
  --stat-icon-border: rgba(56, 189, 248, 0.4);
}

.stat-theme-gold {
  --stat-accent: #f59e0b;
  --stat-glow: rgba(245, 158, 11, 0.4);
  --stat-icon-bg: rgba(245, 158, 11, 0.18);
  --stat-icon-border: rgba(245, 158, 11, 0.4);
}

/* Legacy fallback */
.stat-card {
  width: min(250px, 100%);
  margin: 0 auto;
  text-align: center;
}

.infrastructure-section {
  position: relative;
  padding: 96px 0 104px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbff 52%, #edf6fb 100%);
  overflow: hidden;
}

.infrastructure-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--primary), #77eb62);
}

.infrastructure-section::after {
  content: "";
  position: absolute;
  right: -140px;
  top: 90px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 74, 128, .08), transparent 68%);
  pointer-events: none;
}

.infrastructure-section .container {
  position: relative;
  z-index: 1;
}

.infra-heading {
  max-width: 820px;
  margin: 0 auto 46px;
}

.infra-heading span,
.infra-panel-heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}

.infra-heading h2 {
  margin: 0 0 12px;
  color: #082f52;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}

.infra-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: #536472;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.infra-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 34px;
  align-items: stretch;
}

.infra-feature,
.infra-panel {
  min-height: 560px;
  border: 1px solid rgba(6, 74, 128, .12);
  background: #fff;
  box-shadow: 0 22px 54px rgba(5, 47, 85, .14);
}

.infra-feature {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.infra-feature img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.infra-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 47, 85, .05), rgba(5, 47, 85, .76));
}

.infra-feature:hover img {
  transform: scale(1.04);
}

.infra-feature-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  color: #fff;
}

.infra-feature-caption strong,
.infra-feature-caption span {
  display: block;
}

.infra-feature-caption strong {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
  line-height: 1.1;
}

.infra-feature-caption span {
  max-width: 520px;
  color: rgba(255, 255, 255, .84);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.infra-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  border-radius: 10px;
}

.infra-panel-heading {
  margin-bottom: 24px;
}

.infra-panel-heading h3 {
  margin: 0;
  color: #082f52;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.14;
}

.infra-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.infra-photo-card {
  min-height: 174px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(6, 74, 128, .1);
  border-bottom: 4px solid var(--red);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.infra-photo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 74, 128, .18);
  box-shadow: 0 14px 28px rgba(5, 47, 85, .1);
}

.infra-photo-card img {
  display: block;
  width: 100%;
  height: 104px;
  object-fit: cover;
  transition: transform .35s ease;
}

.infra-photo-card:hover img {
  transform: scale(1.05);
}

.infra-photo-card figcaption {
  padding: 13px 15px 15px;
}

.infra-photo-card strong,
.infra-photo-card span {
  display: block;
}

.infra-photo-card strong {
  margin-bottom: 6px;
  color: #082f52;
  font-size: 15px;
  font-weight: 800;
}

.infra-photo-card span {
  color: #64727f;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.bulletin-board {
  position: relative;
  padding: 92px 0 96px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 44%, #edf5fa 100%);
  overflow: hidden;
}

.bulletin-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 74, 128, .06) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(6, 74, 128, .08) 0 1px, transparent 1px 100%);
  background-size: 52px 52px;
  opacity: .55;
}

.bulletin-heading,
.notice-layout {
  position: relative;
  z-index: 1;
}

.bulletin-heading {
  max-width: 760px;
  margin: 0 auto 50px;
}

.bulletin-heading span,
.notice-card-title span,
.notice-date {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
}

.bulletin-heading span,
.notice-card-title span {
  display: block;
  font-size: 12px;
}

.bulletin-heading h2 {
  margin: 0;
  color: var(--primary);
  text-transform: uppercase;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.05;
}

.bulletin-heading p {
  margin: 14px auto 0;
  color: #5c6b78;
  font-size: 16px;
  font-weight: 600;
}

.notice-layout,
.slider-layout {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(360px, 1fr) minmax(300px, .9fr);
  gap: 24px;
  align-items: stretch;
}

.notice-calendar-card,
.birthday-modern,
.quick-news {
  min-height: 620px;
  padding: 30px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(6, 74, 128, .12);
  box-shadow: 0 18px 40px rgba(5, 47, 85, .14);
}

.notice-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.notice-card-title i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #082f52;
  background: var(--yellow);
  font-size: 22px;
  flex: 0 0 auto;
}

.notice-card-title h3 {
  margin: 3px 0 0;
  color: #082f52;
  font-size: 20px;
  font-weight: 700;
}

.calendar-mini-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: #1b2733;
  font-size: 13px;
  font-weight: 700;
}

.calendar-mini-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.calendar-mini-legend b {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.calendar-mini-legend .holiday { background: #d80d0d; }
.calendar-mini-legend .event { background: #42a5c8; }
.calendar-mini-legend .exam { background: #ff56d9; }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.week-days {
  margin-bottom: 22px;
  color: #082f52;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.dates {
  row-gap: 15px;
  color: #111;
  font-size: 15px;
  font-weight: 700;
}

.dates span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto;
}

.dates .muted { color: #c8cfd6; }
.dates .today {
  color: #082f52;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 7px 14px rgba(119, 235, 98, .34);
}

.notice-carousel,
.notice-carousel .carousel-inner,
.notice-carousel .carousel-item { height: 100%; }

.birthday-modern,
.quick-news {
  display: flex;
  flex-direction: column;
}

.birthday-modern .notice-carousel,
.quick-news .notice-carousel { flex: 1; }

.birthday-slide,
.announcement-slide { min-height: 430px; }

.birthday-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 18px 46px;
  text-align: center;
  background: linear-gradient(145deg, #fff7d8, #f4fbff);
}

.birthday-blue { background: linear-gradient(145deg, #eaf5ff, #ffffff); }
.birthday-green { background: linear-gradient(145deg, #ecfff4, #ffffff); }
.birthday-ribbon {
  display: grid;
  place-items: center;
  min-height: 92px;
  margin: 8px 0 22px;
  color: #5b53a7;
  background: linear-gradient(135deg, #fff7d8, #eef7ff);
  font-size: 21px;
  font-weight: 700;
}

.birthday-modern p {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 17px;
  font-weight: 700;
}

.birthday-modern small,
.announcement-slide small {
  color: #5e6b76;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.birthday-modern .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
}

.announcement-slide {
  display: block;
  color: #172331;
  text-decoration: none;
  background: #fff;
}

.announcement-slide img {
  display: block;
  width: 100%;
  height: 185px;
  object-fit: cover;
  margin-bottom: 20px;
}

.announcement-slide strong {
  display: block;
  margin-bottom: 10px;
  color: #082f52;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.quick-news .carousel-control-prev,
.quick-news .carousel-control-next {
  top: auto;
  bottom: 0;
  width: 38px;
  height: 38px;
  background: var(--primary);
  opacity: 1;
}

.quick-news .carousel-control-prev { left: auto; right: 46px; }
.quick-news .carousel-control-next { right: 0; }
.quick-news .carousel-control-prev-icon,
.quick-news .carousel-control-next-icon { width: 16px; height: 16px; }


.gallery-section {
  position: relative;
  padding: 92px 0 102px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 48%, #edf6fb 100%);
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--red), var(--yellow));
}

.gallery-section .container {
  position: relative;
  z-index: 1;
}

.gallery-heading {
  max-width: 760px;
  margin: 0 auto 44px;
}

.gallery-heading span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}

.gallery-heading h2 {
  margin: 0 0 12px;
  color: #082f52;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1.08;
}

.gallery-heading p {
  margin: 0 auto;
  color: #536472;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 18px;
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: #fff;
  border: 0;
  border-radius: 8px;
  background: #082f52;
  box-shadow: 0 18px 38px rgba(5, 47, 85, .16);
  cursor: pointer;
}

.gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease, filter .42s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 47, 85, .02), rgba(5, 47, 85, .78));
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.06);
}

.gallery-card:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

.gallery-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  text-align: left;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .4);
}

.gallery-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #061f37;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .42);
}

.gallery-modal .modal-header {
  border: 0;
  background: #082f52;
  color: #fff;
}

.gallery-modal .modal-title {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.gallery-modal .modal-body {
  padding: 0;
}

.gallery-modal .carousel-item {
  position: relative;
  background: #061f37;
}

.gallery-modal .carousel-item img {
  display: block;
  width: 100%;
  height: min(72vh, 680px);
  object-fit: contain;
}

.gallery-slide-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  padding: 12px 16px;
  color: #fff;
  background: rgba(5, 47, 85, .82);
  font-size: 18px;
  font-weight: 800;
}

.gallery-modal .carousel-control-prev,
.gallery-modal .carousel-control-next {
  width: 58px;
  opacity: 1;
}

.gallery-modal .carousel-control-prev-icon,
.gallery-modal .carousel-control-next-icon {
  width: 34px;
  height: 34px;
  padding: 20px;
  border-radius: 50%;
  background-color: rgba(6, 74, 128, .86);
  background-size: 18px;
}

.student-cta {
  position: relative;
  padding: 56px 0 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(209, 62, 62, .96), rgba(209, 62, 62, .96)),
    url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1800&q=80") center 38% / cover;
}

.student-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .13) 0 2px, transparent 2px 140px);
  pointer-events: none;
}

.student-cta .container {
  position: relative;
  z-index: 1;
}

.student-cta-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}

.student-cta-copy span {
  display: inline-block;
  margin-bottom: 12px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
}

.student-cta-copy h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 35px;
  font-weight: 900;
  line-height: 1.08;
}

.student-cta-copy p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.student-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 325px;
  min-height: 87px;
  padding: 22px 34px;
  color: #fff;
  background: #07365f;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(5, 47, 85, .24);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.student-cta-btn:hover,
.student-cta-btn:focus {
  color: #fff;
  background: #0b4d81;
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(5, 47, 85, .32);
}

.student-cta-btn i {
  font-size: 22px;
}
.site-footer {
  color: #fff;
  background: #052f55;
}

.footer-top {
  position: relative;
  padding: 62px 0 42px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5, 47, 85, .96), rgba(6, 74, 128, .94)),
    url("https://images.unsplash.com/photo-1497633762265-9d179a990aa6?auto=format&fit=crop&w=1600&q=80") center / cover;
}


.footer-top .container { position: relative; z-index: 1; }
.footer-brand h2 {
  margin: 0;
  color: var(--green);
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.footer-brand h2 span { color: var(--red); text-transform: none; }
.footer-brand p,
.footer-about,
.footer-bottom p { margin: 0; }
.footer-brand p {
  margin-top: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.footer-logo { width: 58px; height: 58px; margin-right: 12px; }
.footer-about {
  max-width: 360px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer h3 {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 12px;
  color: #fff;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 700;
}

.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  background: var(--yellow);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, .84);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--yellow); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .84);
  font-weight: 700;
}

.footer-contact i { color: var(--yellow); font-size: 16px; line-height: 1.2; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, .08);
  transition: .2s ease;
}

.footer-social a:hover {
  color: #102f4f;
  border-color: var(--yellow);
  background: var(--yellow);
}

.footer-hours { display: grid; gap: 10px; }
.footer-hours div {
  padding: 12px 14px;
  border-left: 4px solid var(--yellow);
  background: rgba(255, 255, 255, .1);
}

.footer-hours span,
.footer-hours strong { display: block; }
.footer-hours span { color: rgba(255, 255, 255, .72); font-size: 13px; }
.footer-hours strong { margin-top: 3px; color: #fff; font-size: 14px; }
.footer-bottom {
  padding: 16px 0;
  background: #03223d;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .chairman-shell {
    grid-template-columns: 1fr;
  }

  .chairman-photo-panel {
    min-height: 440px;
  }

  .chairman-photo {
    min-height: 372px;
  }
  .student-cta {
    padding: 46px 0;
  }

  .student-cta-content {
    grid-template-columns: 1fr;
    text-align: left;
    justify-items: start;
  }

  .student-cta-copy p {
    max-width: 760px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 200px;
  }
  .infra-layout {
    grid-template-columns: 1fr;
  }

  .infra-feature,
  .infra-panel {
    min-height: auto;
  }

  .infra-feature {
    min-height: 420px;
  }

  .notice-layout,
  .slider-layout { grid-template-columns: 1fr; }

  .slider-card,
  .notice-calendar-card,
  .birthday-modern,
  .quick-news { min-height: auto; }

  .birthday-slide,
  .announcement-slide { min-height: 340px; }

  .intro-shell { grid-template-columns: 1fr; min-height: 0; }
  .intro-media,
  .intro-media img { min-height: 390px; }
  .intro-content { min-height: 0; padding: 42px 34px; }
  .top-strip { background: var(--primary); }
  .main-nav {
    padding: 8px 0;
  }

  .main-nav .container {
    min-height: 46px;
  }

  .main-nav .nav-link { padding-left: 0; }
  .main-nav .dropdown-menu {
    margin: 0 0 8px;
    padding: 8px;
    box-shadow: none;
  }

  .main-nav .dropdown-item {
    min-height: 38px;
  }
  .hero { min-height: 420px; }
  .hero-logo { flex-direction: column; text-align: center; gap: 14px; }
  .school-logo.large { margin-right: 0; }
  .enquiry-card { padding: 34px 28px; }
  .welcome { min-height: auto; }
}

@media (max-width: 575.98px) {
  .chairman-message {
    padding: 58px 0 64px;
  }

  .chairman-photo-panel {
    min-height: 360px;
    padding: 22px;
  }

  .chairman-photo-panel::before {
    inset: 22px 22px auto auto;
    width: 82px;
    height: 82px;
  }

  .chairman-photo {
    min-height: 316px;
  }

  .chairman-name-card {
    left: 34px;
    right: 34px;
    bottom: 34px;
  }

  .chairman-content {
    padding: 32px 22px;
  }

  .chairman-content .chairman-lead {
    font-size: 16px;
  }

  .chairman-signature {
    align-items: flex-start;
  }

  .school-highlights {
    background-attachment: scroll, scroll;
    padding: 46px 0;
  }

  .stat-card { min-height: 236px; }
  .stat-label { min-height: 112px; font-size: 18px; }
  .stat-value { min-height: 124px; font-size: 31px; }
  .slider-card { padding: 22px; }
  .birthday-slide,
  .announcement-slide { min-height: 300px; }
  .announcement-slide img { height: 150px; }
  .notice-layout { gap: 18px; }
  .notice-calendar-card,
  .birthday-modern,
  .quick-news { padding: 22px; }
  .dates span { width: 30px; height: 30px; }
  .bulletin-board { padding: 58px 0 64px; }
  .campus-intro { padding: 58px 0 64px; }
  .intro-header { margin-bottom: 30px; }
  .intro-media,
  .intro-media img { min-height: 320px; }
  .intro-content { padding: 32px 22px; }
  .intro-title { align-items: flex-start !important; }
  .intro-title img { width: 58px; height: 58px; }
  .intro-grid { grid-template-columns: 1fr; }
  .brand-row { padding: 8px 0; }
  .brand-row .container { gap: 8px !important; }
  .brand {
    flex-direction: row;
    align-items: center;
    max-width: 100%;
    text-align: left;
  }
  .school-logo {
    width: 52px;
    height: 52px;
    margin: 0 10px 0 0;
  }
  .brand h1 {
    font-size: 21px;
    line-height: 1;
  }
  .brand p {
    font-size: 11px;
    line-height: 1.25;
  }
  .contact-box {
    width: 100%;
    gap: 7px !important;
  }
  .contact-box a {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.25;
    overflow-wrap: anywhere;
    text-align: center;
  }
  .contact-box i {
    margin-right: 6px;
    font-size: 16px;
  }
  .quick-links { font-size: 12px; gap: 9px !important; }
  .hero { min-height: 380px; }
  .hero-logo { margin-bottom: 38px; }
  .marquee-track { animation-duration: 22s; }
  .marquee-content { gap: 26px; padding: 13px 13px; }
  .marquee-content span { gap: 8px; font-size: 13px; }
  .marquee-content i { font-size: 15px; }
  .yellow-divider { height: 32px; }
  .welcome-panel { padding: 30px 24px; }
}
/* =============================================
   ABOUT US PAGE STYLES
   ============================================= */

/* --- Page Hero / Breadcrumb Banner --- */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(5, 47, 85, .62), rgba(5, 47, 85, .68)),
    url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?auto=format&fit=crop&w=1800&q=80') center / cover no-repeat;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 2px, transparent 2px 80px),
    repeating-linear-gradient(180deg, rgba(255,255,255,.04) 0 2px, transparent 2px 80px);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--primary), var(--yellow));
}

.page-hero-overlay {
  display: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 60px 20px 72px;
}

.page-hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(0,0,0,.45);
  letter-spacing: 2px;
}

.page-hero-content .breadcrumb {
  display: flex;
  gap: 6px;
  background: none;
  padding: 0;
}

.page-hero-content .breadcrumb-item {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  font-weight: 700;
}

.page-hero-content .breadcrumb-item a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
}

.page-hero-content .breadcrumb-item a:hover { color: #fff; }
.page-hero-content .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.55);
}

.page-hero-content .breadcrumb-item.active { color: #fff; }

/* --- Mission & Vision --- */
.about-mv-section {
  position: relative;
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 50%, #eef4f8 100%);
}

.mv-card {
  padding: 44px 38px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(6, 74, 128, .12);
  box-shadow: 0 22px 56px rgba(5, 47, 85, .12);
  transition: transform .28s ease, box-shadow .28s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 64px rgba(5, 47, 85, .18);
}

.mv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #064a80, #1268bc);
  color: #fff;
  font-size: 32px;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(6, 74, 128, .28);
}

.vision-icon {
  background: linear-gradient(135deg, #d13e3e, #a82e2e);
  box-shadow: 0 8px 20px rgba(209, 62, 62, .28);
}

.mv-card h3 {
  margin: 0 0 16px;
  color: #082f52;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.1;
}

.mv-card > p {
  color: #536472;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
  margin-bottom: 24px;
}

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

.mv-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1b3f5f;
  font-size: 15px;
  font-weight: 700;
}

.mv-list li i {
  color: var(--primary);
  font-size: 20px;
  flex: 0 0 auto;
}

.mission-card { border-top: 5px solid var(--primary); }
.vision-card { border-top: 5px solid var(--red); }

/* --- Principal Message (Reversed Chairman) --- */
.principal-message-section {
  position: relative;
  padding: 92px 0 98px;
  background: linear-gradient(180deg, #edf5fa 0%, #f7fbff 52%, #ffffff 100%);
  overflow: hidden;
}

.principal-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr);
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(6, 74, 128, .12);
  border-radius: 10px;
  box-shadow: 0 24px 58px rgba(5, 47, 85, .14);
  overflow: hidden;
}

.principal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 64px);
}

.principal-photo-panel {
  position: relative;
  min-height: 520px;
  padding: 34px;
  background: linear-gradient(145deg, #d13e3e, #a82e2e);
}

.principal-photo-panel::before {
  content: '';
  position: absolute;
  inset: 34px auto 34px 34px;
  width: 110px;
  height: 110px;
  border-bottom: 6px solid var(--yellow);
  border-left: 6px solid var(--yellow);
  opacity: .9;
}

/* --- Core Values --- */
.about-values-section {
  position: relative;
  padding: 92px 0 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 52%, #edf4fa 100%);
  overflow: hidden;
}

.about-values-section::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--red), var(--yellow));
}

.about-value-card {
  padding: 36px 30px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(6, 74, 128, .1);
  border-bottom: 4px solid var(--primary);
  box-shadow: 0 14px 38px rgba(5, 47, 85, .10);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.about-value-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--red);
  box-shadow: 0 22px 48px rgba(5, 47, 85, .16);
}

.about-value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 22px;
  font-size: 30px;
}

.about-value-card h5 {
  color: #082f52;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-value-card p {
  color: #64727f;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
  margin: 0;
}

/* --- Faculty Section --- */
.about-faculty-section {
  position: relative;
  padding: 92px 0 96px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 44%, #edf5fa 100%);
  overflow: hidden;
}

.faculty-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(6, 74, 128, .12);
  box-shadow: 0 16px 40px rgba(5, 47, 85, .12);
  transition: transform .28s ease, box-shadow .28s ease;
  text-align: center;
}

.faculty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(5, 47, 85, .18);
}

.faculty-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.faculty-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}

.faculty-card:hover .faculty-img-wrap img {
  transform: scale(1.06);
}

.faculty-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 47, 85, .6));
}

.faculty-info {
  padding: 22px 20px 26px;
  border-top: 4px solid var(--yellow);
}

.faculty-info h5 {
  margin: 0 0 6px;
  color: #082f52;
  font-size: 18px;
  font-weight: 800;
}

.faculty-info span {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.faculty-social {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.faculty-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(6, 74, 128, .2);
  color: var(--primary);
  text-decoration: none;
  font-size: 15px;
  transition: .2s ease;
}

.faculty-social a:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

/* --- CBSE Affiliation Section --- */
.cbse-section {
  position: relative;
  padding: 88px 0 96px;
  background: linear-gradient(135deg, #082f52, #064a80 60%, #0b5f92);
  overflow: hidden;
}

.cbse-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(180deg, rgba(255,255,255,.04) 0 1px, transparent 1px 80px);
  pointer-events: none;
}

.cbse-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.cbse-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--yellow);
  text-align: center;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
  flex: 0 0 auto;
}

.cbse-badge-wrap i {
  display: block;
  font-size: 46px;
  color: #082f52;
  margin-bottom: 8px;
}

.cbse-badge-wrap strong {
  display: block;
  color: #082f52;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.cbse-badge-wrap span {
  display: block;
  color: #063a65;
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}

.cbse-content-col .section-kicker { color: var(--yellow); }

.cbse-content-col h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  margin: 0 0 18px;
  line-height: 1.1;
}

.cbse-content-col > p {
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
  margin-bottom: 32px;
}

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

.cbse-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,.1);
  border-left: 4px solid var(--yellow);
  border-radius: 0 8px 8px 0;
}

.cbse-info-item i {
  font-size: 24px;
  color: var(--yellow);
  flex: 0 0 auto;
}

.cbse-info-item strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.cbse-info-item span {
  display: block;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 700;
}

/* --- Responsive Overrides for About Page --- */
@media (max-width: 991.98px) {
  .principal-shell {
    grid-template-columns: 1fr;
  }
  .principal-photo-panel {
    min-height: 440px;
  }
  .cbse-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cbse-badge-wrap {
    margin: 0 auto;
  }
  .cbse-info-grid {
    grid-template-columns: 1fr;
  }
  .cbse-content-col .section-kicker { display: block; }
}

@media (max-width: 575.98px) {
  .page-hero { min-height: 240px; }
  .page-hero-content h1 { font-size: 32px; }
  .mv-card { padding: 30px 22px; }
  .about-mv-section { padding: 58px 0 64px; }
  .about-faculty-section { padding: 58px 0 64px; }
  .about-values-section { padding: 58px 0 64px; }
  .cbse-section { padding: 58px 0 64px; }
  .principal-message-section { padding: 58px 0 64px; }
}

/* =============================================
   ABOUT US PAGE — REFERENCE STYLE REDESIGN
   ============================================= */

/* --- Page Hero (dark blue/students bg) --- */
.page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(5, 30, 65, .72), rgba(5, 30, 65, .78)),
    url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1800&q=80') center / cover no-repeat;
  overflow: hidden;
}

.page-hero::after {
  display: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px;
}

.page-hero-content h1 {
  margin: 0;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
  letter-spacing: 1px;
}

/* --- Campus Building Photo Banner --- */
.campus-photo-banner {
  padding: 36px 0;
  background: #fff;
}

.campus-photo-wrap {
  max-width: 900px;
  margin: 0 auto;
  border: 6px solid rgba(6, 74, 128, .1);
  box-shadow: 0 18px 52px rgba(5,47,85,.16);
  border-radius: 4px;
  overflow: hidden;
}

.campus-photo-wrap img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

/* --- Welcome / Intro Section --- */
.about-welcome-section {
  padding: 52px 0 48px;
  background: #fff;
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.about-kicker span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.about-kicker-line {
  flex: 0 0 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.about-main-heading {
  color: #111;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.15;
}

.about-intro-text {
  color: #3c3c3c;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 38px;
}

.about-sub-section {
  margin-bottom: 28px;
}

.about-sub-heading {
  color: #111;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-sub-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-arrow {
  flex: 0 0 auto;
  color: var(--primary);
  font-size: 20px;
  line-height: 1.5;
}

.about-sub-point p {
  margin: 0;
  color: #3c3c3c;
  font-size: 14.5px;
  line-height: 1.8;
  font-weight: 500;
  text-align: justify;
}

/* --- What Sets Us Apart --- */
.what-sets-section {
  padding: 52px 0 0;
  background: #fff;
}

.what-sets-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
}

.what-sets-header span {
  color: #082f52;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.what-sets-line {
  flex: 1;
  max-width: 120px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* Yellow Feature Cards */
.what-sets-grid {
  border: 2px solid rgba(6,74,128,.12);
}

.feature-card {
  padding: 38px 20px 32px;
  background: #f7ce00;
  border: 1px solid rgba(255,255,255,.35);
  text-align: center;
  transition: background .22s ease, transform .22s ease;
  cursor: default;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.feature-card:hover {
  background: #ffe033;
  transform: scale(1.02);
  z-index: 2;
  position: relative;
}

.feature-icon {
  font-size: 40px;
  color: var(--primary);
  line-height: 1;
}

.feature-card h4 {
  margin: 0;
  color: var(--primary);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.feature-card p {
  margin: 0;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  opacity: .85;
}

/* --- Location Strip Header --- */
.location-strip {
  background: var(--primary);
  padding: 26px 0;
  text-align: center;
  margin-top: 0;
}

.location-strip h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* --- Location Section --- */
.location-section {
  padding: 56px 0 72px;
  background: #fff;
}

.map-wrapper {
  border: 3px solid rgba(6, 74, 128, .15);
  box-shadow: 0 12px 36px rgba(5,47,85,.12);
  border-radius: 4px;
  overflow: hidden;
}

.location-info {
  padding: 10px 0 0;
}

.location-info h3 {
  color: #111;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 22px;
  letter-spacing: 1px;
}

.location-address,
.location-phone {
  text-align: center;
  color: #333;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 10px;
}

.location-phone a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.location-phone a:hover { text-decoration: underline; }

.location-social-label {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 24px 0 16px;
}

.social-icons-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.social-icon-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  color: #fff;
}

.social-icon-btn.fb  { background: #1877f2; }
.social-icon-btn.yt  { background: #ff0000; }
.social-icon-btn.ig  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-icon-btn.tw  { background: #000; }

/* --- Responsive --- */
@media (max-width: 767.98px) {
  .campus-photo-wrap img { height: 260px; }
  .feature-card { min-height: 160px; padding: 24px 12px; }
  .feature-icon { font-size: 30px; }
  .feature-card h4 { font-size: 12px; }
  .what-sets-header span { font-size: 13px; letter-spacing: 1px; }
  .location-info { margin-top: 24px; }
  .page-hero { min-height: 200px; }
  .page-hero-content h1 { font-size: 34px; }
  .campus-photo-banner { padding: 20px 0; }
  .about-welcome-section { padding: 36px 0 32px; }
}

/* ============================================================
   GLOBAL INNER PAGE HERO / BREADCRUMB SECTION (Admission-FAQs Design)
   ============================================================ */
.breadcrumb-hero,
.inner-hero,
.page-hero {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(6, 25, 74, 0.90) 0%, rgba(20, 34, 99, 0.78) 55%, rgba(10, 24, 68, 0.88) 100%), url('../assets/breadcrumb.jpeg') center / cover no-repeat;
  color: #ffffff;
  padding: 56px 0;
  border-bottom: 4px solid var(--red, #e43d5f);
  overflow: hidden;
}

.page-hero-inner,
.hero-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  text-align: left;
}

.page-hero h1,
.breadcrumb-hero h1,
.inner-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: #ffffff;
}

.page-hero p.hero-subtitle,
.breadcrumb-hero p.hero-subtitle,
.inner-hero p.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15.5px, 1.8vw, 19px);
  color: #cbd5e1;
  max-width: 680px;
  margin: 0 0 18px;
  font-weight: 500;
  line-height: 1.5;
}

.page-breadcrumb,
.global-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-breadcrumb a,
.global-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.page-breadcrumb a:hover,
.global-breadcrumb a:hover {
  color: #93c5fd;
}

.page-breadcrumb .separator,
.global-breadcrumb .separator {
  color: rgba(255, 255, 255, 0.45);
}

.page-breadcrumb .active-crumb,
.global-breadcrumb .active-crumb {
  color: #f87171;
  font-weight: 600;
}


