:root {
  --blue: #041538;
  --blue-deep: #0b2f78;
  --white: #ffffff;
  --ink: #0e1a31;
  --soft: #667089;
  --line: #e8edf6;
}

* {
  box-sizing: border-box;
  margin: auto 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: #ffffff;
  overflow-x: hidden;
}

.wrap {
  width: min(1460px, 97vw);
  margin: 0 auto;
}

.topbar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  box-shadow: 0 4px 18px rgba(8, 24, 58, 0.06);
}

body {
  padding-top: 102px;
}

.nav-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand img {
  height: 56px;
  width: auto;
  display: block;
}

.logo-badge {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 28%, #2d70f5, #062966);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  border: 3px solid #d8e4ff;
}

.brand-texts h1 {
  margin: 0;
  font-size: 1.64rem;
  color: #13306d;
  letter-spacing: 0.2px;
}

.brand-texts p {
  margin: 2px 0 0;
  font-size: 1rem;
  color: #5f6982;
}

.brand-texts span {
  display: block;
  margin-top: 3px;
  color: #dc2b2b;
  font-size: 0.95rem;
  font-weight: 600;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  margin: 0;
  flex: 1;
  justify-content: center;
}

.menu a {
  text-decoration: none;
  color: #22304d;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  line-height: 1;
  margin: 0;
}

.menu-dropdown {
  position: relative;
}

.menu-dropdown > a {
  display: block;
}

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  padding: 0.4rem;
  border-radius: 12px;
  border: 1px solid #dde7fb;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 45, 109, 0.16);
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 140;
}

.submenu a {
  border-radius: 10px;
  padding: 0.58rem 0.78rem;
  white-space: nowrap;
}

.submenu a.active {
  color: #fff;
  background: linear-gradient(160deg, #01205d, #020f28);
}

.menu-dropdown:hover .submenu,
.menu-dropdown:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu a.active {
    color: #020f28;
    background: linear-gradient(160deg, #01205d26, #020f2857);
    box-shadow: 0 4px 12px rgba(18, 78, 197, 0.2);
}

.menu a:hover {
  background: #eaf0ff;
}

.menu a.has-caret::after {
  content: "";
  display: inline-block;
  margin-left: 0.42rem;
  width: 0;
  height: 0;
  border-left: 0.22rem solid transparent;
  border-right: 0.22rem solid transparent;
  border-top: 0.28rem solid currentColor;
  position: relative;
  top: -0.06rem;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  color: #071b46;
}

.nav-login-btn {
  text-decoration: none;
  color: #0a2d69;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #cfdcf6;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(15, 45, 109, 0.08);
  line-height: 1;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.nav-login-btn:hover {
  border-color: #a9c0f0;
  background: #eef4ff;
}

.site-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 35, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2500;
  padding: 1rem;
}

.site-popup-box {
  position: relative;
  max-width: min(760px, 92vw);
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.35);
  background: #ffffff;
}

.site-popup-box img {
  display: block;
  width: 100%;
  height: auto;
}

.site-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.site-popup-close:hover {
  background: rgba(0, 0, 0, 0.82);
}

.news-ticker {
  height: 28px;
  border-top: 1px solid #e9eef9;
  border-bottom: 1px solid #e9eef9;
  background: linear-gradient(90deg, #f7faff, #f2f7ff);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.news-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  white-space: nowrap;
  padding-left: 100%;
  animation: ticker-scroll 34s linear infinite;
  color: #10306b;
  font-size: 0.82rem;
  font-weight: 600;
}

.news-ticker-track span:first-child,
.news-ticker-track span:nth-child(9) {
  color: #0c3ea8;
  font-weight: 700;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 1240px) {
  .menu-btn {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    left: 2vw;
    right: 2vw;
    top: 110px;
    background: #fff;
    border: 1px solid #dbe5f9;
    border-radius: 14px;
    padding: 0.7rem;
    box-shadow: 0 16px 35px rgba(18, 53, 126, 0.18);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .menu.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav-login-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.84rem;
  }

  .menu a {
    white-space: normal;
    line-height: 1.35;
    padding: 0.6rem 0.75rem;
  }

  .menu-dropdown {
    width: 100%;
  }

  .submenu {
    position: static;
    min-width: unset;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 0.3rem;
    background: #f8faff;
    border-color: #e3eaf8;
    padding: 0.35rem;
  }

  .submenu a {
    white-space: normal;
  }
}

.hero {
  min-height: 750px;
  position: relative;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(93deg, rgba(1, 33, 96, 0.634) 0%, rgba(10, 73, 199, 0.56) 58%, rgba(10, 73, 199, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 156px;
  max-width: 740px;
}

.hero-kicker {
  margin: 0;
  font-size: 1.32rem;
  letter-spacing: 3px;
  font-weight: 600;
}

.hero h2 {
  margin: 0.78rem 0 0;
  font-size: clamp(3.6rem, 6.5vw, 6.1rem);
  line-height: 1.04;
  font-weight: 800;
}

.hero-sub {
  margin: 1.25rem 0 0;
  max-width: 650px;
  font-size: 1.15rem;
  line-height: 1.62;
  color: #ebf1ff;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.btn {
  text-decoration: none;
  border-radius: 14px;
  padding: 0.95rem 1.9rem;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
}

.btn.solid {
  background: linear-gradient(160deg, #031f54, #04163a);
  color: #fff;
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(15, 36, 85, 0.28);
}

.hero-dots {
  margin-top: 3.1rem;
  display: flex;
  gap: 0.8rem;
}

.dot {
  width: 10px;
  height: 10px;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  z-index: 3;
  font-size: 1.6rem;
  color: #20468f;
  background: rgba(255, 255, 255, 0.72);
}

.hero-arrow.left {
  left: 26px;
}

.hero-arrow.right {
  right: 26px;
}

.curve-shape {
    position: absolute;
    z-index: 3;
    left: -8%;
    right: -8%;
    bottom: -142px;
    height: 236px;
    background: #ffffff;
    border-radius: 50% 50% 0 0;
}

.curve-shape::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 121px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
}

.about-wrap {
  position: relative;
  z-index: 3;
  margin-top: -30px;
  overflow: hidden;
}

.about-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(20, 53, 121, 0.1);
  border: 1px solid #ebeff9;
  padding: 2.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
}

.chip {
  display: inline-block;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: #eaf1ff;
  color: #1f57d5;
  font-weight: 600;
  font-size: 0.92rem;
}

.about-left h3 {
  font-size: 2.7rem;
  margin: 1rem 0 0.7rem;
}

.about-left h3 span {
  color: #031237;
}

.about-left p {
  color: #5f6a83;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-top: 0;
}

.stats {
  margin-top: 1.8rem;
  display: flex;
  gap: 1.5rem;
}

.stats div {
  min-width: 110px;
}

.stats b {
  color: #06173e;
  font-size: 2rem;
}

.stats small {
  display: block;
  margin-top: 4px;
  color: #5f6a83;
  font-size: 0.96rem;
}

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.about-media img,
.about-media video {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #15213b;
  font-size: 1.8rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.about-media.is-playing .play-btn {
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0.9;
}

.reveal-left,
.reveal-right,
.reveal-bottom,
.reveal-top {
  opacity: 0;
  transition: opacity 2.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 2.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

.reveal-left {
  transform: translateX(-100px);
}

.reveal-right {
  transform: translateX(100px);
}

.reveal-bottom {
  transform: translateY(56px);
}

.reveal-top {
  transform: translateY(-56px);
}

.reveal-left.in-view,
.reveal-right.in-view,
.reveal-bottom.in-view,
.reveal-top.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-left,
  .reveal-right,
  .reveal-bottom,
  .reveal-top {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.vision-mission {
  padding: 5.2rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.center-head {
  text-align: center;
}

.center-head h3 {
  margin: 0.85rem 0 0;
  font-size: clamp(2.2rem, 4.2vw, 3.3rem);
  color: #15294d;
  letter-spacing: -0.02em;
}

.center-head h3 span {
  color: #101627;
}

.center-head p {
  margin: 0.95rem auto 0;
  color: #6a758e;
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 860px;
}

.purpose-intro {
  text-align: center;
}



.purpose-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.purpose-card {
  background: #fff;
  border: 1px solid #e6ebf5;
  border-radius: 24px;
  padding: 2rem 1.9rem 1.8rem;
  box-shadow: 0 8px 30px rgba(22, 56, 127, 0.06);
  min-height: 470px;
  position: relative;
}

.purpose-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(160deg, #171f2e, #255dd5);
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 1.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 10px 20px rgba(19, 80, 211, 0.24);
}

.purpose-icon i {
  line-height: 1;
}

.purpose-card h4 {
  color: #1149c8;
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.35rem);
}

.purpose-card p {
  color: #4d5a75;
  line-height: 1.65;
  font-size: 1.16rem;
  margin: 0;
  max-width: 92%;
  position: relative;
  z-index: 1;
}

.purpose-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.purpose-list li {
  position: relative;
  padding-left: 2rem;
  color: #4d5a75;
}

.purpose-list li::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  font-style: normal;
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 0.06rem;
  color: #1858d7;
  font-size: 1.04rem;
}

.purpose-list li > span {
  display: block;
  font-size: 1.08rem;
  line-height: 1.5;
}

.purpose-list-detailed li {
  padding-left: 2.2rem;
}

.purpose-list-detailed li strong {
  display: block;
  color: #1e325b;
  font-size: 1.18rem;
  margin-bottom: 0.18rem;
}

.purpose-list-detailed li span {
  color: #66738f;
  font-size: 1rem;
  line-height: 1.45;
}

.inner-hero {
  padding: 4.4rem 0 3.3rem;
}

.about-hero {
background:
        linear-gradient(
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.65)
        ),
        url("https://i.pinimg.com/736x/e9/26/5f/e9265fbed7529fb4c80277965835abc5.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 5rem 0;
    color: #fff;
    /* text-align: center; */
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.about-hero h1 {
  margin: 1rem 0 0.65rem;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  letter-spacing: -0.02em;
}

.about-hero p {
  margin: 0;
  max-width: 760px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.about-page {
  padding: 2.3rem 0 4.8rem;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.45rem;
}

.about-links a {
  text-decoration: none;
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  background: #eaf1ff;
  color: #194fc6;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid #d5e2ff;
}

.about-block {
  background: #fff;
  border: 1px solid #e8edf7;
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 8px 24px rgba(16, 51, 122, 0.06);
  margin-bottom: 1rem;
}

.about-block h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #16336c;
}

.about-block p {
  margin: 0;
  color: #576684;
  line-height: 1.78;
  font-size: 1.04rem;
}

.why-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.why-list li {
  position: relative;
  padding-left: 1.9rem;
  color: #576684;
  line-height: 1.6;
}

.why-list li::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  font-style: normal;
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: #1957d2;
}

.footer {
  margin-top: 1.4rem;
  background: linear-gradient(rgba(5, 15, 35, 0.9), rgba(5, 15, 35, 0.94)), url(https://img.freepik.com/premium-vector/corporate-business-blue-wide-banner-design-background-abstract-3d-banner-design-with-dark-blue-technology-geometric-background-vector-illustration_181182-27942.jpg?semt=ais_hybrid);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #dce8ff;
  padding: 48px 0 16px;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  padding: 0 0 2rem;
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.25fr;
  gap: 2rem;
  align-items: start;
}

.footer-grid > div {
  min-width: 0;
}

.footer h5 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.15;
}

.footer a,
.footer p {
  color: #e1ebff;
  text-decoration: none;
  margin: 0 0 0.65rem;
  display: block;
  line-height: 1.55;
  font-size: 1rem;
}

.footer p i,
.footer a i {
  width: 18px;
  margin-right: 0.35rem;
  text-align: center;
}

.socials {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
  font-weight: 700;
  transition: all 0.25s ease;
}

.socials a:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
  padding: 1.2rem min(3vw, 2rem) 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  position: relative;
}

.footer-bottom p {
  margin: 0.2rem 0;
  font-size: 0.92rem;
  color: #d7e3ff;
}

.to-top {
  position: absolute;
  right: 14px;
  top: -20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0f47be;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

@media (max-width: 1120px) {
  .wrap {
    width: min(1320px, 96vw);
  }

  .brand img {
    height: 52px;
  }

  .menu a {
    padding: 0.48rem 0.68rem;
    font-size: 0.89rem;
  }

  .hero h2 {
    font-size: clamp(2.3rem, 5.7vw, 4rem);
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .btn {
    font-size: 0.94rem;
    padding: 0.78rem 1.12rem;
  }

  .hero-kicker {
    font-size: 0.92rem;
  }
}

@media (max-width: 920px) {
  .menu-btn {
    display: block;
  }

  .menu {
    display: none;
    position: absolute;
    left: 3vw;
    right: 3vw;
    top: 110px;
    background: #fff;
    border: 1px solid #dbe5f9;
    border-radius: 14px;
    padding: 0.7rem;
    box-shadow: 0 16px 35px rgba(18, 53, 126, 0.18);
  }

  .menu.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .menu-dropdown {
    width: 100%;
  }

  .submenu {
    position: static;
    min-width: unset;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 0.3rem;
    background: #f8faff;
    border-color: #e3eaf8;
    padding: 0.35rem;
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    padding-top: 108px;
  }

  .about-card,
  .purpose-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 1.3rem;
  }

  .purpose-card {
    min-height: auto;
    padding: 1.5rem 1.2rem 1.35rem;
  }

}

@media (max-width: 640px) {
  .nav-row {
    min-height: 70px;
  }

  .brand img {
    height: 46px;
  }

  .nav-login-btn {
    display: none;
  }

  .news-ticker {
    height: 24px;
  }

  .news-ticker-track {
    font-size: 0.76rem;
    gap: 0.7rem;
  }

  .hero-arrow {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding-top: 76px;
  }

  .hero-kicker {
    font-size: 0.9rem;
  }

  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .btn {
    padding: 0.72rem 1.05rem;
  }

  .about-card {
    padding: 1.2rem;
  }

  .about-left h3,
  .center-head h3 {
    font-size: 2rem;
  }

  .stats {
    gap: 0.9rem;
  }

  .stats b {
    font-size: 1.4rem;
  }

  .inner-hero {
    padding: 3.3rem 0 2.6rem;
  }

  .about-links a {
    width: 100%;
    text-align: center;
  }

  .about-block {
    padding: 1.2rem 1rem;
  }
}

/* About Page - screenshot style */
.about-page-body {
  margin: 0;
  background: #f2f4f9;
}

.about-main {
  overflow: hidden;
}

.about-top-strip {
  background: linear-gradient(90deg, #06317a, #0d55c8);
  color: #dfe9ff;
  font-size: 0.92rem;
}

.about-top-row {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-socials,
.about-contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.about-socials a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
}

.about-contact-line span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #f0f5ff;
  white-space: nowrap;
}

.about-hero-v2 {
  padding: 3.1rem 0 2rem;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: start;
}

.about-copy h1 {
  margin: 0;
  color: #0f2f68;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.about-title-line {
  margin: 1rem 0 1.3rem;
  display: block;
  width: 74px;
  height: 3px;
  border-radius: 999px;
  background: #1862d7;
}

.about-copy p {
  margin: 0 0 0.95rem;
  color: #233451;
  font-size: 1.03rem;
  line-height: 1.68;
}

.about-pill-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.about-pill-grid article {
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e4ebf8;
  box-shadow: 0 8px 24px rgba(17, 60, 140, 0.08);
  text-align: center;
  padding: 1.05rem 0.7rem;
}

.about-pill-grid i {
  font-size: 1.65rem;
  color: #1557cb;
}

.about-pill-grid h3 {
  margin: 0.6rem 0 0;
  font-size: 0.98rem;
  color: #183264;
  line-height: 1.3;
}

.about-hero-image-wrap {
  position: relative;
  padding: 24px 14px 12px;
}

.about-hero-frame {
  position: absolute;
  left: 74px;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: linear-gradient(145deg, #0a4ab900, #0f63e0);
}

.about-hero-image-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 470px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 42px rgba(11, 35, 87, 0.32);
}

.about-messages {
  padding: 1rem 0 3rem;
}

.message-stack {
  display: grid;
  gap: 1rem;
}

.message-card {
  background: #fff;
  border: 1px solid #e6ebf7;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(20, 53, 125, 0.07);
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(260px, 35%) 1fr;
  gap: 1.3rem;
  align-items: stretch;
}

.message-card.zigzag-left {
  margin-right: 2.2rem;
}

.message-card.zigzag-right {
  margin-left: 2.2rem;
  grid-template-columns: 1fr minmax(260px, 35%);
}

.message-card.zigzag-right .message-photo-wrap {
  order: 2;
}

.message-card.zigzag-right .message-content {
  order: 1;
  padding-right: 0;
  padding-left: 0.6rem;
}

.message-card.zigzag-right .message-content::after {
  right: auto;
  /* left: 0.1rem; */
}

.message-card.reveal-left,
.message-card.reveal-right {
  transition: opacity 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.message-photo-wrap {
  position: relative;
}

.message-photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: 286px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgb(10, 33, 82);
}

.message-badge {
  position: absolute;
  left: 0.35rem;
  bottom: 0.35rem;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(145deg, #004bb6, #0d6bf5);
  box-shadow: 0 10px 20px rgba(0, 62, 159, 0.32);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.35rem;
}

.message-content {
  position: relative;
  padding-right: 0.6rem;
}

.message-content::after {
  content: "";
  position: absolute;
  right: 0.1rem;
  top: 0.4rem;
  width: 18px;
  height: 78px;
  background-image: radial-gradient(circle, #8fbaff 2px, transparent 2px);
  background-size: 9px 9px;
  opacity: 0.8;
}

.message-content h2 {
  margin: 0;
  color: #123670;
  font-size: clamp(1.8rem, 3vw, 2.25rem);
}

.message-content h2::after {
  content: "";
  margin-top: 0.45rem;
  display: block;
  width: 68px;
  height: 3px;
  border-radius: 999px;
  background: #1863d7;
}

.message-content p {
  margin: 0.7rem 0 0;
  color: #2f4160;
  font-size: 1rem;
  line-height: 1.63;
}

.message-content .message-quote {
  color: #185fcd;
  font-weight: 600;
}

.message-content .message-sign {
  color: #142d58;
  font-size: 1.15rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.message-content .message-highlight {
  color: #0f50be;
  font-weight: 700;
}

.about-footer {
  margin-top: 1rem;
  background: linear-gradient(120deg, #031743, #0b3e9a 55%, #0d47ad);
}

.about-footer .footer-grid {
  gap: 2.2rem;
}

.about-footer h5 {
  position: relative;
  margin-bottom: 1.55rem;
}

.about-footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: #2e88ff;
}

.about-footer .socials a {
  font-size: 1rem;
}

.about-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.about-footer .footer-bottom p {
  margin: 0;
}

@media (max-width: 1120px) {
  .about-top-row {
    min-height: 40px;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-image-wrap {
    max-width: 780px;
  }

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

  .about-contact-line {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

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

  .message-card.zigzag-left,
  .message-card.zigzag-right {
    margin-left: 0;
    margin-right: 0;
  }

  .message-card.zigzag-right .message-photo-wrap,
  .message-card.zigzag-right .message-content {
    order: unset;
  }

  .message-card.zigzag-right .message-content {
    padding-left: 0;
    padding-right: 0.6rem;
  }

  .message-card.zigzag-right .message-content::after {
    left: auto;
    right: 0.1rem;
  }

  .message-photo-wrap img {
    min-height: 260px;
  }

  .message-content::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .about-top-row,
  .about-contact-line {
    flex-direction: column;
    align-items: center;
  }

  .about-top-row {
    padding: 0.5rem 0;
  }

  .about-contact-line {
    gap: 0.35rem;
  }

  .about-contact-line span {
    white-space: normal;
    justify-content: center;
    text-align: center;
  }

  .about-socials {
    width: 100%;
    justify-content: center;
  }

  .about-hero-v2 {
    padding: 2rem 0 1.2rem;
  }

  .about-pill-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-hero-image-wrap {
    padding: 12px 10px 0;
  }

  .about-hero-frame {
    left: 20px;
  }

  .about-hero-image-wrap img {
    min-height: 280px;
  }

  .message-content h2 {
    font-size: 1.55rem;
  }

  .about-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .about-copy h1 {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .about-pill-grid {
    grid-template-columns: 1fr;
  }

  .message-card {
    padding: 0.75rem;
    gap: 0.85rem;
  }

  .message-photo-wrap img {
    min-height: 220px;
  }

  .message-badge {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .message-content p {
    font-size: 0.95rem;
  }
}

/* Hub School Page */
.hub-page-body {
  margin: 0;
  background: linear-gradient(180deg, #f4f7fc 0%, #eef3fb 100%);
}

.hub-main {
  overflow: hidden;
}

.hub-hero {
  padding: 2.8rem 0 1.7rem;
}

.hub-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.6rem;
  align-items: center;
}

.hub-hero-copy h1 {
  margin: 1rem 0 0.55rem;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #0f2f68;
}

.hub-hero-copy .hub-kicker {
  margin: 0 0 1rem;
  color: #1f4fa6;
  font-size: 1.08rem;
  font-weight: 600;
}

.hub-hero-copy p {
  margin: 0;
  color: #2f4468;
  font-size: 1.04rem;
  line-height: 1.68;
}

.hub-hero-media {
  position: relative;
  border-radius: 20px;
  padding: 0.7rem;
  background: linear-gradient(145deg, #0e4db6, #1f75ef);
  box-shadow: 0 14px 34px rgba(11, 36, 91, 0.25);
}

.hub-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 380px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.hub-content {
  padding: 0.4rem 0 3rem;
}

.hub-stack {
  display: grid;
  gap: 1rem;
}

.hub-block {
  background: #fff;
  border: 1px solid #e5ebf7;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(20, 55, 128, 0.06);
  padding: 1.4rem 1.35rem;
}

.hub-block h2 {
  margin: 0;
  color: #133772;
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
}

.hub-block h2::after {
  content: "";
  display: block;
  width: 62px;
  height: 3px;
  border-radius: 999px;
  background: #1f67da;
  margin-top: 0.45rem;
}

.hub-block p {
  margin: 0.85rem 0 0;
  color: #2e425f;
  font-size: 1rem;
  line-height: 1.7;
}

.hub-list {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.hub-list li {
  position: relative;
  padding-left: 1.8rem;
  color: #2f4566;
  line-height: 1.6;
}

.hub-list li::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #1759ce;
  font-size: 1rem;
}

.hub-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hub-mini {
  height: 100%;
}

@media (max-width: 1120px) {
  .hub-hero-grid {
    grid-template-columns: 1fr;
  }

  .hub-hero-media {
    max-width: 780px;
  }
}

@media (max-width: 920px) {
  .hub-duo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hub-hero {
    padding: 2rem 0 1rem;
  }

  .hub-hero-copy .hub-kicker {
    font-size: 0.98rem;
  }

  .hub-hero-media {
    padding: 0.5rem;
  }

  .hub-hero-media img {
    min-height: 230px;
  }

  .hub-block {
    padding: 1.1rem 0.95rem;
  }

  .hub-list li {
    padding-left: 1.5rem;
  }
}

/* Hub School Page - Style 2 */
.hub2-body {
  margin: 0;
  background: #f3f6fb;
}

.hub2-main {
  padding: 1.4rem 0 0;
}

.hub2-banner {
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background:
    linear-gradient(rgba(5, 18, 45, 0.75), rgba(5, 18, 45, 0.75)),
    url("https://i.pinimg.com/736x/d9/0d/92/d90d921f859121ca4b277e3f3787ac76.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;  box-shadow: 0 12px 28px rgba(8, 34, 87, 0.22);
}

.hub2-banner-copy {
  color: #fff;
  padding: 2.2rem 2.1rem;
  position: relative;
}

.hub2-kicker {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.55rem;
}

.hub2-banner-copy h1 {
  margin: 0.65rem 0;
  line-height: 1.02;
  letter-spacing: 0.01em;
  font-size: clamp(2.45rem, 4.4vw, 4rem);
}

.hub2-meta {
  margin: 0;
  font-size: 1.2rem;
  color: rgba(237, 246, 255, 0.95);
}

.hub2-banner-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.hub2-section {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.hub2-card {
  background: #fff;
  border: 1px solid #e4ebf7;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(20, 57, 132, 0.06);
  padding: 1.25rem 1.2rem;
}

.hub2-card h2 {
  margin: 0;
  color: #114093;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
}

.hub2-card p {
    /* margin: 3.65rem 0 0; */
    color: #2f4363;
    font-size: 1rem;
    line-height: 1.65;
}

.hub2-card-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.hub2-head-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #0c52be, #2e80f5);
  font-size: 1.4rem;
}

.hub2-about-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.2rem;
}

.hub2-about-media img {
  width: 100%;
  height: 279px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(13, 39, 91, 0.18);
}

.hub2-pill-row {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.hub2-pill-row div {
  border: 1px solid #ebf0fb;
  border-radius: 12px;
  padding: 0.75rem 0.55rem;
  text-align: center;
}

.hub2-pill-row i {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.08rem;
  background: linear-gradient(145deg, #0d52be, #2e7ceb);
}

.hub2-pill-row span {
  margin-top: 0.45rem;
  display: block;
  color: #1e2d49;
  font-size: 0.88rem;
  font-weight: 600;
}

.hub2-blue-card {
  background: linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
}

.hub2-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.1rem;
  align-items: center;
}

.hub2-photo img {
  width: 100%;
  min-height: 270px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(13, 37, 88, 0.16);
}

.hub2-copy h2,
.hub2-mv-text h2,
.hub2-why-card h2,
.hub2-parent-card h2,
.hub2-mini-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.hub2-check-list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  columns: 2;
  column-gap: 1.2rem;
}

.hub2-check-list li {
  break-inside: avoid;
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.52rem;
  color: #294362;
  line-height: 1.55;
}

.hub2-check-list li::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0;
  color: #1f67da;
}

.hub2-mv-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  align-items: center;
}

.hub2-mv-text section + section {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid #e7edfa;
}

.hub2-mv-text h2 i {
  color: #256cd8;
  margin-right: 0.4rem;
}

.hub2-mv-photo img {
  width: 100%;
  height: 290px;
  border-radius: 12px;
  object-fit: cover;
}

.hub2-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hub2-mini-card {
  display: flex;
  flex-direction: column;
}

.hub2-mini-content {
  min-height: 255px;
}

.hub2-mini-content p,
.hub2-mini-content .hub2-check-list {
  margin-top: 0.7rem;
}

.hub2-mini-card img {
  margin-top: auto;
  width: 100%;
  height: 235px;
  border-radius: 11px;
  object-fit: cover;
}

.hub2-green {
  color: #208236 !important;
}

.hub2-orange {
  color: #d88a00 !important;
}

.hub2-orange-check li::before {
  color: #d88a00;
}

.hub2-why-card {
  text-align: center;
  background: linear-gradient(180deg, #f7fbff 0%, #eff5ff 100%);
}

.hub2-why-grid {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}

.hub2-why-grid div {
  background: #fff;
  border: 1px solid #e8eefb;
  border-radius: 12px;
  padding: 0.75rem 0.55rem;
}

.hub2-why-grid i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, #0d52be, #2e80ef);
  color: #fff;
  font-size: 1.15rem;
}

.hub2-why-grid p {
  margin-top: 0.55rem;
  font-size: 0.91rem;
  color: #263f5e;
  font-weight: 600;
}

.hub2-parent-card {
  display: grid;
  grid-template-columns: 0.36fr 1fr auto;
  gap: 0.95rem;
  align-items: center;
}

.hub2-parent-card img {
  width: 100%;
  min-height: 120px;
  border-radius: 12px;
  object-fit: cover;
}

.hub2-parent-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ffe2eb;
  display: grid;
  place-items: center;
  color: #df2c73;
  font-size: 2rem;
}

@media (max-width: 1150px) {
  .hub2-banner {
    grid-template-columns: 1fr;
  }

  .hub2-about-grid,
  .hub2-split,
  .hub2-mv-grid,
  .hub2-parent-card {
    grid-template-columns: 1fr;
  }

  .hub2-parent-icon {
    margin: 0 auto;
  }
}

@media (max-width: 920px) {
  .hub2-pill-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub2-check-list {
    columns: 1;
  }

  .hub2-duo {
    grid-template-columns: 1fr;
  }

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

  .hub2-mini-content {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .hub2-main {
    padding-top: 0.8rem;
  }

  .hub2-banner-copy {
    padding: 1.4rem 1rem;
  }

  .hub2-kicker {
    font-size: 1.1rem;
  }

  .hub2-banner-copy h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .hub2-meta {
    font-size: 0.95rem;
  }

  .hub2-card {
    padding: 1rem 0.8rem;
  }

  .hub2-pill-row,
  .hub2-why-grid {
    grid-template-columns: 1fr;
  }

  .hub2-parent-icon {
    width: 68px;
    height: 68px;
    font-size: 1.5rem;
  }
}

/* Admission Pages */
.admission-page-body {
  margin: 0;
  background: linear-gradient(180deg, #f4f7fc 0%, #edf3fb 100%);
}

.admission-hero {
  padding: 2.6rem 0 1.4rem;
}

.admission-hero h1 {
  margin: 0.9rem 0 0.5rem;
  color: #0f2f67;
  font-size: clamp(2rem, 4vw, 3rem);
}

.admission-hero p {
  margin: 0;
  max-width: 780px;
  color: #35507e;
  font-size: 1.05rem;
}

.admission-content {
  padding: 0.7rem 0 2.8rem;
}

.admission-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.admission-card {
  background: #fff;
  border: 1px solid #e4ebf8;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(20, 55, 128, 0.06);
  padding: 1.2rem 1.1rem;
}

.admission-card-wide {
  grid-column: 1 / -1;
}

.admission-card h2 {
  margin: 0;
  color: #153a76;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.admission-card h2::after {
  content: "";
  display: block;
  margin-top: 0.45rem;
  width: 62px;
  height: 3px;
  border-radius: 999px;
  background: #1c67da;
}

.admission-card p {
  margin: 0.8rem 0 0;
  color: #314867;
  line-height: 1.65;
}

.admission-steps,
.admission-list {
  margin: 0.9rem 0 0;
  padding-left: 1.3rem;
  color: #2f4565;
  display: grid;
  gap: 0.55rem;
}

.admission-steps li {
  line-height: 1.62;
}

.admission-form {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.75rem;
}

.admission-form label {
  display: grid;
  gap: 0.35rem;
  color: #264069;
  font-weight: 600;
  font-size: 0.93rem;
}

.admission-form input,
.admission-form select {
  border: 1px solid #d8e2f6;
  border-radius: 10px;
  padding: 0.62rem 0.72rem;
  font: inherit;
  color: #223d64;
  background: #fff;
}

@media (max-width: 920px) {
  .admission-grid {
    grid-template-columns: 1fr;
  }
}

/* Admission Process - Styled Layout */
.admx-main {
  position: relative;
  background: #f7f9fe;
}

.admx-title-wrap {
  padding: 3.5rem 0 1.5rem;
}

.admx-title {
  margin: 0;
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.01em;
  font-weight: 800;
}

.admx-title span {
  color: #0e3b79;
}

.admx-title em {
  color: #ef8b06;
  font-style: normal;
  margin-left: 0.5rem;
}

.admx-hero {
  margin-top: 1.5rem;
  border: 1px solid #dfE8f8;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(120deg, #ffffff 0%, #f3f7ff 100%);
  box-shadow: 0 16px 32px rgba(17, 57, 130, 0.08);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
}

.admx-hero-copy {
  padding: 3.5rem 3rem;
}

.admx-kicker {
  margin: 0;
  color: #0f3f87;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admx-hero-copy h2 {
  margin: 1rem 0 0;
  color: #0b336f;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.2;
}

.admx-hero-copy > p {
  margin: 1.2rem 0 0;
  color: #36527a;
  line-height: 1.7;
  font-size: 1.1rem;
}

.admx-hero-tags {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.admx-hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  border: 1px solid #d8e5fb;
  background: #fff;
  color: #1b467f;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.admx-hero-tags i {
  color: #1f64d5;
  font-size: 1.1rem;
}

.admx-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  display: block;
}

.admx-content {
  padding: 3.5rem 0 5rem;
}

.admx-grid-top {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: stretch;
}

.admx-flow-card,
.admx-info-card,
.admx-final-card {
  background: #fff;
  border: 1px solid #e4ebf8;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(21, 58, 126, 0.06);
}

.admx-flow-card {
  padding: 2.5rem;
}

.admx-flow-card h2 {
  margin: 0;
  color: #0f3d82;
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
}

.admx-flow-card h2 i {
  color: #2d67c9;
  margin-right: 0.5rem;
}

.admx-flow-card > p {
  margin: 0.8rem 0 2rem;
  color: #3a5479;
  font-size: 1.05rem;
}

.admx-flow-image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e1e9f8;
  box-shadow: 0 8px 18px rgba(12, 41, 90, 0.12);
}

.admx-info-card {
  padding: 2.5rem;
}

.admx-info-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 2.7rem);
  color: #0e3d80;
}

.admx-info-card h2 i {
  color: #3569bf;
  margin-right: 0.5rem;
}

.admx-info-card > p {
  margin: 1rem 0 2rem;
  color: #324f75;
  line-height: 1.7;
  font-size: 1.05rem;
}

.admx-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.admx-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  border-top: 1px dashed #e4ebf7;
  padding-top: 1.5rem;
}

.admx-points li:first-child {
  border-top: 0;
  padding-top: 0;
}

.admx-points i {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(145deg, #5f8f16, #7ab71e);
  box-shadow: 0 6px 12px rgba(95, 143, 22, 0.2);
}

.admx-points li:nth-child(2) i {
  background: linear-gradient(145deg, #2f68c3, #1f87de);
  box-shadow: 0 6px 12px rgba(47, 104, 195, 0.2);
}

.admx-points li:nth-child(3) i {
  background: linear-gradient(145deg, #e57d00, #f3a426);
  box-shadow: 0 6px 12px rgba(229, 125, 0, 0.2);
}

.admx-points li:nth-child(4) i {
  background: linear-gradient(145deg, #5b52b6, #7b67d8);
  box-shadow: 0 6px 12px rgba(91, 82, 182, 0.2);
}

.admx-points p {
  margin: 0;
  color: #2e4769;
  line-height: 1.6;
  font-size: 1.05rem;
}

.admx-points strong {
  color: #0f3c80;
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.admx-final-card {
  margin-top: 2rem;
  padding: 2.5rem;
  position: relative;
}

.admx-highlight-card {
  padding: 2.5rem;
}

.admx-highlight-grid,
.admx-highlight-grid-alt {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.admx-highlight-grid {
  grid-template-columns: 1fr 1fr;
}

.admx-highlight-grid-alt {
  grid-template-columns: 1fr 1fr;
}

.admx-highlight-grid img,
.admx-highlight-grid-alt img {
  width: 100%;
  min-height: 280px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.admx-highlight-grid h2,
.admx-highlight-grid-alt h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: #0e3d80;
}

.admx-highlight-grid h2 i,
.admx-highlight-grid-alt h2 i {
  color: #ef8b06;
  margin-right: 0.5rem;
}

.admx-highlight-grid > div > p,
.admx-highlight-grid-alt > div > p {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  color: #36527a;
  line-height: 1.7;
}

.admx-final-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.admx-final-list li {
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: #f8fbff;
  border: 1px solid #e4ecfa;
  color: #2c476a;
  line-height: 1.6;
  font-size: 1.05rem;
}

.admx-final-list strong {
  color: #1f4da1;
  font-weight: 700;
}

.admx-final-card > p {
  margin: 1.5rem 0 0;
  color: #2f4667;
  line-height: 1.7;
  font-size: 1.1rem;
}

.admx-sign {
  font-size: 1.15rem !important;
  color: #102f61 !important;
  margin-top: 1.5rem !important;
}

.admx-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.admx-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  border-radius: 12px;
  background: linear-gradient(145deg, #0a4ab5, #0e66da);
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(13, 74, 179, 0.27);
  transition: all 0.3s ease;
}

.admx-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(13, 74, 179, 0.35);
  color: #fff;
}

.admx-cta-alt {
  background: linear-gradient(145deg, #0f7f48, #1ca364);
  box-shadow: 0 8px 18px rgba(23, 125, 74, 0.27);
}

.admx-cta-alt:hover {
  box-shadow: 0 12px 24px rgba(23, 125, 74, 0.35);
}

@media (max-width: 1120px) {
  .admx-hero {
    grid-template-columns: 1fr;
  }
  
  .admx-hero-media img {
    min-height: 300px;
  }

  .admx-grid-top {
    grid-template-columns: 1fr;
  }

  .admx-highlight-grid,
  .admx-highlight-grid-alt {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .admx-title-wrap {
    padding: 2.5rem 0 1rem;
  }
  
  .admx-hero-copy {
    padding: 2rem 1.5rem;
  }
  
  .admx-content {
    padding: 2rem 0 3rem;
  }
  
  .admx-flow-card, 
  .admx-info-card, 
  .admx-final-card, 
  .admx-highlight-card {
    padding: 1.5rem;
  }

  .admx-points li {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .admx-points i {
    width: 48px;
    height: 48px;
  }
}

/* Online Admission - Styled Layout */
.ola-body {
  margin: 0;
  background: linear-gradient(180deg, #f7faff 0%, #edf3fb 100%);
}

.ola-main {
  padding-bottom: 5rem;
}

.ola-hero {
  margin-top: 2rem;
  border-radius: 20px;
  border: 1px solid #e2eaf8;
  background: linear-gradient(120deg, #f7faff 0%, #eef4fd 55%, #ffffff 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 42%);
  align-items: center;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 16px 32px rgba(17, 57, 130, 0.08);
}

.ola-hero-copy {
  padding: 3.5rem 3.5rem;
  max-width: 860px;
}

.ola-hero-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: #0e3a7a;
  letter-spacing: -0.01em;
}

.ola-hero-copy h1 span {
  color: #1d74db;
}

.ola-hero-copy p {
  margin: 1.2rem 0 0;
  color: #29466f;
  font-size: 1.25rem;
  line-height: 1.6;
}

.ola-quick-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.ola-action-card {
  min-width: 240px;
  text-decoration: none;
  color: #143d7a;
  background: #ffffff;
  border: 1px solid #dfe7f7;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 20px rgba(16, 55, 128, 0.08);
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.ola-action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(16, 55, 128, 0.12);
}

.ola-action-card i {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #1254bf, #2377e5);
  color: #fff;
  font-size: 1.6rem;
}

.ola-action-card.ola-action-green i {
  background: linear-gradient(145deg, #2b9f29, #5abd31);
}

.ola-hero-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2.5rem;
  background: radial-gradient(circle at 16% 34%, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.08));
}

.ola-hero-image img {
  width: min(100%, 420px);
  max-width: 420px;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(16, 52, 118, 0.18);
}

.ola-section {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.8rem;
}

.ola-instruction-card {
  background: #fff;
  border: 1px solid #d5e2fb;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(15, 48, 108, 0.06);
  padding: 2.5rem;
}

.ola-instruction-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.1vw, 2.4rem);
  color: #0f3d84;
}

.ola-instruction-card h2 i {
  color: #1f67da;
  margin-right: 0.5rem;
}

.ola-instruction-card p {
  margin: 1rem 0 0;
  color: #304d74;
  line-height: 1.7;
  font-size: 1.05rem;
}

.ola-instruction-card ol {
  margin: 1.5rem 0 0;
  padding-left: 1.5rem;
  color: #2b4668;
  display: grid;
  gap: 0.8rem;
  font-size: 1.05rem;
}

.ola-form {
  margin-top: 1rem;
  display: grid;
  gap: 2rem;
}

.ola-form-block {
  background: #fff;
  border: 1px solid #dee7f7;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(17, 55, 126, 0.06);
  padding: 2.5rem;
}

.ola-form-block h3 {
  margin: 0 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: #0d3b82;
}

.ola-form-block h3 span {
  min-width: 48px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #114fb8, #1e75e2);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(17, 79, 184, 0.25);
}

.ola-form-grid {
  display: grid;
  gap: 1.5rem;
}

.ola-form-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.ola-form-grid label {
  display: grid;
  gap: 0.5rem;
  color: #2d466e;
  font-size: 1rem;
  font-weight: 600;
}

.ola-form-grid input,
.ola-form-grid select {
  width: 100%;
  height: 48px;
  border: 1px solid #d3def3;
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  font: inherit;
  font-size: 1rem;
  color: #243f62;
  background: #fdfdff;
  transition: all 0.3s ease;
}

.ola-form-grid input:focus,
.ola-form-grid select:focus {
  outline: none;
  border-color: #1e75e2;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 117, 226, 0.15);
}

.ola-radio-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: #2e486d;
}

.ola-radio-row p {
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
}

.ola-radio-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
}

.ola-radio-row label input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.ola-note {
  margin: 0.2rem 0 1rem;
  color: #38547b;
  font-size: 1rem;
}

.ola-upload-box {
  border: 2px dashed #bed0f1;
  border-radius: 16px;
  min-height: 140px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #3f5e8b;
  background: #fafcff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ola-upload-box:hover {
  border-color: #1e75e2;
  background: #f4f8ff;
}

.ola-upload-box.small {
  margin-top: 1rem;
  min-height: 100px;
}

.ola-upload-box i {
  font-size: 2rem;
  color: #1e75e2;
  margin-bottom: -0.5rem;
}

.ola-upload-box p {
  margin: 0;
  font-size: 1.05rem;
}

.ola-submit-btn {
  justify-self: start;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, #0f4eb6, #1e73e0);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9rem 1.8rem;
  box-shadow: 0 10px 20px rgba(13, 73, 180, 0.24);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.ola-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(13, 73, 180, 0.35);
}

@media (max-width: 1120px) {
  .ola-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ola-form-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ola-form-grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ola-hero-copy {
    padding: 2.5rem 1.5rem;
  }

  .ola-hero-copy p {
    font-size: 1.1rem;
  }

  .ola-action-card {
    min-width: 100%;
  }

  .ola-hero-image {
    padding: 1.5rem 1.5rem 2rem;
  }

  .ola-hero-image img {
    width: min(100%, 310px);
    max-height: 250px;
  }

  .ola-form-grid.cols-4,
  .ola-form-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .ola-instruction-card,
  .ola-form-block {
    padding: 1.8rem 1.2rem;
  }
}

/* Academics Dropdown Pages */
.academic-page-body {
  margin: 0;
  background: linear-gradient(180deg, #f6f9ff 0%, #edf3fb 100%);
}

.academic-hero {
  padding: 2.5rem 0 1.35rem;
}

.academic-hero h1 {
  margin: 0.85rem 0 0.5rem;
  color: #113a79;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
}

.academic-hero p {
  margin: 0;
  max-width: 860px;
  color: #34517d;
  font-size: 1.05rem;
  line-height: 1.65;
}

.academic-content {
  padding: 0.6rem 0 2.8rem;
}

.academic-card {
  background: #fff;
  border: 1px solid #e3ebf8;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(20, 55, 128, 0.06);
  padding: 1.2rem 1.1rem;
}

.academic-card h2 {
  margin: 0;
  color: #15407f;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.academic-card h2:not(:first-child) {
  margin-top: 1.15rem;
}

.academic-card h2::after {
  content: "";
  display: block;
  margin-top: 0.45rem;
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: #1f67da;
}

.academic-card p {
  margin: 0.75rem 0 0;
  color: #2f4769;
  line-height: 1.62;
}

.academic-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.academic-list li {
  position: relative;
  padding-left: 1.8rem;
  color: #2f4769;
  line-height: 1.6;
}

.academic-list li::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #1f67da;
}

/* Privacy Policy Page */
.privacy-page-body {
  margin: 0;
  background: #f6f9ff;
}

.privacy-main {
  background:
    radial-gradient(circle at 8% 4%, rgba(31, 103, 218, 0.1), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f6f9ff 100%);
}

.privacy-hero {
  padding: 3.5rem 0 2rem;
}

.privacy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2rem;
  align-items: center;
}

.privacy-hero h1 {
  margin: 0.9rem 0 0.7rem;
  color: #0d3473;
  font-size: clamp(2.35rem, 4.8vw, 4rem);
  line-height: 1.1;
}

.privacy-hero p {
  margin: 0;
  max-width: 920px;
  color: #36527a;
  font-size: 1.08rem;
  line-height: 1.72;
}

.privacy-summary-card {
  background: #ffffff;
  border: 1px solid #dfe8f8;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 14px 30px rgba(17, 57, 130, 0.08);
}

.privacy-summary-card i {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, #0e4fb9, #1e75e2);
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.privacy-summary-card strong,
.privacy-summary-card span {
  display: block;
}

.privacy-summary-card strong {
  color: #0c2f66;
  font-size: 1.05rem;
}

.privacy-summary-card span {
  margin-top: 0.25rem;
  color: #5b6f90;
}

.privacy-content {
  padding: 1rem 0 4.5rem;
}

.privacy-layout {
  /* display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2rem; */
  align-items: start;
}

.privacy-sidebar {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 0.35rem;
  background: #ffffff;
  border: 1px solid #e3ebf8;
  border-radius: 16px;
  padding: 0.75rem;
  box-shadow: 0 10px 24px rgba(20, 55, 128, 0.06);
}

.privacy-sidebar a {
  text-decoration: none;
  color: #2f4c75;
  border-radius: 10px;
  padding: 0.72rem 0.8rem;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
}

.privacy-sidebar a:hover {
  color: #0f4eb6;
  background: #eef5ff;
}

.privacy-document {
  display: grid;
  gap: 1.15rem;
}

.privacy-section {
  background: #ffffff;
  border: 1px solid #e4ebf8;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 10px 24px rgba(20, 55, 128, 0.05);
  scroll-margin-top: 130px;
}

.privacy-section h2,
.privacy-section h3,
.privacy-section h4,
.privacy-section p,
.privacy-section ul,
.privacy-section dl {
  margin-left: 0;
  margin-right: 0;
}

.privacy-section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #123d7e;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.privacy-section h2::after {
  content: "";
  display: block;
  width: 62px;
  height: 3px;
  border-radius: 999px;
  background: #1f67da;
  margin-top: 0.5rem;
}

.privacy-section h3 {
  margin-top: 1.65rem;
  margin-bottom: 0.6rem;
  color: #173b73;
  font-size: 1.28rem;
}

.privacy-section h4 {
  margin-top: 1.2rem;
  margin-bottom: 0.45rem;
  color: #203c68;
  font-size: 1.08rem;
}

.privacy-section p,
.privacy-section li,
.privacy-definitions dd {
  color: #334b6f;
  font-size: 1.01rem;
  line-height: 1.72;
}

.privacy-section p {
  margin-top: 0;
  margin-bottom: 0.95rem;
}

.privacy-updated {
  display: inline-flex;
  color: #0f4eb6 !important;
  font-weight: 700;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: #edf4ff;
  border: 1px solid #d9e6fb;
}

.privacy-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  margin-top: 0.9rem;
  margin-bottom: 1.2rem;
}

.privacy-list li {
  position: relative;
  padding-left: 1.9rem;
}

.privacy-list li::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0.08rem;
  color: #1f67da;
}

.privacy-list strong {
  color: #173b73;
}

.privacy-definitions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.privacy-definitions dt {
  color: #123d7e;
  font-size: 1.03rem;
  font-weight: 800;
}

.privacy-definitions dd {
  margin: -0.35rem 0 0;
  padding: 0 0 0.75rem;
  border-bottom: 1px solid #edf2f9;
}

.privacy-definitions dd:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.privacy-contact-card {
  background: linear-gradient(145deg, #ffffff 0%, #f3f8ff 100%);
}

.privacy-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.privacy-contact-grid a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid #dfe8f8;
  background: #ffffff;
  color: #173b73;
  text-decoration: none;
  font-weight: 700;
}

.privacy-contact-grid a:hover {
  border-color: #bcd0f4;
  background: #eef5ff;
}

.privacy-contact-grid i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #ffffff;
  background: linear-gradient(145deg, #0e4fb9, #1e75e2);
}

.privacy-contact-grid span {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 1020px) {
  .privacy-hero-grid,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-summary-card {
    max-width: 360px;
  }

  .privacy-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .privacy-hero {
    padding: 2.4rem 0 1.4rem;
  }

  .privacy-sidebar,
  .privacy-contact-grid {
    grid-template-columns: 1fr;
  }

  .privacy-section {
    padding: 1.35rem 1rem;
  }
}

/* Curriculum Page */
.curriculum-page-body {
  margin: 0;
  background: linear-gradient(180deg, #f3f6fc 0%, #eef3fa 100%);
  color: #1d335a;
}

.curriculum-topline {
  background: linear-gradient(90deg, #02183e 0%, #062f79 100%);
  color: #dbe8ff;
}

.curriculum-topline-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.curriculum-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.curriculum-socials a {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  text-decoration: none;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.curriculum-socials a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.17);
}

.curriculum-contactline {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.curriculum-contactline span {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.curriculum-mainbar {
  box-shadow: 0 10px 30px rgba(9, 45, 110, 0.06);
}

.curriculum-brand {
  gap: 0.7rem;
}

.curriculum-brand img {
  height: 74px;
}

.curriculum-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.curriculum-brand-copy strong {
  color: #123270;
  font-size: 1.08rem;
  letter-spacing: 0.3px;
}

.curriculum-brand-copy small {
  color: #3f5b8f;
  font-size: 0.83rem;
}

.curriculum-hero {
  padding: 2.8rem 0 1.65rem;
}

.curriculum-hero .wrap {
  text-align: center;
}

.curriculum-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  letter-spacing: 1px;
}

.curriculum-hero h1::after {
  content: "";
  display: block;
  width: 94px;
  height: 5px;
  border-radius: 999px;
  margin: 0.58rem auto 0;
  background: #1a1ef6;
}

.curriculum-hero p {
  margin: 1rem auto 0;
  max-width: 930px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #3d5277;
}

.curriculum-stage-section {
  padding: 0.2rem 0 3.2rem;
}

.stage-card {
  --accent: #041a45;
  --accent-soft: rgba(31, 102, 222, 0.08);
  background: #fff;
  border: 1px solid #dfebfb;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(18, 53, 118, 0.505);
  padding: 1.05rem;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.2rem;
  margin-bottom: 1.25rem;
}

.stage-reverse .stage-copy {
  order: 2;
}

.stage-reverse .stage-media {
  order: 1;
}

/* .theme-blue {
  --accent: #1f66de;
  --accent-soft: rgba(31, 102, 222, 0.09);
}

.theme-green {
  --accent: #1f8e4f;
  --accent-soft: rgba(31, 142, 79, 0.09);
}

.theme-purple {
  --accent: #6f4dd9;
  --accent-soft: rgba(111, 77, 217, 0.1);
}

.theme-orange {
  --accent: #f28a1d;
  --accent-soft: rgba(242, 138, 29, 0.1);
} */

.stage-copy {
      padding: 1.2rem 3.38rem;
}

.stage-title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  margin-bottom: 0.8rem;
}

.stage-index {
  min-width: 54px;
  height: 54px;
  padding: 0 0.5rem;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  box-shadow: 0 12px 24px rgba(12, 34, 81, 0.19);
}

.stage-title-row h2 {
  margin: 0.2rem 0 0;
  color: var(--accent);
  font-size: clamp(1.42rem, 2.5vw, 2rem);
}

.stage-grades {
  margin: 0.08rem 0 0;
  color: #40557a;
  font-weight: 600;
  font-size: 1.1rem;
}

.stage-block {
  margin-top: 0.74rem;
}

.stage-block h3 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.52rem;
  color: var(--accent);
  font-size: 1.14rem;
}

.stage-block h3 i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
}

.stage-block ul {
  margin: 0.52rem 0 0;
  padding-left: 1rem;
  color: #243f66;
  line-height: 1.66;
  font-size: 1rem;
}

.stage-block li + li {
  margin-top: 0.18rem;
}

.stage-media {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  height: 370px;
  box-shadow: 0 16px 30px rgba(10, 37, 88, 0.544);
  border: 1px solid #d7e6fa;
  animation: curriculumFloat 5.8s ease-in-out infinite;
  will-change: transform;
}

.stage-media::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 8px;
  background: var(--accent);
  border-bottom-left-radius: 12px;
  z-index: 2;
}

.stage-media::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34%;
  height: 8px;
  background: var(--accent);
  border-top-right-radius: 12px;
  z-index: 2;
}

.stage-media img {
  width: 100%;
  height: 370px;
  display: block;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgb(43, 1, 1);
}

.curriculum-pillars {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pillar-card {
  --accent:#041a45;
  --accent-soft: rgba(22, 126, 164, 0.11);
  background: #fff;
  border-radius: 20px;
  border: 1px solid #d8e7fb;
  box-shadow: 0 10px 24px rgba(13, 46, 102, 0.06);
  padding: 1rem 1rem 0.78rem;
  display: flex;
  flex-direction: column;
}
/* 
.theme-cyan {
  --accent: #1f93b5;
  --accent-soft: rgba(31, 147, 181, 0.11);
}

.theme-royal {
  --accent: #2654d7;
  --accent-soft: rgba(38, 84, 215, 0.11);
}

.theme-pink {
  --accent: #ef416f;
  --accent-soft: rgba(239, 65, 111, 0.13);
} */

.pillar-head {
  display: flex;
  gap: 0.72rem;
  align-items: center;
}

.pillar-head .stage-index {
  min-width: 44px;
  height: 44px;
  font-size: 1.28rem;
  border-radius: 12px;
}

.pillar-head h3 {
  margin: 0;
  color: var(--accent);
  font-size: 1.55rem;
  line-height: 1.12;
}

.pillar-icon {
  margin-top: 0.85rem;
  color: var(--accent);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 2rem;
}

.pillar-card img {
  margin-top: 0.85rem;
  border-radius: 14px;
  border: 1px solid #d7e6f7;
  width: 100%;
  height: 152px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(13, 44, 96, 0.2);
  animation: curriculumFloatSoft 6.2s ease-in-out infinite;
  will-change: transform;
}

.stage-card:nth-child(2) .stage-media,
.stage-card:nth-child(4) .stage-media {
  animation-delay: 0.9s;
}

.pillar-card:nth-child(2) img {
  animation-delay: 0.6s;
}

.pillar-card:nth-child(3) img {
  animation-delay: 1.1s;
}

@keyframes curriculumFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes curriculumFloatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stage-media,
  .pillar-card img {
    animation: none;
  }
}

.pillar-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.05rem;
  color: #294365;
  line-height: 1.7;
  flex: 1;
}

.pillar-card::after {
  content: "";
  display: block;
  margin-top: 0.7rem;
  width: 48%;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
}

.curriculum-footer {
  margin-top: 0;
}

.curriculum-footer .socials a {
  font-size: 1rem;
}

.curriculum-footer-bottom {
  position: relative;
}

.curriculum-footer-bottom .to-top {
  position: absolute;
  right: 1.3rem;
  bottom: 1rem;
  top: auto;
}

@media (max-width: 1220px) {
  .curriculum-brand-copy {
    display: none;
  }

  .stage-card {
    grid-template-columns: 1fr;
    padding: 0.92rem;
  }

  .stage-reverse .stage-copy,
  .stage-reverse .stage-media {
    order: initial;
  }

  .stage-media img {
    min-height: 290px;
  }

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

@media (max-width: 920px) {
  .curriculum-topline-inner {
    min-height: auto;
    padding: 0.72rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .curriculum-contactline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.89rem;
  }

  .curriculum-hero {
    padding: 2rem 0 1.2rem;
  }

  .curriculum-hero p {
    font-size: 1rem;
  }

  .stage-index {
    min-width: 46px;
    height: 46px;
    font-size: 1.4rem;
  }

  .stage-title-row h2 {
    font-size: 1.5rem;
  }

  .stage-grades {
    font-size: 1rem;
  }

  .pillar-head h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 700px) {
  .curriculum-socials a {
    width: 28px;
    height: 28px;
  }

  .curriculum-stage-section {
    padding-bottom: 2.5rem;
  }

  .stage-card {
    border-radius: 18px;
  }

  .stage-title-row {
    gap: 0.66rem;
  }

  .stage-block h3 {
    font-size: 1.02rem;
  }

  .stage-block ul {
    font-size: 0.95rem;
    padding-left: 0.92rem;
  }

  .stage-media img {
    min-height: 235px;
  }

  .curriculum-pillars {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    border-radius: 16px;
  }

  .pillar-icon {
    width: 50px;
    height: 50px;
    font-size: 1.7rem;
  }

  .curriculum-footer-bottom .to-top {
    right: 0.8rem;
    bottom: 0.7rem;
  }
}

/* House System Page */
.house-page-body {
  margin: 0;
  background: #f3f6fb;
}

.house-main {
  padding: 0.95rem 0 1.2rem;
}

.house-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(27, 90, 187, 0.35);
  background: linear-gradient(130deg, #083887 0%, #06327c 42%, #05285f 100%);
  color: #fff;
  text-align: center;
  padding: 1.6rem 1.25rem 1.45rem;
  box-shadow: 0 16px 34px rgba(8, 46, 108, 0.22);
}

.house-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 24% -10%, rgba(255, 255, 255, 0.2), transparent 54%);
  pointer-events: none;
}

.house-hero-card h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  color: #ffffff;
  line-height: 1.06;
}

.house-hero-card h1 span {
  color: #ffc423;
}

.house-hero-card h2 {
  margin: 0.45rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  color: #e9f2ff;
}

.house-hero-card h2::before,
.house-hero-card h2::after {
  content: "";
  width: 84px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 196, 35, 0.3), #ffc423, rgba(255, 196, 35, 0.3));
}

.house-hero-card p {
  margin: 1rem auto 0;
  max-width: 1080px;
  color: #ecf4ff;
  font-size: 1.08rem;
  line-height: 1.68;
}

.house-hero-watermark {
  position: absolute;
  right: 2rem;
  top: 1rem;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.08);
}

.house-vision-card {
  margin: 0.95rem auto 0;
  border-radius: 18px;
  border: 1px solid #d8e5fb;
  background: linear-gradient(120deg, #edf4ff, #f8fbff);
  box-shadow: 0 10px 24px rgba(11, 53, 120, 0.1);
  padding: 1.3rem 1.2rem;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 0.95rem;
  align-items: center;
  width: min(1320px, 92vw);
}

.house-vision-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto;
  background: radial-gradient(circle at 30% 24%, #2169de, #0b3f95);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2.25rem;
  box-shadow: 0 12px 22px rgba(10, 49, 119, 0.28);
}

.house-vision-copy {
  border-left: 1px solid rgba(12, 58, 134, 0.3);
  padding-left: 1.2rem;
}

.house-vision-copy h3 {
  margin: 0;
  color: #0f4294;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
}

.house-vision-copy p {
  margin: 0.4rem 0 0;
  color: #2f486d;
  font-size: 1.07rem;
  line-height: 1.62;
}

.house-cards {
  padding-top: 1rem;
}

.house-card {
  --house-accent: #f76707;
  --house-accent-dark: #bf4706;
  --house-bg: linear-gradient(130deg, #fff6ef, #fffdf9);
  border-radius: 18px;
  border: 1px solid #dfebfb;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 28px rgba(16, 54, 113, 0.1);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  margin-bottom: 1rem;
}

.house-card.reverse .house-card-media {
  order: 2;
}

.house-card.reverse .house-card-copy {
  order: 1;
}

.house-card-media img {
  width: 100%;
  height: 100%;
  min-height: 286px;
  object-fit: cover;
  display: block;
}

.house-card-copy {
  position: relative;
  padding: 1.35rem 1.45rem;
  background: var(--house-bg);
}

.house-badge {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 28%, var(--house-accent), var(--house-accent-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2rem;
  box-shadow: 0 12px 26px rgba(11, 44, 99, 0.2);
}

.house-card-copy h3 {
  margin: 0.7rem 0 0;
  color: var(--house-accent);
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.house-card-copy h3::after {
  content: "";
  display: block;
  width: min(320px, 70%);
  height: 4px;
  margin-top: 0.4rem;
  border-radius: 999px;
  background: var(--house-accent);
}

.house-card-copy p {
  margin: 0.8rem 0 0;
  max-width: 610px;
  color: #273e62;
  font-size: 1.05rem;
  line-height: 1.66;
}

.house-watermark {
  position: absolute;
  right: 1.1rem;
  bottom: 0.65rem;
  font-size: 5.8rem;
  color: rgba(20, 40, 72, 0.08);
}

.theme-phoenix {
  --house-accent: #f55c07;
  --house-accent-dark: #ca4500;
  --house-bg: linear-gradient(130deg, #fff6ef, #fffdf9);
}

.theme-centaur {
  --house-accent: #1e5dc9;
  --house-accent-dark: #15489f;
  --house-bg: linear-gradient(130deg, #eef4ff, #f9fcff);
}

.theme-dragon {
  --house-accent: #3b9d37;
  --house-accent-dark: #2f7f2c;
  --house-bg: linear-gradient(130deg, #f2f9f0, #fbfffb);
}

.theme-pegasus {
  --house-accent: #dbab00;
  --house-accent-dark: #b08600;
  --house-bg: linear-gradient(130deg, #fffbe9, #fffdf4);
}

.house-competition {
  padding-top: 0.35rem;
}

.house-competition-card {
  border-radius: 16px;
  border: 1px solid rgba(31, 88, 175, 0.4);
  background: linear-gradient(132deg, #083a8a, #062f76 52%, #042a69);
  color: #fff;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  box-shadow: 0 14px 28px rgba(7, 45, 107, 0.2);
}

.house-comp-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 2px solid rgba(255, 201, 52, 0.9);
  color: #ffc934;
  font-size: 2.25rem;
  display: grid;
  place-items: center;
}

.house-comp-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #fff;
}

.house-comp-copy p {
  margin: 0.52rem 0 0;
  color: #edf4ff;
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 920px;
}

.house-comp-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(232, 242, 255, 0.92);
  font-size: 2rem;
  padding-right: 0.2rem;
}

@media (max-width: 1220px) {
  .house-card {
    grid-template-columns: 1fr;
  }

  .house-card.reverse .house-card-media,
  .house-card.reverse .house-card-copy {
    order: initial;
  }

  .house-card-media img {
    min-height: 250px;
  }

  .house-competition-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .house-comp-icon {
    margin: 0 auto;
  }

  .house-comp-copy p {
    max-width: none;
  }

  .house-comp-icons {
    justify-content: center;
    padding-right: 0;
  }
}

@media (max-width: 920px) {
  .house-hero-card {
    border-radius: 18px;
    padding: 1.2rem 0.9rem 1.05rem;
  }

  .house-hero-card h2::before,
  .house-hero-card h2::after {
    width: 46px;
  }

  .house-hero-card p {
    font-size: 0.98rem;
  }

  .house-hero-watermark {
    font-size: 5.4rem;
    right: 0.9rem;
  }

  .house-vision-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.7rem;
  }

  .house-vision-copy {
    border-left: 0;
    border-top: 1px solid rgba(12, 58, 134, 0.3);
    padding-left: 0;
    padding-top: 0.7rem;
  }

  .house-card-copy {
    padding: 1rem;
  }

  .house-badge {
    width: 74px;
    height: 74px;
    font-size: 1.7rem;
  }

  .house-card-copy h3 {
    font-size: 2.1rem;
  }
}

@media (max-width: 700px) {
  .house-main {
    padding-top: 0.65rem;
  }

  .house-hero-card h2 {
    gap: 0.38rem;
    font-size: 1.12rem;
  }

  .house-hero-card h2::before,
  .house-hero-card h2::after {
    width: 22px;
    height: 2px;
  }

  .house-vision-icon {
    width: 68px;
    height: 68px;
    font-size: 1.65rem;
  }

  .house-vision-copy h3 {
    font-size: 1.55rem;
  }

  .house-vision-copy p {
    font-size: 0.95rem;
  }

  .house-card-media img {
    min-height: 205px;
  }

  .house-card-copy h3 {
    font-size: 1.65rem;
  }

  .house-card-copy p {
    font-size: 0.95rem;
  }

  .house-watermark {
    font-size: 4.3rem;
  }

  .house-comp-copy h3 {
    font-size: 1.55rem;
  }

  .house-comp-copy p {
    font-size: 0.92rem;
  }

  .house-comp-icons {
    font-size: 1.5rem;
    gap: 0.72rem;
  }
}

/* Mandatory Public Disclosure Page */
.mpd-page-body {
  margin: 0;
  background: linear-gradient(180deg, #f5f8ff 0%, #f2f5fb 100%);
  color: #1f314f;
  overflow-x: hidden;
}

.mpd-topline {
  background: linear-gradient(90deg, #03173f 0%, #082f78 100%);
}

.mpd-mainbar {
  box-shadow: 0 8px 22px rgba(8, 45, 98, 0.09);
}

.mpd-main .mpd-wrap {
  width: min(1360px, 96vw);
  margin: 0 auto;
}

.mpd-hero {
  padding: 0.85rem 0 0;
}

.mpd-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(21, 67, 156, 0.45);
  background: linear-gradient(130deg, #04286f 0%, #07347f 48%, #06255d 100%);
  color: #fff;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 0 14px 30px rgba(7, 41, 105, 0.25);
  padding: 1.45rem 1rem;
}

.mpd-hero-card::before {
  content: "";
  position: absolute;
  top: -48px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 126, 231, 0.35), transparent 62%);
}

.mpd-hero-card h1,
.mpd-hero-card h2 {
  margin: 0;
  color: #ffffff;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.mpd-hero-card h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
  font-weight: 800;
}

.mpd-hero-card h2 {
  margin-top: 0.24rem;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  color: #ffc83a;
  font-weight: 700;
}

.mpd-hero-divider {
  width: min(340px, 46%);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ffc83a, transparent);
  margin: 0.62rem auto 0;
  position: relative;
  z-index: 2;
}

.mpd-hero-visual {
  position: absolute;
  right: 2.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(5rem, 13vw, 9rem);
  color: rgba(255, 255, 255, 0.2);
}

.mpd-content {
  margin-top: -16px;
  padding-bottom: 1.2rem;
}

.mpd-card {
  background: #ffffff;
  border: 1px solid #dce7f8;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(12, 52, 118, 0.08);
  padding: 0.95rem 0.95rem 0.88rem;
  margin-top: 0.8rem;
  min-width: 0;
}

.mpd-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.mpd-letter {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #0f4ab4, #1a6add);
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 8px 16px rgba(11, 57, 132, 0.26);
}

.mpd-card-head h3 {
  margin: 0;
  color: #0d3f95;
  font-size: clamp(1.15rem, 2.1vw, 1.9rem);
  font-weight: 700;
  line-height: 1.18;
}

.mpd-grid-two {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.mpd-table-box {
  overflow-x: hidden;
  max-width: 100%;
}

.mpd-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 0;
  table-layout: fixed;
  border: 1px solid #d6e3f8;
  border-radius: 10px;
  overflow: hidden;
}

.mpd-table th,
.mpd-table td {
  border-bottom: 1px solid #e2ecfb;
  border-right: 1px solid #e2ecfb;
  padding: 0.56rem 0.5rem;
  text-align: left;
  font-size: 0.96rem;
  line-height: 1.45;
  color: #283a59;
  vertical-align: top;
  background: #fff;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.mpd-table th:last-child,
.mpd-table td:last-child {
  border-right: 0;
}

.mpd-table tr:last-child td {
  border-bottom: 0;
}

.mpd-table th {
  background: #eff4fd;
  color: #0e3f90;
  font-weight: 700;
}

.mpd-table td i {
  color: #2363cf;
  margin-right: 0.35rem;
}

.mpd-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid #8caee8;
  color: #1c58bf;
  text-decoration: none;
  padding: 0.2rem 0.65rem;
  font-size: 0.86rem;
  font-weight: 600;
  background: #f7fbff;
}

.mpd-view-btn:hover {
  background: #edf5ff;
}

.mpd-note {
  margin: 0.55rem 0 0;
  padding: 0.48rem 0.56rem;
  border-left: 3px solid #2a67d0;
  background: #f4f8ff;
  border-radius: 7px;
  font-size: 0.81rem;
  line-height: 1.5;
  color: #344969;
}

.mpd-staff-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 0.8rem;
  align-items: stretch;
}

.mpd-side-panel {
  border: 1px solid #d9e5f7;
  border-radius: 12px;
  background: linear-gradient(130deg, #f8fbff, #f2f6fe);
  padding: 0.9rem 0.88rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mpd-side-illustration {
  color: #1c58bf;
  font-size: 6rem;
  text-align: center;
  line-height: 1;
}

.mpd-side-panel h4 {
  margin: 0.5rem 0 0.42rem;
  color: #0f4398;
  font-size: 1.42rem;
  text-align: center;
}

.mpd-side-panel ul {
  margin: 0;
  padding-left: 1rem;
  color: #2b456b;
  line-height: 1.64;
  font-size: 0.96rem;
}

.mpd-result-grid {
  grid-template-columns: 1fr 1fr;
}

.mpd-result-card .mpd-card-head {
  display: none;
}

.mpd-result-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.mpd-result-head h3 {
  margin: 0;
  color: #0f4398;
  font-size: clamp(1.2rem, 2.1vw, 1.75rem);
}

.mpd-result-head i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1rem;
}

.result-x .mpd-result-head i {
  background: #2a9d52;
}

.result-xii .mpd-result-head i {
  background: #6b4cd6;
}

.result-x .mpd-table th {
  color: #278c4b;
}

.result-xii .mpd-table th {
  color: #6345ca;
}

.mpd-infra-panel .mpd-side-illustration {
  font-size: 7rem;
  color: #3a8bd1;
}

.mpd-result-card .mpd-table {
  min-width: 0;
  table-layout: fixed;
}

.mpd-result-card .mpd-table th,
.mpd-result-card .mpd-table td {
  font-size: 0.84rem;
  text-align: center;
  padding: 0.44rem 0.34rem;
}

.result-table th,
.result-table td {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 1280px) {
  .mpd-grid-two,
  .mpd-staff-grid,
  .mpd-result-grid {
    grid-template-columns: 1fr;
  }

  .mpd-hero-visual {
    right: 1rem;
  }
}

@media (max-width: 920px) {
  .mpd-hero-card {
    min-height: 170px;
    border-radius: 16px;
  }

  .mpd-hero-card h1 {
    font-size: 2.1rem;
  }

  .mpd-hero-card h2 {
    font-size: 1.62rem;
  }

  .mpd-hero-divider {
    width: 50%;
  }

  .mpd-hero-visual {
    font-size: 4.2rem;
    top: auto;
    bottom: 0.6rem;
    transform: none;
  }

  .mpd-card-head h3,
  .mpd-result-head h3 {
    font-size: 1.2rem;
  }

  .mpd-result-card .mpd-table th,
  .mpd-result-card .mpd-table td {
    font-size: 0.8rem;
  }

  .mpd-table th,
  .mpd-table td {
    font-size: 0.86rem;
  }
}

@media (max-width: 700px) {
  .mpd-main .mpd-wrap {
    width: min(1360px, 97vw);
  }

  .mpd-hero {
    padding-top: 0.58rem;
  }

  .mpd-hero-card {
    padding: 1rem 0.72rem;
  }

  .mpd-hero-card h1 {
    font-size: 1.7rem;
  }

  .mpd-hero-card h2 {
    font-size: 1.33rem;
  }

  .mpd-hero-divider {
    width: 64%;
    margin-top: 0.5rem;
  }

  .mpd-hero-visual {
    font-size: 3rem;
    opacity: 0.35;
  }

  .mpd-card {
    border-radius: 12px;
    padding: 0.7rem;
  }

  .mpd-letter {
    width: 34px;
    height: 34px;
    font-size: 1.08rem;
    border-radius: 8px;
  }

  .mpd-card-head h3,
  .mpd-result-head h3 {
    font-size: 1rem;
  }

  .mpd-table th,
  .mpd-table td {
    font-size: 0.8rem;
    padding: 0.45rem 0.36rem;
  }

  .mpd-side-illustration {
    font-size: 4.2rem;
  }

  .mpd-side-panel h4 {
    font-size: 1.08rem;
  }

  .mpd-side-panel ul {
    font-size: 0.85rem;
  }
}
/* NEET & JEE Coaching Page Redesign */
.neet-page-body {
  background: #fdfdff;
}

.neet-header-top {
  background: #041538;
  color: #fff;
  padding: 8px 0;
  font-size: 0.88rem;
}

.neet-header-top .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.neet-header-top .contact-info {
  display: flex;
  gap: 20px;
}

.neet-header-top .contact-info a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.neet-header-top .social-links {
  display: flex;
  gap: 15px;
}

.neet-header-top .social-links a {
  color: #fff;
  text-decoration: none;
}

.neet-main-header {
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.neet-main-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.neet-logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.neet-logo-area img {
  height: 70px;
}

.neet-logo-text h1 {
  font-size: 1.4rem;
  margin: 0;
  color: #041538;
  font-weight: 800;
  text-transform: uppercase;
}

.neet-logo-text p {
  margin: 0;
  font-size: 0.85rem;
  color: #1e5dc9;
  font-weight: 500;
}

.neet-logo-text .affiliation {
  color: #dc2b2b;
  font-weight: 600;
}

.neet-nav {
  display: flex;
  gap: 5px;
}

.neet-nav a {
  padding: 10px 15px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 5px;
  transition: all 0.3s;
}

.neet-nav a:hover, .neet-nav a.active {
  color: #1e5dc9;
  background: #f0f7ff;
}

.neet-hero {
  background: linear-gradient(
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.65)
    ),
    url("https://static.vecteezy.com/system/resources/thumbnails/039/843/742/small_2x/ai-generated-the-glasses-with-school-books-in-front-of-a-blackboard-created-by-artificial-intelligence-photo.jpeg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.neet-hero .wrap {
height: 291px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.neet-hero-content {
  flex: 1;
}

.neet-hero-content h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.neet-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 15px;
  line-height: 1.1;
  font-weight: 800;
}

.neet-hero-content h1 span {
  color: #ffc107;
}

.neet-hero-content .grades {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.neet-hero-content .subtitle {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 10px;
}

.neet-hero-content .tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffc107;
}

.neet-hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.neet-hero-image img {
  max-width: 70%;
  border-radius: 200px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.neet-info-card-section {
  margin-top: -10px;
  position: relative;
  z-index: 10;
}

.neet-info-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 30px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.neet-info-left {
  flex: 2;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.neet-info-icon {
  background: #f0f7ff;
  color: #1e5dc9;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.neet-info-left p {
  margin: 0;
  line-height: 1.6;
  font-size: 1.05rem;
  color: #444;
}

.neet-info-left p b {
  color: #1e5dc9;
}

.neet-info-divider {
  width: 1px;
  height: 60px;
  background: #eee;
}

.neet-info-right {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.neet-info-right-text h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #041538;
  letter-spacing: 1px;
}

.neet-info-right-text h2 {
  margin: 5px 0 0;
  font-size: 1.3rem;
  color: #1e5dc9;
  font-weight: 800;
}

.neet-target-icon {
  font-size: 2.5rem;
  color: #1e5dc9;
}

.neet-vision-banner {
    background: #020f28;
    border: 1px solid #5656a7;
    color: #fff;
    border-radius: 20px;
    padding: 30px 40px;
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.neet-vision-banner::after {
  content: "";
  font-family: "bootstrap-icons";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10rem;
  opacity: 0.1;
  pointer-events: none;
}

.neet-vision-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.neet-vision-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  color: #1e5dc9;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  flex-shrink: 0;
}

.neet-vision-text h2 {
  margin: 0;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.neet-vision-text p {
  margin: 5px 0 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.neet-section-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin: 60px 0;
  align-items: center;
}

.neet-section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.neet-section-title .icon {
  background: #1e5dc9;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.neet-section-title h2 {
  margin: 0;
  font-size: 1.8rem;
  color: #041538;
  font-weight: 800;
}

.neet-section-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.neet-exam-box {
  background: #f0f7ff;
  border-radius: 15px;
  padding: 20px;
  border-left: 5px solid #1e5dc9;
}

.neet-exam-box .header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #041538;
}

.neet-exam-box .exams {
  font-size: 1rem;
  font-weight: 700;
  color: #1e5dc9;
  line-height: 1.6;
}

.neet-section-footer {
  margin-top: 20px;
  font-weight: 600;
  color: #666;
}

.neet-section-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.neet-foundation-section {
  background: #f8fbff;
  border-radius: 25px;
  padding: 50px;
  margin: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.neet-foundation-image img {
  width: 100%;
  border-radius: 20px;
}

.neet-foundation-content h2 {
  font-size: 1.8rem;
  color: #041538;
  margin-bottom: 10px;
  font-weight: 800;
}

.neet-foundation-content h3 {
  font-size: 1.3rem;
  color: #1e5dc9;
  margin-bottom: 15px;
}

.neet-foundation-content .desc {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 25px;
}

.neet-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.neet-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #444;
}

.neet-feature-item i {
  color: #28a745;
  font-size: 1.2rem;
}

.neet-courses-section {
  margin: 60px 0;
}

.neet-courses-header h2 {
  font-size: 2rem;
  color: #041538;
  font-weight: 800;
  margin-bottom: 5px;
}

.neet-courses-header p {
  font-size: 1.2rem;
  color: #1e5dc9;
  font-weight: 600;
  margin-bottom: 30px;
}

.neet-courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 30px;
  align-items: center;
}

.neet-course-col h3 {
  color: #ef416f;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ef416f;
  display: inline-block;
}

.neet-course-col:nth-child(2) h3 {
  color: #9c27b0;
  border-bottom-color: #9c27b0;
}

.neet-course-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.neet-course-list li {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #444;
  font-weight: 500;
}

.neet-course-list li i {
  color: #1e5dc9;
  margin-top: 3px;
}

.neet-courses-image img {
  width: 100%;
  border-radius: 20px;
}

.neet-highlights-section {
  margin: 80px 0;
}

.neet-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.neet-highlight-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
}

.neet-highlight-card:nth-child(2) {
  background: #fffcf0;
  border-color: #ffe58f;
}

.neet-highlight-card:nth-child(3) {
  background: #f6ffed;
  border-color: #b7eb8f;
}

.neet-highlight-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.neet-highlight-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #fff;
}

.neet-highlight-card:nth-child(1) .neet-highlight-icon { background: #1e5dc9; }
.neet-highlight-card:nth-child(2) .neet-highlight-icon { background: #faad14; }
.neet-highlight-card:nth-child(3) .neet-highlight-icon { background: #52c41a; }

.neet-highlight-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #041538;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

.neet-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.neet-highlight-list li {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 500;
  color: #444;
  font-size: 0.95rem;
}

.neet-highlight-list li i {
  font-size: 1.1rem;
}

.neet-highlight-card:nth-child(1) .neet-highlight-list li i { color: #1e5dc9; }
.neet-highlight-card:nth-child(2) .neet-highlight-list li i { color: #faad14; }
.neet-highlight-card:nth-child(3) .neet-highlight-list li i { color: #52c41a; }

@media (max-width: 1024px) {
  .neet-hero .wrap {
    flex-direction: column;
    text-align: center;
  }
  .neet-hero-image {
    justify-content: center;
  }
  .neet-info-card {
    flex-direction: column;
    gap: 20px;
  }
  .neet-info-divider {
    width: 100%;
    height: 1px;
  }
  .neet-section-grid, .neet-foundation-section, .neet-courses-grid, .neet-highlights-grid {
    grid-template-columns: 1fr;
  }
  .neet-foundation-image, .neet-courses-image {
    order: 2;
  }
  .neet-vision-banner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .neet-vision-content {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .neet-main-header .wrap {
    padding: 10px 20px;
  }
  
  .neet-nav {
    display: none; /* Hide nav links on mobile */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 1001;
  }
  
  .neet-nav.active {
    display: flex;
  }
  
  .neet-nav a {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .menu-btn {
    display: block !important;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
  }
  
  .neet-logo-area img {
    height: 50px;
  }
  
  .neet-logo-text h1 {
    font-size: 1.1rem;
  }
  
  .neet-logo-text p {
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  .neet-header-top .wrap {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
  
  .neet-header-top .contact-info {
    flex-direction: column;
    gap: 5px;
  }
}

/* Our Story Page Styles */
.os-main {
  background: #f4f7fb;
  position: relative;
  overflow: hidden;
  padding-bottom: 5rem;
}

.os-hero {
  padding: 5rem 0 9rem;
  position: relative;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  overflow: hidden;
  color: black;
}

.os-hero-bg-img {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  background: url('img/Aboutheader.jpeg') center/cover no-repeat;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.os-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.os-hero-content {
  width: 50%;
  padding-right: 3rem;
}

.os-hero-chip {
  display: inline-block;
  background: #dfe8fa;
  color: #0f2c68;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.os-hero-content h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  margin: 0 0 1rem;
}

.os-hero-line {
  width: 60px;
  height: 4px;
  background: #efb036;
  margin-bottom: 1.5rem;
  display: block;
}

.os-hero-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: black;
  margin: 0;
}

.os-features-wrapper {
  margin-top: -4.5rem;
  position: relative;
  z-index: 10;
}

.os-features {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(11, 38, 88, 0.08);
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.os-feature-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.os-fi-icon {
  width: 48px; height: 48px;
  background: #194eb8;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.os-feature-item h3 {
  margin: 0;
  font-size: 1rem;
  color: #0b224e;
  line-height: 1.35;
  font-weight: 700;
}

.os-story-section {
  padding: 3rem 0;
}

.os-story-card {
  background: #fff;
  border-radius: 30px;
  padding: 4.5rem;
  box-shadow: 0 15px 40px rgba(13, 35, 77, 0.04);
}

.os-story-card > h2 {
  font-size: 2.2rem;
  color: #0f2c68;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.os-story-card-line {
  width: 60px;
  height: 4px;
  background: #efb036;
  margin-bottom: 2rem;
  display: block;
}

.os-text-block p {
  font-size: 1.05rem;
  color: #3f5472;
  line-height: 1.8;
  margin: 0 0 1.5rem;
}

.os-text-block p:last-child {
  margin-bottom: 0;
}

.os-stats {
  background: #f4f8fe;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  margin: 3rem 0;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.os-stat-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
  min-width: 180px;
}

.os-stat-icon {
  width: 60px; height: 60px;
  background: #11409c;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
}

.os-stat-text h4 {
  margin: 0;
  font-size: 1.6rem;
  color: #0d285f;
  font-weight: 800;
}

.os-stat-text p {
  margin: 0;
  color: #4b6283;
  font-size: 0.95rem;
  font-weight: 600;
}

.os-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.os-card {
  background: #f7fafe;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  border: 1px solid #eef3fb;
}

.os-card-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.os-card-header i {
  color: #194eb8;
  font-size: 1.5rem;
}

.os-card-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #0b224e;
}

.os-card p {
  margin: 0;
  font-size: 1rem;
  color: #445978;
  line-height: 1.6;
}

.os-card ul {
  list-style: none;
  padding: 0; margin: 0;
}

.os-card ul li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: #445978;
  display: flex;
  align-items: start;
  gap: 0.6rem;
}

.os-card ul li i {
  color: #194eb8;
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.os-quote-card {
  background: #fffaf0;
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: start;
}

.os-quote-icon {
  font-size: 5rem;
  color: #efb036;
  line-height: 0.8;
  font-family: serif;
}

.os-quote-text {
  font-size: 1.1rem;
  color: #556271;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1120px) {
  .os-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .os-hero-bg-img {
    width: 100%;
    clip-path: none;
    opacity: 0.2;
  }
  .os-hero-content {
    width: 100%;
    padding-right: 0;
  }
  .os-features {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .os-story-card {
    padding: 2.5rem;
  }
  .os-quote-card {
    padding: 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 600px) {
  .os-hero {
    padding: 3rem 0 6rem;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
  .os-cards {
    grid-template-columns: 1fr;
  }
  .os-stats {
    padding: 1.5rem;
  }
  .os-stat-item {
    min-width: 100%;
  }
}

/* Academics & Curriculum Page Styles */
.curriculum-page-body {
  background: #f4f7fb;
  margin: 0;
}

.curriculum-hero {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.65)
        ),
        url("https://img.freepik.com/premium-photo/banner-with-graduate-cap-apple-branch-academic-books-study-education-university-college-graduate-concept-generative-ai-illustration_94255-6972.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 5rem 0;
    color: #fff;
    text-align: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.curriculum-hero::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}

.curriculum-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.curriculum-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 800px;
  margin: 0 auto;
  color: #cbdcf7;
  line-height: 1.6;
}

.curriculum-stage-section {
  padding-bottom: 5rem;
}

.stage-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 38, 88, 0.04);
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #edf2fc;
}

.stage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(11, 38, 88, 0.08);
}

.stage-copy {
  flex: 1.2;
  padding: 3rem;
}

.stage-media {
  flex: 1;
  height: 350px;
  overflow: hidden;
}

.stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.stage-card:hover .stage-media img {
  transform: scale(1.05);
}

.stage-reverse {
  flex-direction: row-reverse;
}

/* Prevent older order-based reverse rules from cancelling zig-zag in flex layout */
.stage-card.stage-reverse .stage-copy,
.stage-card.stage-reverse .stage-media {
  order: unset;
}

.stage-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stage-index {
  font-size: 1.1rem;
  font-weight: 800;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  background: #f0f4fc;
}

.stage-title-row h2 {
  margin: 0;
  font-size: 1.8rem;
  color: #0b224e;
}

.stage-block ul {
  list-style: none;
  padding: 0; margin: 0;
}

.stage-block ul li {
  font-size: 1.1rem;
  color: #485c7a;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}

.stage-block ul li::before {
  content: "•";
  color: #1a4fba;
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

/* Accent styles for stages */
.stage-card.theme-blue .stage-index { color: #1a4fba; background: #eef3fc; }
.stage-card.theme-blue .stage-block ul li::before { color: #1a4fba; }

.stage-card.theme-green .stage-index { color: #1ca364; background: #eefcfa; }
.stage-card.theme-green .stage-block ul li::before { color: #1ca364; }

.stage-card.theme-purple .stage-index { color: #8e44ad; background: #fbf0fc; }
.stage-card.theme-purple .stage-block ul li::before { color: #8e44ad; }

.stage-card.theme-orange .stage-index { color: #e67e22; background: #fdf5eb; }
.stage-card.theme-orange .stage-block ul li::before { color: #e67e22; }

/* Pillars Section */
.curriculum-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.pillar-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 38, 88, 0.04);
  border: 1px solid #edf2fc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(11, 38, 88, 0.08);
}

.pillar-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem;
  border-bottom: 1px solid #f4f7fb;
}

.pillar-head h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #0b224e;
  padding-right: 2rem;
}

.pillar-icon {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 1.5rem;
  color: #1a4fba;
  opacity: 0.8;
}

.pillar-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.pillar-card ul {
  list-style: none;
  padding: 1.5rem;
  margin: 0;
  flex: 1;
}

.pillar-card ul li {
  font-size: 1rem;
  color: #4a5c78;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}

.pillar-card ul li::before {
  content: "✓";
  color: #1a4fba;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Accent styles for pillars */
.pillar-card.theme-cyan .stage-index { color: #00a8ff; background: #e6f7ff; }
.pillar-card.theme-cyan .pillar-icon i { color: #00a8ff; }
.pillar-card.theme-cyan ul li::before { color: #00a8ff; }

.pillar-card.theme-royal .stage-index { color: #4100fa; background: #f0e6ff; }
.pillar-card.theme-royal .pillar-icon i { color: #4100fa; }
.pillar-card.theme-royal ul li::before { color: #4100fa; }

.pillar-card.theme-pink .stage-index { color: #fa0087; background: #ffe6f0; }
.pillar-card.theme-pink .pillar-icon i { color: #fa0087; }
.pillar-card.theme-pink ul li::before { color: #fa0087; }

@media (max-width: 1024px) {
  .curriculum-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stage-card {
    flex-direction: column !important;
  }
  .stage-copy {
    padding: 2rem;
  }
  .stage-media {
    width: 100%;
    height: 250px;
  }
  .curriculum-pillars {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ACTIVITIES & CLUBS PAGE STYLES (MODERN PREMIUM BRANDING)
   ========================================================================== */

/* Section Header Styles */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
  padding: 0 1rem;
}

.chip-kicker {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a56db;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #0c1b3a;
  font-weight: 800;
  margin: 0;
  line-height: 1.15;
}

.section-header h2 span {
  color: #1e56da;
  background: linear-gradient(135deg, #1e56da 0%, #153d9b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom Decorative Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 1.25rem auto 1.5rem;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: 50px;
  background: #cbd5e1;
}

.divider-dot {
  width: 6px;
  height: 6px;
  background-color: #1e56da;
  border-radius: 50%;
}

.divider-dot.center {
  width: 10px;
  height: 10px;
  background-color: #f59e0b;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  color: #4a5c78;
  line-height: 1.6;
  margin: 0;
}

/* Clubs Grid & Cards Layout */
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.club-card {
  background: #ffffff;
  border: 1px solid #edf2f9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 51, 122, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.club-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(16, 51, 122, 0.08);
}

.club-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.club-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Overlapping Badge Icon */
.club-icon-badge {
    position: absolute;
    bottom: 4px;
    left: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #1e56da 0%, #0d3aa2 100%); */
    border: 4px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    box-shadow: 0 6px 16px rgba(13, 58, 162, 0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
}

.club-card:hover .club-icon-badge {
  transform: scale(1.1) rotate(5deg);
}

.club-content {
      padding: 1.2rem 0.8rem 0.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.club-content h3 {
  font-size: 1.35rem;
  color: #0b1a30;
  font-weight: 700;
  margin: 0 0 0.65rem 0;
  transition: color 0.3s ease;
}

.club-card:hover .club-content h3 {
  color: #1e56da;
}

.club-content p {
  font-size: 0.96rem;
  color: #5a6b85;
  line-height: 1.55;
  margin: 0 0 1.2rem 0;
  flex-grow: 1;
}

/* Arrow Buttons */
.club-arrow-btn {
  align-self: flex-start;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a5c78;
  background: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
}

.club-arrow-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.club-card:hover .club-arrow-btn {
  background: #1e56da;
  border-color: #1e56da;
  color: #ffffff;
}

.club-card:hover .club-arrow-btn i {
  transform: translateX(2px);
}

/* Sports & Games Section */
.sports-games-section {
  background: linear-gradient(135deg, #f0f6ff 0%, #e6effe 100%);
  border-radius: 32px;
  border: 1px solid #d4e3fc;
  padding: 3rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 15px 35px rgba(22, 60, 137, 0.03);
}

.sports-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.sports-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 51, 122, 0.08);
  height: 420px;
}

.sports-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sports-content {
  display: flex;
  flex-direction: column;
}

.section-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: #1e56da;
  border-radius: 12px;
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(30, 86, 218, 0.1);
  margin-bottom: 1.25rem;
}

.sports-content h2,
.eca-content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: #0b1a30;
  font-weight: 800;
  margin: 0 0 0.8rem 0;
}

.sports-divider,
.eca-divider {
  width: 50px;
  height: 3px;
  background: #1e56da;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.sports-content p,
.eca-content p {
  font-size: 1.05rem;
  color: #4a5c78;
  line-height: 1.65;
  margin: 0 0 2rem 0;
}

/* Sports Icons Grid */
.sports-icons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.sport-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.sport-icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dbe5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e56da;
  font-size: 1.15rem;
  box-shadow: 0 4px 10px rgba(16, 51, 122, 0.03);
  transition: all 0.3s ease;
}

.sport-icon-badge svg {
  transition: transform 0.3s ease;
}

.sport-icon-item:hover .sport-icon-badge {
  background: #1e56da;
  border-color: #1e56da;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 86, 218, 0.25);
}

.sport-icon-item:hover .sport-icon-badge svg {
  stroke: #ffffff;
  transform: scale(1.05);
}

.sport-icon-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #5a6b85;
  white-space: nowrap;
}

/* Extra-Curricular Activities Section */
.extra-curricular-section {
  background: #ffffff;
  border-radius: 32px;
  border: 1px solid #edf2f9;
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 15px 35px rgba(22, 60, 137, 0.02);
}

.eca-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.eca-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 51, 122, 0.08);
  height: 420px;
}

.eca-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eca-content p.highlight-text {
  font-size: 1.08rem;
  color: #0b1a30;
  font-weight: 500;
  line-height: 1.68;
  margin-bottom: 1rem;
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .clubs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .sports-games-section,
  .extra-curricular-section {
    padding: 2.2rem;
  }
  .sports-container,
  .eca-container {
    gap: 2.2rem;
  }
  .sports-icons-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .clubs-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .sports-container {
    grid-template-columns: 1fr;
  }
  .sports-media {
    order: -1;
    height: 300px;
  }
  .eca-container {
    grid-template-columns: 1fr;
  }
  .eca-media {
    height: 300px;
  }
  .sports-icons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 2.5rem;
  }
  .sports-games-section,
  .extra-curricular-section {
    padding: 1.5rem 1.25rem;
    border-radius: 24px;
  }
  .sports-icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .club-content {
    padding: 2rem 1.4rem 1.4rem;
  }
}

/* ==========================================================================
   ATHLETIC EXCELLENCE PROGRAM PAGE STYLES (MODERN PREMIUM)
   ========================================================================== */

/* Sports Hero Overrides */
.sports-hero {
  padding: 6rem 0 10rem !important;
}

.sports-chip {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  background: #0052cc;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 82, 204, 0.2);
}

.sports-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  margin: 0 !important;
}

.sports-hero-title .highlight-gold {
  color: #f59e0b;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sports-hero-divider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.2rem 0;
}

.sports-hero-line {
  width: 40px;
  height: 3px;
  background: #f59e0b;
  border-radius: 2px;
  display: inline-block;
}

.sports-hero-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin: 0;
}

.sports-hero-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 750px;
  margin: 0;
}

/* Sports Page Body Wrap */
.sports-page-body-wrap {
  background: #f8fbff !important;
  padding: 0 0 5rem !important;
}

/* Floating Overlapping Cards */
.sports-overlap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: -6.5rem;
  position: relative;
  z-index: 20;
  margin-bottom: 4.5rem;
}

.sports-overlap-card {
  display: flex;
  gap: 1.5rem;
  background: #ffffff;
  padding: 2.2rem 2rem;
  border-radius: 24px;
  border: 1px solid #e3edf9;
  box-shadow: 0 15px 40px rgba(13, 37, 85, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sports-overlap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(13, 37, 85, 0.1);
}

.overlap-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #edf4fe;
  color: #1e56da;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 86, 218, 0.08);
}

.overlap-card-content h3 {
  font-size: 1.3rem;
  color: #0b1a30;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.overlap-card-content p {
  font-size: 0.95rem;
  color: #5a6b85;
  line-height: 1.6;
  margin: 0;
}

/* Highlights Header */
.sports-highlights-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.sports-highlights-header .highlights-kicker {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a56db;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.sports-highlights-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #0c1b3a;
  font-weight: 800;
  margin: 0;
  line-height: 1.18;
}

/* Highlights 2x2 Grid & Cards */
.sports-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 4.5rem;
}

.sports-highlight-card {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #edf2f9;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 51, 122, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sports-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(16, 51, 122, 0.08);
}

.highlight-card-img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  overflow: hidden;
}

.highlight-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sports-highlight-card:hover .highlight-card-img img {
  transform: scale(1.06);
}

.highlight-card-content {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlight-card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
}

.highlight-card-content h3 {
  font-size: 1.28rem;
  color: #0b1a30;
  font-weight: 700;
  margin: 0 0 1.2rem 0;
}

.tag-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-chip {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
}

/* Highlights Theme Accents */
.theme-blue .highlight-card-icon-wrap {
  background: #1e56da;
  box-shadow: 0 4px 12px rgba(30, 86, 218, 0.25);
}
.theme-blue .tag-chip {
  background: #eaf1ff;
  color: #1e56da;
}
.theme-blue .tag-chip:hover {
  background: #1e56da;
  color: #ffffff;
}

.theme-green .highlight-card-icon-wrap {
  background: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}
.theme-green .tag-chip {
  background: #ecfdf5;
  color: #10b981;
}
.theme-green .tag-chip:hover {
  background: #10b981;
  color: #ffffff;
}

.theme-orange .highlight-card-icon-wrap {
  background: #f59e0b;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}
.theme-orange .tag-chip {
  background: #fffbeb;
  color: #f59e0b;
}
.theme-orange .tag-chip:hover {
  background: #f59e0b;
  color: #ffffff;
}

.theme-red .highlight-card-icon-wrap {
  background: #ef4444;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}
.theme-red .tag-chip {
  background: #fef2f2;
  color: #ef4444;
}
.theme-red .tag-chip:hover {
  background: #ef4444;
  color: #ffffff;
}

/* Watermarked Mid Banner */
.sports-mid-banner {
  display: flex;
  align-items: center;
  background: #edf4fe;
  border: 1px solid #d0e2fe;
  border-radius: 24px;
  padding: 2.5rem 3.5rem;
  margin-bottom: 4.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(30, 86, 218, 0.03);
}

.mid-banner-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1e56da;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 86, 218, 0.2);
  position: relative;
  z-index: 2;
}

.sports-mid-banner p {
  margin: 0 0 0 1.8rem !important;
  font-size: 1.08rem !important;
  color: #1e3a6a !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
  position: relative;
  z-index: 2;
}

.mid-banner-watermark {
  position: absolute;
  right: 24px;
  bottom: -24px;
  font-size: 8rem;
  color: #1e56da;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

/* Beyond the Game Dark Footer Banner */
.sports-dark-footer {
  background: linear-gradient(135deg, #051538 0%, #092561 50%, #0d368d 100%);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  color: #ffffff;
  margin-bottom: 3rem;
  box-shadow: 0 20px 50px rgba(5, 21, 56, 0.15);
}

.dark-footer-container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  align-items: center;
}

.dark-footer-left {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.dark-footer-big-icon {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.dark-footer-desc-wrap h2 {
  font-size: 2rem !important;
  font-weight: 800 !important;
  margin: 0 0 0.6rem 0 !important;
  color: #ffffff !important;
}

.dark-footer-desc-wrap p {
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.dark-footer-right {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.dark-footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}

.col-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  color: #f59e0b;
  font-size: 1.35rem;
  transition: all 0.3s ease;
}

.dark-footer-col:hover .col-icon {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
}

.dark-footer-col span {
  font-size: 0.82rem;
  font-weight: 700;
  color: #f59e0b;
  line-height: 1.4;
}

/* Responsive Overrides for Sports Program */
@media (max-width: 1100px) {
  .sports-overlap-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .sports-highlights-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .dark-footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .sports-highlight-card {
    grid-template-columns: 1fr;
  }
  .highlight-card-img {
    height: 200px;
    min-height: unset;
  }
  .highlight-card-content {
    padding: 1.8rem 1.5rem;
  }
  .dark-footer-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .sports-hero {
    padding: 4rem 0 7rem !important;
  }
  .sports-overlap-grid {
    margin-top: -4.5rem;
  }
  .sports-overlap-card {
    padding: 1.5rem 1.25rem;
  }
  .sports-mid-banner {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .sports-mid-banner p {
    margin: 1.2rem 0 0 0 !important;
  }
  .dark-footer-right {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   CAMPUS FACILITIES PAGE STYLES (MODERN PREMIUM)
   ========================================================================== */

/* Facilities Page Wrap */
.facilities-page-wrap {
  background: #f8fbff !important;
  padding: 4rem 0 6rem !important;
}
.facilities-hero{
      background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url(https://static.vecteezy.com/system/resources/previews/000/664/483/original/abstract-blue-banner-design-vector.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0;
    color: #fff;
    /* text-align: center; */
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}
/* Category Ribbons & Container */
.facility-ribbon-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  width: 100%;
}

.facility-ribbon {
  display: inline-block;
  padding: 0.65rem 4rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 100%, 0% 100%);
  border-radius: 4px;
  text-align: center;
  min-width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.facility-ribbon.theme-academic {
  background: #0d3283;
  box-shadow: 0 4px 15px rgba(13, 50, 131, 0.2);
}

.facility-ribbon.theme-sports {
  background: #027a48;
  box-shadow: 0 4px 15px rgba(2, 122, 72, 0.2);
}

.facility-ribbon.theme-essential {
  background: #d97706;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.2);
}

.facility-ribbon.theme-app {
  background: #682c91;
  box-shadow: 0 4px 15px rgba(104, 44, 145, 0.2);
}

.facility-ribbon.theme-transport {
  background: #0f766e;
  box-shadow: 0 4px 15px rgba(15, 118, 110, 0.2);
}

/* 1. Academic Facilities Cards Grid */
.academic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.academic-card {
  background: #ffffff;
  border: 1px solid #edf2f9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 51, 122, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.academic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(16, 51, 122, 0.07);
}

.academic-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.academic-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.academic-icon-badge {
  position: absolute;
  bottom: 1px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* background: linear-gradient(135deg, #1e56da 0%, #0d3aa2 100%); */
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(13, 58, 162, 0.22);
  z-index: 10;
}

.academic-content {
  padding: 2rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.academic-content h3 {
  font-size: 1.15rem;
  color: #0b1a30;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  transition: color 0.3s ease;
}

.academic-card:hover .academic-content h3 {
  color: #1e56da;
}

.academic-content p {
  font-size: 0.88rem;
  color: #5a6b85;
  line-height: 1.5;
  margin: 0;
}

/* 2. Sports & Wellness Grid */
.sports-wellness-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.sports-wellness-card {
  background: #ffffff;
  border: 1px solid #edf2f9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 51, 122, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sports-wellness-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(16, 51, 122, 0.07);
}

.sports-wellness-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.sports-wellness-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.sports-wellness-content {
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sports-wellness-content h3 {
  font-size: 1.12rem;
  color: #027a48;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sports-wellness-content h3 .green-dot {
  color: #10b981;
  font-size: 1.25rem;
  line-height: 1;
}

.sports-wellness-content p {
  font-size: 0.88rem;
  color: #5a6b85;
  line-height: 1.5;
  margin: 0;
}

/* 3. Essential Facilities Grid */
.essential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.essential-card {
  background: #ffffff;
  border: 1px solid #edf2f9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 51, 122, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.essential-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(16, 51, 122, 0.07);
}

.essential-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.essential-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.essential-content {
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.essential-content h3 {
  font-size: 1.12rem;
  color: #d97706;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.essential-content p {
  font-size: 0.88rem;
  color: #5a6b85;
  line-height: 1.5;
  margin: 0;
}

/* 4. School Transportation Grid */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.transport-card {
  background: #ffffff;
  border: 1px solid #edf2f9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 51, 122, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.transport-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(16, 51, 122, 0.07);
}

.transport-img-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
}

.transport-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.transport-content {
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.transport-content h3 {
  font-size: 1.12rem;
  color: #0f766e;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}

.transport-content p {
  font-size: 0.88rem;
  color: #5a6b85;
  line-height: 1.5;
  margin: 0;
}

/* 5. School App Grid */
.school-app-intro {
  margin: 0 0 1.5rem;
  color: #5a6b85;
  line-height: 1.65;
  text-align: center;
}

.school-app-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}

.app-card {
  background: #ffffff;
  border: 1px solid #f3e8ff;
  border-radius: 20px;
  padding: 2.2rem 1.2rem 1.8rem;
  box-shadow: 0 8px 24px rgba(104, 44, 145, 0.01);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(104, 44, 145, 0.08);
  border-color: #d8b4fe;
}

.app-graphic-wrap {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-card:hover .app-graphic-wrap {
  transform: scale(1.08);
}

.app-svg-icon {
  display: block;
}

.app-content h3 {
  font-size: 1.05rem;
  color: #682c91;
  font-weight: 700;
  margin: 0 0 0.6rem 0;
}

.app-content p {
  font-size: 0.82rem;
  color: #5a6b85;
  line-height: 1.45;
  margin: 0;
}

/* 6. Excellence Beyond Classrooms Banner */
.excellence-beyond-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: linear-gradient(135deg, #051538 0%, #0d368d 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(5, 21, 56, 0.12);
  margin-bottom: 3rem;
}

.excellence-banner-left {
  padding: 3.5rem 3.5rem;
  display: flex;
  gap: 1.8rem;
  align-items: center;
  color: #ffffff;
}

.excellence-trophy {
  font-size: 3.5rem;
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.excellence-desc h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 0.6rem 0 !important;
}

.excellence-desc p {
  font-size: 0.98rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.excellence-banner-right {
  width: 100%;
  height: 100%;
}

.excellence-banner-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Rules for Campus Facilities */
@media (max-width: 1200px) {
  .academic-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .sports-wellness-grid,
  .essential-grid,
  .transport-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .school-app-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .academic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sports-wellness-grid,
  .essential-grid,
  .transport-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .school-app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .excellence-beyond-banner {
    grid-template-columns: 1fr;
  }
  .excellence-banner-right {
    height: 280px;
  }
}

@media (max-width: 600px) {
  .academic-grid,
  .sports-wellness-grid,
  .essential-grid,
  .transport-grid,
  .school-app-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .academic-img-wrap,
  .sports-wellness-img-wrap,
  .essential-img-wrap,
  .transport-img-wrap {
    height: 200px;
  }
  .excellence-banner-left {
    padding: 2.5rem 1.8rem;
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  .excellence-trophy {
    font-size: 3rem;
  }
}

/* ==========================================================================
   COMMON GALLERY PAGE (COLLEGE STYLE + LIGHTBOX)
   ========================================================================== */

.common-gallery-hero {
  background: linear-gradient(rgba(8, 24, 58, 0.8), rgba(8, 24, 58, 0.8)), url("img/gallery/commomgallery.jpg") !important;
  background-size: cover !important;
  background-position: center !important;
}

.common-gallery-wrap {
  background:
    radial-gradient(circle at 8% 8%, rgba(29, 78, 216, 0.09), transparent 42%),
    radial-gradient(circle at 92% 92%, rgba(14, 165, 233, 0.1), transparent 40%),
    #f8fbff;
  padding: 1.5rem 0 5rem;
}

.common-gallery-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.2rem;
}

.common-gallery-head h2 {
  margin: 0.75rem 0 0.7rem;
  color: #0c1b3a;
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.common-gallery-head h2 span {
  color: #1e56da;
}

.common-gallery-head p {
  margin: 0;
  color: #5a6b85;
  font-size: 1rem;
  line-height: 1.65;
}

.college-gallery-grid {
  column-count: 4;
  column-gap: 1.2rem;
}

.college-gallery-item {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(15, 44, 109, 0.1);
  margin: 0 0 1.2rem;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}

.college-gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 16px;
  z-index: 3;
  pointer-events: none;
}

.college-gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.college-gallery-item:hover img {
  transform: scale(1.08);
}

.college-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 15, 40, 0.82), rgba(3, 15, 40, 0.08));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem 0.9rem;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.college-gallery-item:hover .college-gallery-overlay {
  opacity: 1;
}

.college-gallery-overlay i {
  font-size: 0.95rem;
}

.college-gallery-overlay em {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.single-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 9, 22, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.25s ease;
}

.single-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.single-lightbox img {
  width: min(90vw, 1100px);
  height: min(80vh, 760px);
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}

.single-lightbox-close,
.single-lightbox-nav {
  position: absolute;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: background 0.25s ease, transform 0.25s ease;
}

.single-lightbox-close:hover,
.single-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.single-lightbox-close {
  top: 20px;
  right: 24px;
}

.single-lightbox-nav.prev {
  left: 24px;
}

.single-lightbox-nav.next {
  right: 24px;
}

.single-lightbox-counter {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: #dbeafe;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1100px) {
  .college-gallery-grid {
    column-count: 3;
  }
}

@media (max-width: 760px) {
  .college-gallery-grid {
    column-count: 2;
    column-gap: 0.9rem;
  }

  .single-lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .single-lightbox-nav.prev {
    left: 10px;
  }

  .single-lightbox-nav.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .college-gallery-grid {
    column-count: 1;
  }

  .single-lightbox-close {
    top: 10px;
    right: 10px;
  }

  .single-lightbox img {
    width: 94vw;
    height: 74vh;
  }
}

/* ==========================================================================
   CONTACT US PAGE STYLES (MODERN PREMIUM)
   ========================================================================== */

/* Main Container Wrap */
.contact-section-wrap {
  padding: 6rem 0 4rem !important;
  background: radial-gradient(circle at 10% 20%, rgba(239, 246, 255, 0.45) 0%, rgba(255, 255, 255, 1) 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Grid Dots Decoration */
.contact-section-wrap::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 6%;
  width: 80px;
  height: 100px;
  background-image: radial-gradient(#dbeafe 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}

/* Grid Layout */
.contact-grid-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4.5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Left Side: Info Panel */
.contact-info-panel {
  position: relative;
}

.contact-chip-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #1e56da;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

.contact-chip-title::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #1e56da;
  margin-left: 8px;
  vertical-align: middle;
}

.contact-title-main {
  font-size: clamp(2.4rem, 4.5vw, 3.4rem) !important;
  font-weight: 800 !important;
  color: #0c1b3a !important;
  line-height: 1.15 !important;
  margin: 0 0 1.25rem !important;
}

.contact-title-main span {
  color: #1e56da;
  background: linear-gradient(135deg, #1e56da 0%, #153d9b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-desc-text {
  font-size: 1rem;
  color: #5a6b85;
  line-height: 1.65;
  margin: 0 0 2.5rem 0;
}

/* Info Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid #edf2f9;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  box-shadow: 0 10px 30px rgba(16, 51, 122, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(16, 51, 122, 0.06);
  border-color: #dbeafe;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1e56da 0%, #0d3aa2 100%);
  box-shadow: 0 4px 12px rgba(30, 86, 218, 0.18);
}

.contact-card-details h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0c1b3a;
  margin: 0 0 0.35rem 0;
}

.contact-card-details p {
  font-size: 0.85rem;
  color: #5a6b85;
  line-height: 1.45;
  margin: 0;
}

.contact-card-details p a {
  color: #5a6b85;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-card-details p a:hover {
  color: #1e56da;
}

/* Right Side: Form Card */
.contact-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 3.2rem 2.8rem;
  box-shadow: 0 15px 45px rgba(16, 51, 122, 0.07);
  border: 1px solid #f0f4f9;
}

.form-badge-header {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.form-badge-header span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e56da;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contact-form-card h2 {
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  color: #0c1b3a !important;
  text-align: center !important;
  margin: 0 0 2.2rem 0 !important;
}

.contact-interactive-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row-half {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group-with-icon {
  position: relative;
  width: 100%;
}

.form-group-with-icon input,
.form-group-with-icon textarea {
  width: 100%;
  padding: 0.95rem 1.1rem 0.95rem 48px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.92rem;
  color: #0c1b3a;
  background: #f8fafc;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.form-group-with-icon input:focus,
.form-group-with-icon textarea:focus {
  border-color: #1e56da;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(30, 86, 218, 0.08);
  outline: none;
}

.icon-field {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.1rem;
  pointer-events: none;
  transition: color 0.3s ease;
}

.textarea-icon {
  top: 20px;
  transform: none;
}

.form-group-with-icon input:focus ~ .icon-field,
.form-group-with-icon textarea:focus ~ .icon-field {
  color: #1e56da;
}

.btn-submit-contact {
  background: linear-gradient(135deg, #1e56da 0%, #0d3aa2 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 1.1rem;
  font-size: 0.98rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 6px 18px rgba(30, 86, 218, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.btn-submit-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 86, 218, 0.32);
  filter: brightness(1.05);
}

.btn-submit-contact:active {
  transform: translateY(0);
}

/* Map Section */
.contact-map-section {
  padding: 4.5rem 0 6.5rem !important;
  background: #f8fbff !important;
}

.map-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1e56da;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.embedded-map-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(16, 51, 122, 0.06);
  border: 10px solid #ffffff;
  background: #ffffff;
}

.embedded-map-card iframe {
  display: block;
}

/* Responsive Rules for Contact Us */
@media (max-width: 992px) {
  .contact-grid-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .contact-info-panel {
    text-align: center;
  }
  .contact-chip-title {
    justify-content: center;
  }
  .contact-desc-text {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .contact-form-card {
    padding: 2.5rem 1.8rem;
  }
}

@media (max-width: 480px) {
  .form-row-half {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .contact-form-card {
    padding: 2rem 1.25rem;
  }
}

/* ==========================================================================
   SCHOOL GALLERY PAGE STYLES (PREMIUM REDESIGN)
   ========================================================================== */

/* Hero Banner */
.gallery-hero {
  background: linear-gradient(rgba(12, 27, 58, 0.75), rgba(12, 27, 58, 0.75)), url(https://i.pinimg.com/736x/20/9d/6a/209d6a889a0a9028f849ab284c612cfb.jpg) !important;
  background-size: cover !important;
  background-position: center 25% !important;
  background-repeat: no-repeat !important;
  padding: 6rem 0 !important;
  color: #ffffff !important;
  border-bottom-left-radius: 40px !important;
  border-bottom-right-radius: 40px !important;
  margin-bottom: 3.5rem !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Main Wrapper */
.gallery-section-wrap {
  background: #f8fbff !important;
  padding: 2rem 0 6rem !important;
}

/* Filter Tab Panel */
.gallery-filter-panel {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-tab {
  background: #ffffff;
  border: 1px solid #edf2f9;
  color: #5a6b85;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16, 51, 122, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-tab:hover {
  transform: translateY(-2px);
  color: #1e56da;
  border-color: #dbeafe;
  box-shadow: 0 8px 20px rgba(30, 86, 218, 0.06);
}

.filter-tab.active {
  background: linear-gradient(135deg, #1e56da 0%, #0d3aa2 100%);
  color: #ffffff;
  border-color: #1e56da;
  box-shadow: 0 6px 18px rgba(30, 86, 218, 0.25);
}

/* Gallery Albums Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-bottom: 4rem;
}

.gallery-card {
  background: #ffffff;
  border: 1px solid #edf2f9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 51, 122, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(16, 51, 122, 0.08);
}

.gallery-img-wrap {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.08);
}

.gallery-photo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(12, 27, 58, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 27, 58, 0.75) 0%, rgba(12, 27, 58, 0) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.8rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.btn-view-album {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(30, 86, 218, 0.95);
  padding: 8px 18px;
  border-radius: 30px;
  transform: translateY(12px);
  box-shadow: 0 4px 10px rgba(30, 86, 218, 0.2);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover .btn-view-album {
  transform: translateY(0);
}

.gallery-content {
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-content h3 {
  font-size: 1.15rem;
  color: #0c1b3a;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.35;
}

.gallery-content p {
  font-size: 0.88rem;
  color: #5a6b85;
  line-height: 1.5;
  margin: 0;
}

.gallery-showing-bar {
  text-align: center;
  color: #5a6b85;
  font-size: 0.95rem;
  margin-top: 1rem;
}

.gallery-showing-bar strong {
  color: #1e56da;
  font-weight: 700;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 17, 39, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1100px;
  max-height: 85vh;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-container {
  transform: scale(1);
}

.lightbox-header {
  padding: 1.6rem 2.2rem;
  border-bottom: 1px solid #edf2f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
}

.lightbox-header h2 {
  font-size: 1.35rem !important;
  color: #0c1b3a !important;
  font-weight: 800 !important;
  margin: 0 !important;
}

.btn-close-lightbox {
  background: #f1f5f9;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a6b85;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-close-lightbox:hover {
  background: #e2e8f0;
  color: #0c1b3a;
  transform: rotate(90deg);
}

.lightbox-grid {
  padding: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  overflow-y: auto;
  max-height: calc(85vh - 100px);
}

.lightbox-item {
  border-radius: 16px;
  overflow: hidden;
  height: 180px;
  cursor: zoom-in;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  border: 4px solid #ffffff;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.lightbox-item:hover {
  transform: scale(1.03) translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.lightbox-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Rules for Gallery */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  .lightbox-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .gallery-filter-panel {
    gap: 0.6rem;
    margin-bottom: 2.5rem;
  }
  .filter-tab {
    padding: 0.65rem 1.25rem;
    font-size: 0.88rem;
  }
  .gallery-hero {
    padding: 5rem 0 !important;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .lightbox-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1.25rem;
  }
  .lightbox-container {
    width: 94%;
    max-height: 90vh;
  }
  .lightbox-item {
    height: 160px;
  }
}
