:root {
  --purple: #26115f;
  --purple-dark: #180842;
  --purple2: #4d2baa;
  --purple3: #6d52ca;
  --red: #ef2f37;
  --red-dark: #d51d27;
  --ink: #17132e;
  --muted: #666178;
  --line: #ece7f6;
  --soft: #fbf8ff;
  --soft2: #fff4f5;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(31, 18, 82, .15);
  --shadow2: 0 14px 40px rgba(31, 18, 82, .10);
  --radius: 24px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 8% 10%, rgba(239, 47, 55, .06), transparent 23%), radial-gradient(circle at 92% 25%, rgba(77, 43, 170, .07), transparent 26%), linear-gradient(#fff, #fff)
}

a {
  text-decoration: none
}

.container {
  max-width: 1180px
}

.section-space {
  padding: 88px 0
}

.homepage-only {
  position: relative
}

.btn {
  border-radius: 10px;
  font-weight: 900;
  padding: 14px 24px;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: .28s ease
}

.btn-brand {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 18px 34px rgba(239, 47, 55, .25), inset 0 1px 0 rgba(255, 255, 255, .18)
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(239, 47, 55, .36)
}

.btn-soft {
  background: rgba(255, 255, 255, .92);
  color: var(--purple);
  border: 1px solid #eee8f7;
  box-shadow: var(--shadow2)
}

.btn-soft:hover {
  color: var(--purple);
  transform: translateY(-3px);
  box-shadow: var(--shadow)
}

.btn-soft i {
  color: var(--red)
}

.btn-white-red {
  background: #fff;
  color: var(--red);
  box-shadow: 0 12px 30px rgba(17, 8, 56, .14)
}

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

#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: .5s
}

.loader-mark {
  position: relative;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center
}

.loader-mark img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 2
}

.loader-mark span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #eee;
  border-top-color: var(--red);
  animation: spin 1s linear infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.main-navbar {
  height: 92px;
  background: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(23, 12, 68, .07);
  transition: .3s;
  z-index: 120
}

.main-navbar.scrolled {
  height: 78px;
  box-shadow: 0 18px 44px rgba(23, 12, 68, .13)
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--red) !important;
  font-size: 25px;
  line-height: .9
}

.navbar-brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 8px 24px rgba(39, 18, 98, .12)
}

.navbar-brand small {
  display: block;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  margin-top: 6px
}

.nav-link {
  font-size: 14px;
  font-weight: 900;
  color: #151128 !important;
  padding: 33px 14px !important;
  position: relative
}

.nav-link:after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 23px;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
  transform: scaleX(0);
  transition: .25s
}

.nav-link.active,
.nav-link:hover {
  color: var(--red) !important
}

.nav-link.active:after,
.nav-link:hover:after {
  transform: scaleX(1)
}

.dropdown-menu {
  border: 0;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px
}

.dropdown-item {
  font-weight: 800;
  border-radius: 11px;
  padding: 11px 13px
}

.dropdown-item:hover {
  background: #fff0f1;
  color: var(--red)
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: none;
  place-items: center;
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 32px rgba(239, 47, 55, .34);
  z-index: 110
}

.scroll-top.show {
  display: grid
}

.float-actions {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.float-actions a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 23px;
  box-shadow: 0 16px 34px rgba(31, 18, 82, .18);
  transition: .25s
}

.float-actions a:hover {
  transform: translateY(-4px) scale(1.04)
}

.float-whatsapp {
  background: #20c75a
}

.float-call {
  background: var(--purple2)
}

.float-actions .label {
  position: absolute;
  left: 58px;
  white-space: nowrap;
  background: #fff;
  color: var(--purple);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow2);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8px);
  transition: .25s
}

.float-actions a:hover .label {
  opacity: 1;
  transform: translateX(0)
}

.hero-exact {
  position: relative;
  min-height: 660px;
  padding-top: 92px;
  overflow: hidden;
  /* background: linear-gradient(110deg, #fff 0 38%, #faf8ff 38% 100%) */
}

.heroSwiper {
  height: 568px
}

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

.hero-slide:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 68%;
  /* background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .92) 13%, rgba(255, 255, 255, .45) 38%, rgba(255, 255, 255, .05) 70%), var(--hero-img) center right/cover no-repeat; */
  z-index: 1;
  transform: scale(1.02);
  transition: transform 5s ease
}

.swiper-slide-active.hero-slide:before {
  transform: scale(1.08)
}

.hero-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 7% 25%, rgba(239, 47, 55, .07), transparent 18%), radial-gradient(circle at 90% 10%, rgba(77, 43, 170, .10), transparent 24%); */
  z-index: 2;
  pointer-events: none
}

.hero-container {
  position: relative;
  z-index: 4
}

.min-vh-hero {
  min-height: 568px
}

.hero-copy {
  position: relative
}

.mini-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #eee6f6;
  border-radius: 999px;
  box-shadow: var(--shadow2);
  padding: 9px 17px;
  color: var(--purple2);
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 23px
}

.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6.1vw, 82px);
  line-height: .98;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: -2.5px;
  margin-bottom: 24px
}

.hero-copy h1 span {
  display: block;
  color: var(--red)
}

.hero-desc {
  max-width: 530px;
  color: #39354e;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 30px
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap
}

.hero-pills {
  margin-top: 30px;
  width: min(100%, 640px);
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden
}

.hero-pills div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 15px;
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  color: var(--purple)
}

.hero-pills div:last-child {
  border: 0
}

.hero-pills i {
  font-size: 23px;
  color: var(--purple2)
}

.hero-floating-card {
  position: absolute;
  z-index: 8;
  background: rgba(255, 255, 255, .92);
  border: 1px solid #eee6f6;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 18px 22px;
  animation: float 4.5s ease-in-out infinite
}

.hero-floating-card i {
  grid-row: 1/3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff0f1;
  color: var(--red);
  font-size: 22px
}

.hero-floating-card strong {
  font-size: 28px;
  line-height: 1;
  color: var(--purple);
  font-weight: 900
}

.hero-floating-card span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 900
}

.card-one {
  right: 27%;
  top: 120px
}

.card-two {
  right: 44%;
  bottom: 58px;
  animation-delay: .8s;
}

.card-three {
  right: 7%;
  bottom: 86px;
  background: linear-gradient(135deg, #5a35bb, #2b126b);
  color: #fff
}

.card-three i {
  background: rgba(255, 255, 255, .16);
  color: #fff
}

.card-three strong,
.card-three span {
  color: #fff
}

.hero-orbit {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  border: 1px dashed rgba(77, 43, 170, .24);
  animation: spin 28s linear infinite
}

.orbit-one {
  width: 230px;
  height: 230px;
  right: 5%;
  top: 126px
}

.orbit-two {
  width: 150px;
  height: 150px;
  left: 4%;
  bottom: 64px;
  border-color: rgba(239, 47, 55, .18);
  animation-direction: reverse
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow2);
  display: grid;
  place-items: center;
  color: var(--purple);
  cursor: pointer;
  transition: .25s
}

.hero-nav:hover {
  background: var(--red);
  color: #fff
}

.hero-prev {
  left: 18px
}

.hero-next {
  right: 18px
}

.hero-pagination {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 28px !important;
  text-align: center;
  z-index: 10
}

.hero-pagination .swiper-pagination-bullet {
  width: 27px;
  height: 6px;
  border-radius: 10px;
  background: #fff;
  opacity: .85
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--red) !important
}

.swiper {
  user-select: none
}

.swiper-slide {
  height: auto
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--purple) !important;
  background: #fff;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50%;
  box-shadow: var(--shadow2)
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 17px !important;
  font-weight: 900
}

.swiper-pagination-bullet-active {
  background: var(--red) !important
}

.section-heading {
  text-align: center;
  margin-bottom: 45px
}

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  color: var(--purple);
  font-weight: 900;
  font-size: clamp(34px, 3.8vw, 52px);
  margin: 0;
  letter-spacing: -.6px
}

.section-heading h2:after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--red);
  border-radius: 9px;
  margin: 13px auto 0
}

.section-heading p {
  margin: 12px auto 0;
  color: var(--muted);
  font-weight: 800;
  max-width: 690px;
  line-height: 1.75
}

.section-heading.light h2,
.section-heading.light p {
  color: #fff
}

.section-heading.light h2:after {
  background: #ff5660
}

.eyebrow-chip {
  display: inline-flex;
  border-radius: 999px;
  background: #fff0f1;
  color: var(--red);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 14px;
  margin-bottom: 12px
}

.core-values {
  position: relative;
  background: linear-gradient(180deg, #fff 0, #fbf9ff 100%)
}

.core-values:before,
.about-exact:before,
.testimonials:before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 47, 55, .08), transparent 68%);
  filter: blur(2px);
  pointer-events: none
}

.core-values:before {
  right: 4%;
  top: 40px
}

.value-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 48px 28px;
  text-align: center;
  box-shadow: var(--shadow2);
  transition: .35s;
  position: relative;
  overflow: hidden
}

.value-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 47, 55, .05), rgba(77, 43, 170, .05));
  opacity: 0;
  transition: .35s
}

.value-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow);
  border-color: #ded6f4
}

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

.value-card .icon {
  position: relative;
  width: 86px;
  height: 86px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 39px
}

.bg-lav {
  background: #f0eaff;
  color: var(--purple2)
}

.bg-orange {
  background: #fff0e6;
  color: #ff711f
}

.bg-cyan {
  background: #e8faff;
  color: #1597a8
}

.bg-green {
  background: #f0fadf;
  color: #76a517
}

.value-card h3 {
  position: relative;
  font-size: 18px;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 12px
}

.value-card p {
  position: relative;
  font-size: 14px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.75;
  margin: 0
}

.about-exact {
  position: relative;
  background: #fff;
  margin-top: 65px;
}

.about-exact:before {
  left: 4%;
  top: 35%
}

.split-title {
  font-family: 'Playfair Display', serif;
  color: var(--purple2);
  font-size: clamp(35px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 18px
}

.split-title span {
  display: block;
  color: var(--red)
}

.about-exact p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 700
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 25px
}

.tick-list li {
  margin: 11px 0;
  color: #47415f;
  font-weight: 800;
  font-size: 14px
}

.tick-list li:before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  color: var(--red);
  margin-right: 10px
}

.video-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  background: #ddd;
  cursor: grab
}

.video-card.is-dragging {
  cursor: grabbing
}

.video-card>img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  transition: .55s
}

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

.gallery-main.is-changing {
  opacity: .45;
  transform: scale(1.02)
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--purple);
  font-size: 38px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  animation: pulse 2.2s infinite
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--purple);
  box-shadow: var(--shadow2);
  z-index: 4
}

.slide-left {
  left: 0
}

.slide-right {
  right: 0
}

.video-thumbs {
  position: absolute;
  left: 62px;
  bottom: 18px;
  display: flex;
  gap: 10px;
  z-index: 4
}

.video-thumbs img {
  width: 92px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #fff;
  box-shadow: var(--shadow2);
  cursor: pointer;
  transition: .25s
}

.video-thumbs img.active,
.video-thumbs img:hover {
  transform: translateY(-4px);
  border-color: var(--red)
}

.dot-pattern {
  position: absolute;
  width: 95px;
  height: 95px;
  background-image: radial-gradient(var(--red) 1.4px, transparent 1.4px);
  background-size: 10px 10px;
  opacity: .38
}

.dot-a {
  right: 7%;
  top: 10%
}

.dot-b {
  left: 3%;
  bottom: 18%
}

.program-shell {
  background: linear-gradient(135deg, #2a136c, #5632b3);
  padding: 56px 0 86px;
  border-radius: 54px 54px 0 0;
  position: relative;
  overflow: visible
}

.program-shell:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, .13), transparent 24%), radial-gradient(circle at 88% 70%, rgba(239, 47, 55, .20), transparent 28%);
  pointer-events: none
}

.program-shell .container {
  position: relative;
  z-index: 2
}

.program-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 18px 38px rgba(10, 4, 42, .18);
  transition: .35s
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 56px rgba(10, 4, 42, .30)
}

.program-card img {
  width: 100%;
  height: 170px;
  object-fit: cover
}

.program-card div {
  padding: 19px;
  position: relative
}

.program-card h3 {
  font-size: 18px;
  color: var(--purple);
  font-weight: 900
}

.program-card p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.6;
  width: 82%;
  margin: 0
}

.program-card a {
    margin-top: 18px;
    /* position: absolute; */
    right: 17px;
    bottom: 7px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--red);
    color: #fff;
}

.stats-band {
  max-width: 1040px;
  margin: 46px auto -120px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden
}

.stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 13px;
  align-items: center;
  padding: 24px 20px;
  border-right: 1px solid var(--line)
}

.stat:last-child {
  border: 0
}

.stat i {
  grid-row: 1/3;
  font-size: 36px;
  color: var(--purple2)
}

.stat strong {
  font-size: 29px;
  line-height: 1;
  color: var(--purple);
  font-weight: 900
}

.stat strong:after {
  content: "+"
}

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

.why-strip {
  padding: 104px 0 66px;
  background: #fff
}

.why-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1.05;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 16px
}

.why-strip h2 span {
  display: block;
  color: var(--red)
}

.why-strip p {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.75
}

.why-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid var(--line);
  background: linear-gradient(90deg, #fff, #fbfaff);
  border-radius: 0 22px 22px 0;
  overflow: hidden
}

.why-icons div {
  text-align: center;
  padding: 23px 12px;
  border-right: 1px solid var(--line);
  transition: .3s
}

.why-icons div:hover {
  background: #fff4f5;
  transform: translateY(-6px)
}

.why-icons i {
  display: block;
  font-size: 32px;
  color: var(--purple2);
  margin-bottom: 12px
}

.why-icons span {
  font-size: 13px;
  color: var(--purple);
  font-weight: 900;
  line-height: 1.5
}

.specialities-premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #fbf8ff 52%, #fff)
}

.special-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none
}

.special-bg-one {
  width: 330px;
  height: 330px;
  background: rgba(77, 43, 170, .09);
  left: -120px;
  top: 120px
}

.special-bg-two {
  width: 360px;
  height: 360px;
  background: rgba(239, 47, 55, .10);
  right: -140px;
  bottom: 80px
}

.speciality-layout {
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  gap: 42px;
  align-items: center
}

.speciality-list {
  display: grid;
  gap: 26px
}

.speciality-item {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px 24px;
  min-height: 132px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: var(--shadow2);
  transition: .35s;
  position: relative;
  overflow: hidden
}

.speciality-item:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(77, 43, 170, .04), rgba(239, 47, 55, .04));
  opacity: 0;
  transition: .35s
}

.speciality-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow)
}

.speciality-item:hover:before {
  opacity: 1
}

.left-list .speciality-item {
  flex-direction: row-reverse;
  text-align: right
}

.special-icon {
  position: relative;
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  font-size: 31px;
  border: 4px solid currentColor
}

.special-icon.purple {
  color: #6552c9
}

.special-icon.red {
  color: #ff6130
}

.special-icon.cyan {
  color: #6bb6c5
}

.special-icon.green {
  color: #9bd620
}

.special-icon.blue {
  color: #6bb8f2
}

.special-icon.orange {
  color: #ffa51f
}

.speciality-item h3 {
  position: relative;
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--purple);
  font-weight: 900
}

.speciality-item p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.65
}

.learning-tree {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px
}

.tree-card {
  width: 310px;
  height: 338px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid var(--line)
}

.tree-card:before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px dashed #d9cff1;
  border-radius: 24px
}

.tree-crown span {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--purple2);
  box-shadow: 0 12px 26px rgba(31, 18, 82, .13);
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) rotate(var(--r));
  animation: softFloat 5s ease-in-out infinite
}

.tree-crown span:nth-child(even) {
  color: var(--red);
  animation-delay: .8s
}

.tree-trunk {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 22px;
  height: 125px;
  background: #9e5d27;
  border-radius: 20px;
  transform: translateX(-50%)
}

.tree-trunk:before,
.tree-trunk:after {
  content: "";
  position: absolute;
  top: 15px;
  width: 78px;
  height: 14px;
  background: #9e5d27;
  border-radius: 20px
}

.tree-trunk:before {
  right: 12px;
  transform: rotate(-28deg);
  transform-origin: right center
}

.tree-trunk:after {
  left: 12px;
  transform: rotate(28deg);
  transform-origin: left center
}

.child {
  position: absolute;
  bottom: 72px;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px
}

.child-one {
  left: 78px;
  background: var(--purple2)
}

.child-two {
  right: 72px;
  background: var(--red)
}

.tree-ground {
  position: absolute;
  bottom: 48px;
  width: 210px;
  height: 22px;
  background: #a9df84;
  border-radius: 50%
}

.testimonials {
  position: relative;
  background: linear-gradient(180deg, #fff, #fbfaff)
}

.testimonials:before {
  right: 10%;
  top: 50px
}

.testimonial-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow2);
  transition: .35s;
  position: relative
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow)
}

.testimonial-card b {
  font-family: Georgia, serif;
  color: var(--red);
  font-size: 62px;
  line-height: .6
}

.testimonial-card p {
  color: #4e4964;
  font-weight: 700;
  line-height: 1.75;
  min-height: 84px
}

.person {
  display: flex;
  align-items: center;
  gap: 13px
}

.person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover
}

.person strong {
  display: block;
  color: var(--purple);
  font-weight: 900
}

.person small {
  color: var(--muted);
  font-weight: 700
}

.stars {
  position: absolute;
  right: 26px;
  bottom: 34px;
  color: var(--red);
  letter-spacing: 2px
}

.premium-cta-section {
  background: linear-gradient(180deg, #fbfaff, #fff)
}

.premium-cta {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, #291064, #5631b2);
  color: #fff;
  padding: 48px;
  box-shadow: var(--shadow)
}

.premium-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.05
}

.premium-cta p {
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
  line-height: 1.75
}

.cta-kicker {
  display: inline-flex;
  gap: 8px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 16px
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 45px;
}

.cta-features span {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 800
}

.cta-action-card {
  background: #fff;
  color: var(--ink);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .16);
  text-align: center
}

.cta-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff0f1;
  color: var(--red);
  font-size: 34px
}

.cta-action-card h3 {
  color: var(--purple);
  font-weight: 900
}

.cta-call {
  display: inline-flex;
  margin-top: 16px;
  color: var(--purple);
  font-weight: 900
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px)
}

.cta-glow-one {
  width: 260px;
  height: 260px;
  background: rgba(239, 47, 55, .22);
  right: -90px;
  top: -90px
}

.cta-glow-two {
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, .10);
  left: -80px;
  bottom: -100px
}

.faq-row {
  padding: 70px 0;
  background: linear-gradient(180deg, #fff, #fbf9ff)
}

.faq-inline,
.enquiry-box {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow2);
  padding: 34px
}

.faq-inline h3,
.enquiry-box h3 {
  font-family: 'Playfair Display', serif;
  color: var(--purple);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 17px
}

.enquiry-box p {
  color: var(--purple);
  font-size: 21px;
  font-weight: 900
}

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

.accordion-button {
  font-weight: 900;
  color: var(--purple);
  font-size: 16px;
  padding: 19px 20px;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: none !important
}

.accordion-body {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7
}

.form-control,
.form-select {
  height: 50px;
  border-radius: 9px;
  border: 1px solid #ddd6ed;
  font-weight: 700
}

.form-control:focus,
.form-select:focus {
  border-color: var(--purple3);
  box-shadow: 0 0 0 .18rem rgba(77, 43, 170, .10)
}

textarea.form-control {
  height: auto;
  min-height: 92px
}

.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1c074e, #321777);
  color: #fff;
  padding: 90px 0 0
}

.footer:before {
  content: "";
  position: absolute;
  left: -6%;
  top: -95px;
  width: 112%;
  height: 165px;
  border-radius: 0 0 50% 50%;
  background: #fff;
      background: radial-gradient(circle at 8% 20%, rgba(239, 47, 55, .05), transparent 24%), radial-gradient(circle at 92% 82%, rgba(77, 43, 170, .06), transparent 28%), linear-gradient(180deg, #fff, #fbf9ff) !important;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: .95
}

.footer-logo img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff
}

.footer-logo small {
  display: block;
  font-size: 12px;
  margin-top: 5px
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .84);
  font-weight: 700;
  line-height: 1.7
}

.footer h4 {
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 18px
}

.footer a {
  display: block;
  margin: 9px 0;
  transition: .25s
}

.footer a:hover {
  color: #fff;
  transform: translateX(5px)
}

.social {
  display: flex;
  gap: 12px;
  margin-top: 18px
}

.social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .24);
  margin: 0
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .16);
  margin-top: 15px;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 700;
  color: rgba(255, 255, 255, .84)
}

.footer-bottom a {
  display: inline;
  margin: 0;
  color: #fff
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-13px)
  }
}

@keyframes softFloat {

  0%,
  100% {
    transform: translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px))) rotate(var(--r, 0deg)) translateY(0)
  }

  50% {
    transform: translate(calc(-50% + var(--x, 0px)), calc(-50% + var(--y, 0px))) rotate(var(--r, 0deg)) translateY(-8px)
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .7), var(--shadow)
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0), var(--shadow)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), var(--shadow)
  }
}

@media(max-width:1199px) {
  .hero-floating-card {
    display: none
  }

  .speciality-layout {
    grid-template-columns: 1fr 300px 1fr;
    gap: 24px
  }

  .speciality-item h3 {
    font-size: 19px
  }

  .speciality-item p {
    font-size: 14px
  }

  .tree-card {
    width: 290px
  }
}

@media(max-width:991px) {
  .main-navbar {
    height: 78px
  }

  .navbar-brand img {
    width: 48px;
    height: 48px
  }

  .navbar-brand {
    font-size: 22px
  }

  .navbar-collapse {
    background: #fff;
    border-radius: 18px;
    margin-top: 13px;
    padding: 12px;
    box-shadow: var(--shadow)
  }

  .nav-link {
    padding: 13px 12px !important
  }

  .nav-link:after {
    display: none
  }

  .hero-exact {
    padding-top: 78px;
    min-height: auto
  }

  .heroSwiper {
    height: auto
  }

  .hero-slide {
    min-height: 760px;
    padding-bottom: 315px
  }

  .hero-slide:before {
    width: 100%;
    top: auto;
    height: 350px;
    left: 0;
    bottom: 0;
    /* background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .52) 25%, rgba(255, 255, 255, 0) 58%), var(--hero-img) center/cover no-repeat */
  }

  .hero-copy {
    padding-top: 45px
  }

  .min-vh-hero {
    min-height: auto
  }

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

  .hero-pills div:nth-child(2) {
    border-right: 0
  }

  .hero-pills div:nth-child(1),
  .hero-pills div:nth-child(2) {
    border-bottom: 1px solid var(--line)
  }

  .hero-nav {
    display: none
  }

  .section-space {
    padding: 72px 0
  }

  .stats-band {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: -92px
  }

  .stat {
    border-bottom: 1px solid var(--line)
  }

  .stat:nth-child(even) {
    border-right: 0
  }

  .why-strip {
    padding-top: 112px
  }

  .why-icons {
    grid-template-columns: repeat(2, 1fr);
    border-left: 0
  }

  .speciality-layout {
    grid-template-columns: 1fr
  }

  .left-list .speciality-item {
    flex-direction: row;
    text-align: left
  }

  .learning-tree {
    order: -1;
    min-height: 330px
  }

  .premium-cta {
    padding: 34px
  }

  .footer:before {
    height: 120px
  }

  .footer {
    padding-top: 70px
  }
}

@media(max-width:767px) {
  .container {
    padding-left: 22px;
    padding-right: 22px
  }

  .hero-copy h1 {
    font-size: 48px;
    letter-spacing: -1.4px
  }

  .hero-slide {
    min-height: 720px;
    padding-bottom: 280px
  }

  .hero-slide:before {
    height: 300px
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center
  }

  .hero-pills {
    grid-template-columns: 1fr
  }

  .hero-pills div {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important
  }

  .hero-pills div:last-child {
    border-bottom: 0 !important
  }

  .video-card {
    min-height: 330px
  }

  .video-card>img {
    height: 350px
  }

  .video-thumbs {
    left: 18px;
    right: 18px;
    overflow: auto
  }

  .video-thumbs img {
    width: 78px;
    height: 48px;
    flex: 0 0 auto
  }

  .program-shell {
    border-radius: 34px 34px 0 0
  }

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

  .stat {
    border-right: 0
  }

  .why-icons {
    grid-template-columns: 1fr
  }

  .speciality-item {
    padding: 20px;
    gap: 16px
  }

  .special-icon {
    width: 64px;
    height: 64px;
    font-size: 26px;
    border-width: 3px
  }

  .tree-card {
    width: 100%;
    max-width: 310px
  }

  .faq-inline,
  .enquiry-box {
    padding: 26px
  }

  .footer-bottom {
    display: block
  }

  .float-actions {
    left: 14px;
    bottom: 18px
  }

  .float-actions a {
    width: 44px;
    height: 44px;
    font-size: 20px
  }

  .scroll-top {
    right: 14px;
    bottom: 18px;
    width: 44px;
    height: 44px
  }
}

@media(max-width:460px) {
  .navbar-brand span {
    font-size: 18px
  }

  .navbar-brand small {
    font-size: 10px
  }

  .hero-copy h1 {
    font-size: 40px
  }

  .mini-title {
    font-size: 12px
  }

  .hero-desc {
    font-size: 14px
  }

  .hero-slide {
    min-height: 680px;
    padding-bottom: 250px
  }

  .hero-slide:before {
    height: 270px
  }

  .section-heading h2 {
    font-size: 32px
  }

  .stats-band {
    margin-bottom: -80px
  }

  .why-strip {
    padding-top: 100px
  }

  .footer:before {
    height: 95px
  }

  .footer {
    padding-top: 58px
  }
}

/* Final premium polish: compact typography, sticky top bar, modern UI elements */
:root {
  --shadow: 0 18px 50px rgba(31, 18, 82, .13);
  --shadow2: 0 10px 30px rgba(31, 18, 82, .09);
  --radius: 20px;
}

body {
  font-size: 15px;
  background: linear-gradient(180deg, #fff 0%, #fdfbff 42%, #fff 100%)
}

body:after {
  content: "";
  position: fixed;
  inset: auto -120px 12% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 47, 55, .08), transparent 68%);
  z-index: -1;
  pointer-events: none
}

.top-header {
  height: 38px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: #fff;
  z-index: 130;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(24, 8, 66, .18)
}

.top-header .container {
  height: 38px
}

.top-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .92)
}

.top-left i {
  color: #ff6870
}

.top-right {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto
}

.top-right a,
.top-right span {
  color: rgba(255, 255, 255, .9);
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.top-right a:hover {
  color: #fff
}

.top-social {
  gap: 10px !important
}

.top-social i {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: inline-grid;
  place-items: center;
  font-size: 11px
}

.main-navbar {
  top: 38px;
  height: 87px;
  border-bottom: 1px solid rgba(38, 17, 95, .06)
}

.main-navbar.scrolled {
  height: 68px;
  top: 38px
}

.navbar-brand {
  font-size: 22px;
  letter-spacing: -.4px
}

.navbar-brand img {
  width: 48px;
  height: 48px
}

.navbar-brand small {
  font-size: 11px
}

.nav-link {
  font-size: 13px;
  padding: 26px 12px !important
}

.nav-link:after {
  bottom: 17px
}

.btn {
  border-radius: 12px;
  font-size: 14px;
  padding: 12px 20px
}

.btn-brand {
  box-shadow: 0 14px 30px rgba(239, 47, 55, .22)
}

.hero-exact {
  padding-top: 114px;
  min-height: 620px
}

.heroSwiper {
  height: 510px
}

.hero-slide,
.min-vh-hero {
  min-height: 510px
}

.hero-copy h1 {
  font-size: clamp(38px, 4.8vw, 64px);
  letter-spacing: -1.7px;
  line-height: 1.02;
  margin-bottom: 18px
}

.hero-desc {
  font-size: 15px;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 24px
}

.mini-title {
  font-size: 12px;
  padding: 8px 14px;
  margin-bottom: 18px
}

.hero-pills {
  margin-top: 24px;
  border-radius: 18px
}

.hero-pills div {
  padding: 13px 14px;
  font-size: 11px
}

.hero-pills i {
  font-size: 20px
}

.hero-floating-card {
  border-radius: 18px;
  padding: 15px 19px
}

.hero-floating-card strong {
  font-size: 23px
}

.hero-floating-card i {
  width: 42px;
  height: 42px;
  font-size: 19px
}

.card-one {
  top: 159px
}

.card-two {
  bottom: 42px
}

.card-three {
  bottom: 74px
}

.hero-nav {
  width: 44px;
  height: 44px
}

.hero-pagination {
  bottom: 21px !important
}

.section-space {
  padding: 76px 0
}

.section-heading {
  margin-bottom: 36px
}

.section-heading h2 {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.3px
}

.section-heading p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 620px
}

.section-heading h2:after {
  width: 42px;
  height: 3px;
  margin-top: 10px
}

.value-card {
  border-radius: 22px;
  padding: 34px 24px;
  box-shadow: 0 14px 36px rgba(31, 18, 82, .07)
}

.value-card .icon {
  width: 74px;
  height: 74px;
  font-size: 34px;
  margin-bottom: 22px
}

.value-card h3 {
  font-size: 18px
}

.value-card p {
  font-size: 14px;
  line-height: 1.65
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 43, 170, .22)
}

.split-title {
  font-size: clamp(28px, 3vw, 40px) !important
}

.about-exact p,
.tick-list li {
  font-size: 14px
}

.video-card {
  border-radius: 26px
}

.program-shell {
  padding: 58px 0 0;
  border-radius: 34px 34px 0 0;
  background: radial-gradient(circle at 12% 0, rgba(255, 255, 255, .16), transparent 30%), linear-gradient(135deg, #24105f, #5630b4)
}

.program-card {
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(8, 4, 34, .14)
}

.program-card img {
  height: 170px
}

.program-card div {
  padding: 20px
}

.program-card h3 {
  font-size: 17px
}

.program-card p {
  font-size: 13px
}

.stats-band {
  border-radius: 18px;
  margin-top: 36px
}

.stat {
  padding: 22px 16px
}

.stat i {
  font-size: 30px
}

.stat strong {
  font-size: 25px
}

.stat span {
  font-size: 11px
}

.why-strip {
  padding: 58px 0
}

.why-strip h2 {
  font-size: 30px
}

.why-strip p {
  font-size: 14px
}

.why-icons {
  gap: 0
}

.why-icons div {
  min-height: 108px
}

.why-icons i {
  font-size: 30px
}

.why-icons span {
  font-size: 13px
}

.specialities-premium {
  padding-top: 76px;
  padding-bottom: 76px;
  background: radial-gradient(circle at 0 15%, rgba(77, 43, 170, .08), transparent 24%), radial-gradient(circle at 100% 70%, rgba(239, 47, 55, .08), transparent 25%), linear-gradient(180deg, #fff, #fbf8ff)
}

.speciality-layout {
  gap: 28px
}

.speciality-item {
  border-radius: 24px;
  padding: 22px;
  min-height: 126px;
  box-shadow: 0 16px 40px rgba(31, 18, 82, .08)
}

.speciality-item h3 {
  font-size: 19px
}

.speciality-item p {
  font-size: 13px;
  line-height: 1.6
}

.special-icon {
  width: 72px;
  height: 72px;
  font-size: 30px;
  border-width: 4px
}

.tree-card {
  width: 280px;
  height: 306px;
  border-radius: 28px
}

.tree-crown span {
  width: 44px;
  height: 44px
}

.tree-ground {
  bottom: 42px
}

.child {
  width: 52px;
  height: 52px;
  font-size: 24px
}

.tree-trunk {
  height: 112px
}

.testimonials {
  padding-top: 76px
}

.testimonial-card {
  border-radius: 22px;
  padding: 26px;
  min-height: 250px
}

.testimonial-card p {
  font-size: 14px;
  min-height: 78px
}

.premium-cta {
  border-radius: 28px;
  padding: 40px;
  background: radial-gradient(circle at 90% 0, rgba(255, 255, 255, .16), transparent 28%), linear-gradient(135deg, #211056, #5631b2)
}

.premium-cta h2 {
  font-size: clamp(28px, 3.2vw, 42px)
}

.cta-action-card {
  border-radius: 24px
}

.faq-row {
  padding: 66px 0
}

.faq-inline,
.enquiry-box {
  border-radius: 24px;
  padding: 30px
}

.faq-inline h3,
.enquiry-box h3 {
  font-size: 28px
}

.enquiry-box p {
  font-size: 18px
}

.accordion-button {
  font-size: 15px
}

.footer {
  padding-top: 84px
}

.footer h4 {
  font-size: 17px
}

.footer p,
.footer a {
  font-size: 14px
}

.footer-logo {
  font-size: 20px
}

.core-values,
.about-exact,
.testimonials,
.faq-row {
  position: relative
}

.core-values:after,
.about-exact:after,
.faq-row:after {
  content: "";
  position: absolute;
  inset: auto 8% 26px auto;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(239, 47, 55, .22) 1px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: .5;
  pointer-events: none
}

.about-exact:after {
  left: 7%;
  right: auto;
  bottom: 18px;
  background-image: radial-gradient(rgba(77, 43, 170, .18) 1px, transparent 1.5px)
}

.float-actions {
  left: 18px;
  bottom: 86px
}

.float-actions a {
  width: 48px;
  height: 48px
}

.scroll-top {
  bottom: 24px
}

@media(max-width:991px) {
  .top-header {
    display: none
  }

  .main-navbar,
  .main-navbar.scrolled {
    top: 0;
    height: 74px
  }

  .hero-exact {
    padding-top: 74px
  }

  .navbar-collapse {
    max-height: calc(100vh - 88px);
    overflow: auto
  }

  .hero-slide {
    min-height: 710px;
    padding-bottom: 285px
  }

  .hero-slide:before {
    height: 320px
  }

  .hero-copy h1 {
    font-size: 44px
  }

  .section-space {
    padding: 64px 0
  }

  .speciality-layout {
    gap: 22px
  }

  .float-actions {
    left: 14px;
    bottom: 76px
  }

  .footer {
    padding-top: 68px
  }
}

@media(max-width:767px) {
  body {
    font-size: 14px
  }

  .hero-copy h1 {
    font-size: 39px
  }

  .hero-desc {
    font-size: 14px
  }

  .section-heading h2 {
    font-size: 30px
  }

  .hero-slide {
    min-height: 690px;
    padding-bottom: 260px
  }

  .hero-slide:before {
    height: 285px
  }

  .value-card {
    padding: 30px 22px
  }

  .program-card img {
    height: 160px
  }

  .speciality-item {
    align-items: center
  }

  .speciality-item h3 {
    font-size: 17px
  }

  .speciality-item p {
    font-size: 13px
  }

  .premium-cta {
    padding: 28px
  }

  .faq-inline h3,
  .enquiry-box h3 {
    font-size: 25px
  }

  .float-actions .label {
    display: none
  }
}

@media(max-width:460px) {
  .hero-copy h1 {
    font-size: 34px
  }

  .hero-slide {
    min-height: 655px;
    padding-bottom: 238px
  }

  .hero-slide:before {
    height: 250px
  }

  .navbar-brand span {
    font-size: 17px
  }

  .btn {
    font-size: 13px
  }

  .section-heading h2 {
    font-size: 28px
  }

  .footer:before {
    height: 88px
  }
}

/* Final alignment and modern polish overrides */
html,
body {
  max-width: 100%;
  overflow-x: hidden
}

body {
  background: #fff
}

.container {
  max-width: 1180px
}

.section-space {
  padding: 40px 0
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px
}

.section-heading h2 {
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -.6px
}

.section-heading p {
  font-size: 15px;
  line-height: 1.7
}

.main-navbar {
  box-shadow: 0 8px 28px rgba(22, 9, 72, .08);
  border-bottom: 1px solid rgba(77, 43, 170, .08)
}

.top-header {
  height: 36px;
  background: linear-gradient(90deg, #21085e, #3f2490);
  font-size: 13px
}

.main-navbar {
  top: 36px
}

.main-navbar.scrolled {
  top: 0
}

.hero-exact {
  padding-top: 120px;
  min-height: 710px
}

.heroSwiper {
  height: 600px
}

.hero-slide,
.min-vh-hero {
  min-height: 520px
}

.hero-copy h1 {
  font-size: clamp(38px, 4.2vw, 58px) !important;
  line-height: 1.07;
  letter-spacing: -1.2px
}

.hero-desc {
  font-size: 15px;
  max-width: 500px
}

.hero-pills {
  max-width: 560px
}

.hero-pills div {
  min-width: 0
}

.hero-pills span {
  white-space: normal
}

.core-values {
  padding-top: 82px;
  background: rgb(240, 234, 255);
}

.value-card {
  min-height: 260px;
  padding: 38px 28px;
  border-radius: 24px
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 54px rgba(32, 17, 83, .12)
}

.program-shell {
  padding: 58px 0 64px !important;
  border-radius: 36px 36px 0 0;
  overflow: hidden
}

.programSwiper {
  padding: 8px 4px 28px;
  overflow: hidden
}

.programSwiper .swiper-wrapper {
  align-items: stretch
}

.programSwiper .swiper-slide {
  height: auto
}

.program-card {
  height: 100%;
  min-height: 310px;
  display: flex;
  flex-direction: column
}

.program-card img {
  display: block;
  height: 220px
}

.program-card div {
  flex: 1
}

.program-card p {
  width: 78%
}

.stats-band {
  position: relative;
  z-index: 3;
  margin: 38px auto 0 !important;
  max-width: 1030px;
  border-radius: 20px;
  box-shadow: 0 20px 55px rgba(23, 10, 74, .18);
  transform: none !important
}

.stat {
  padding: 22px 18px
}

.stat strong {
  font-size: 25px
}

.why-strip {
  padding: 70px 0 !important;
  background: linear-gradient(180deg, #fff, #fbf9ff);
  overflow: hidden
}

.why-strip .row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(31, 18, 82, .08);
  padding: 22px
}

.why-strip h2 {
  font-size: clamp(26px, 2.5vw, 34px) !important
}

.why-icons {
  border-left: 0;
  border-radius: 22px;
  background: #fbfaff;
  box-shadow: inset 0 0 0 1px var(--line)
}

.why-icons div {
  min-height: 128px;
  display: grid;
  place-items: center;
  align-content: center
}

.specialities-premium {
  padding-top: 82px !important
}

.speciality-layout {
  grid-template-columns: minmax(0, 1fr) 320px minmax(0, 1fr);
  gap: 32px
}

.speciality-item {
  min-height: 118px;
  padding: 20px 22px;
  border-radius: 22px
}

.speciality-item h3 {
  font-size: 18px
}

.speciality-item p {
  font-size: 13px
}

.special-icon {
  width: 68px;
  height: 68px;
  font-size: 27px
}

.tree-card {
  width: 300px;
  height: 320px
}

.premium-cta-section {
  padding-top: 70px !important
}

.premium-cta {
  border-radius: 30px;
  padding: 44px !important
}

.premium-cta h2 {
  font-size: clamp(28px, 3vw, 33px) !important
}

.cta-action-card {
  max-width: 390px;
  margin-left: auto;
  border-radius: 24px
}

.faq-row {
  padding: 72px 0;
  background: linear-gradient(180deg, #fbf9ff, #fff)
}

.faq-inline,
.enquiry-box {
  min-height: 0;
  height: auto;
  padding: 32px;
  border-radius: 26px
}

.faq-inline h3,
.enquiry-box h3 {
  font-size: clamp(26px, 2.6vw, 34px) !important
}

.accordion-button {
  padding: 18px 16px
}

.enquiry-box .row {
  align-items: start
}

.footer {
  padding-top: 78px
}

.footer:before {
  height: 135px;
  top: -86px
}

.float-actions {
  left: 18px;
  bottom: 86px
}

.float-actions a {
  box-shadow: 0 14px 30px rgba(31, 18, 82, .22)
}

@media(max-width:1199px) {
  .container {
    max-width: 960px
  }

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

  .stat {
    grid-template-columns: 1fr;
    text-align: center
  }

  .stat i {
    grid-row: auto
  }

  .speciality-layout {
    grid-template-columns: 1fr
  }

  .learning-tree {
    order: -1
  }

  .left-list .speciality-item {
    flex-direction: row;
    text-align: left
  }

  .tree-card {
    margin: auto
  }

  .why-strip .row {
    padding: 20px
  }

  .cta-action-card {
    margin-left: 0
  }
}

@media(max-width:991px) {
  .top-header {
    display: none
  }

  .main-navbar,
  .main-navbar.scrolled {
    top: 0;
    height: 74px
  }

  .hero-exact {
    padding-top: 74px
  }

  .hero-slide {
    min-height: 700px;
    padding-bottom: 280px
  }

  .hero-copy {
    padding-top: 38px
  }

  .hero-slide:before {
    height: 310px
  }

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

  .stat:nth-child(2n) {
    border-right: 0
  }

  .why-strip {
    padding: 60px 0 !important
  }

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

  .premium-cta .row {
    text-align: center
  }

  .cta-features {
    justify-content: center
  }

  .cta-action-card {
    margin: 12px auto 0
  }

  .faq-row .row {
    --bs-gutter-y: 22px
  }

  .footer {
    padding-top: 70px
  }
}

@media(max-width:767px) {
  .section-space {
    padding: 62px 0
  }

  .hero-copy h1 {
    font-size: 38px !important
  }

  .hero-slide {
    min-height: 680px;
    padding-bottom: 250px
  }

  .hero-slide:before {
    height: 280px
  }

  .hero-pills {
    margin-top: 22px
  }

  .value-card {
    min-height: auto
  }

  .program-shell {
    padding: 48px 0 54px !important;
    border-radius: 28px 28px 0 0
  }

  .programSwiper {
    padding-left: 2px;
    padding-right: 2px
  }

  .stats-band {
    grid-template-columns: 1fr;
    margin-top: 28px !important
  }

  .stat {
    border-right: 0 !important
  }

  .why-strip .row {
    border-radius: 22px;
    padding: 18px
  }

  .why-icons {
    grid-template-columns: 1fr;
    border-radius: 18px
  }

  .speciality-item {
    display: block;
    text-align: center !important
  }

  .left-list .speciality-item {
    display: block;
    text-align: center !important
  }

  .special-icon {
    margin: 0 auto 14px
  }

  .premium-cta {
    padding: 28px !important
  }

  .faq-inline,
  .enquiry-box {
    padding: 24px
  }

  .footer:before {
    height: 90px;
    top: -58px
  }

  .footer {
    padding-top: 55px
  }

  .float-actions {
    left: 12px;
    bottom: 72px
  }

  .scroll-top {
    right: 12px
  }
}

@media(max-width:460px) {
  .container {
    padding-left: 18px;
    padding-right: 18px
  }

  .hero-copy h1 {
    font-size: 32px !important
  }

  .hero-desc {
    font-size: 13px
  }

  .hero-slide {
    min-height: 650px;
    padding-bottom: 230px
  }

  .hero-slide:before {
    height: 250px
  }

  .mini-title {
    font-size: 11px
  }

  .program-card {
    min-height: 300px
  }

  .program-card img {
    height: 150px
  }

  .section-heading h2 {
    font-size: 28px
  }

  .faq-inline h3,
  .enquiry-box h3 {
    font-size: 24px !important
  }

  .btn {
    min-height: 46px
  }
}

/* ===== Final user requested refinement: alignment, form depth, gallery, sticky behavior ===== */
body {
  background: linear-gradient(180deg, #fff 0%, #fbf9ff 45%, #fff 100%);
}

.top-header {
  transition: transform .32s ease, opacity .32s ease;
  will-change: transform;
}

.top-header.hide-top {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}

.main-navbar {
  transition: top .32s ease, height .32s ease, box-shadow .32s ease, background .32s ease;
  z-index: 140;
}

.main-navbar.scrolled {
  top: 0 !important;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(18px);
}

.navbar-brand img,
.footer-logo img,
#preloader img {
  border-radius: 0 !important;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: none !important;
}

.navbar-brand img {
  width: 86px !important;
  height: 46px !important;
}

.footer-logo img {
  width: 76px !important;
  height: 48px !important;
}

#preloader img {
  width: 92px !important;
  height: auto !important;
}

.hero-copy h1 {
  font-size: clamp(34px, 3.8vw, 52px) !important;
}

.section-heading h2 {
  font-size: clamp(28px, 2.8vw, 40px) !important;
}

.hero-slide:before {
  filter: saturate(1.05) contrast(1.02);
}

.hero-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 36%, rgba(239, 47, 55, .12), transparent 21%), radial-gradient(circle at 88% 18%, rgba(77, 43, 170, .12), transparent 25%);
  pointer-events: none;
  z-index: 0
}

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

.hero-floating-card {
  z-index: 4
}

.hero-pills {
  position: relative;
  z-index: 5;
  box-shadow: 0 16px 44px rgba(31, 18, 82, .10)
}

.video-card,
.gallery-card {
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.video-card.is-dragging,
.gallery-card.is-dragging {
  cursor: grabbing;
}

.video-card>img {
  pointer-events: none;
}

.video-thumbs img {
  pointer-events: auto;
}

.video-card:after {
  content: "Drag / swipe";
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, .92);
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
  border-radius: 999px;
  padding: 8px 11px;
  box-shadow: 0 10px 24px rgba(31, 18, 82, .14);
  opacity: .0;
  transform: translateY(8px);
  transition: .25s
}

.video-card:hover:after {
  opacity: 1;
  transform: none
}

/* Programs alignment */
.programSwiper {
  max-width: 100%;
}

.program-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .6);
}

.program-card img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.program-card h3 {
  line-height: 1.25
}

.program-card p {
  width: calc(100% - 54px);
}

.program-card a {
  box-shadow: 0 12px 26px rgba(239, 47, 55, .22);
  display: flex;
    gap: 10px;
    padding: 10px;
        width: max-content;
    border-radius: 21%
}

/* Stronger testimonials */
.testimonials {
  background: radial-gradient(circle at 18% 30%, rgba(239, 47, 55, .055), transparent 24%), radial-gradient(circle at 86% 24%, rgba(77, 43, 170, .07), transparent 26%), linear-gradient(180deg, #fff, #fbf9ff 70%, #fff);
  overflow: hidden;
}

.testimonialSwiper {
  overflow: hidden !important;
  padding: 8px 56px 54px !important;
}

.testimonialSwiper .swiper-wrapper {
  align-items: stretch;
}

.testimonialSwiper .swiper-slide {
  height: auto;
}

.testimonial-card {
  min-height: 285px;
  border-radius: 28px !important;
  padding: 30px !important;
  background: linear-gradient(180deg, #fff, #fff 66%, #fbf9ff) !important;
  border: 1px solid rgba(77, 43, 170, .13) !important;
  box-shadow: 0 18px 48px rgba(31, 18, 82, .09) !important;
  overflow: hidden;
}

.testimonial-card:before {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 47, 55, .13), transparent 68%);
}

.testimonial-card:after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 20px;
  width: 76px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), transparent);
  opacity: .55;
}

.testimonial-card b {
  font-size: 58px !important;
  display: block;
  margin-bottom: 6px;
}

.testimonial-card p {
  min-height: 92px !important;
  font-size: 14px !important;
}

.person img {
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(31, 18, 82, .14)
}

.testimonialSwiper .swiper-button-prev,
.testimonialSwiper .swiper-button-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--purple);
  box-shadow: 0 16px 34px rgba(31, 18, 82, .14);
  border: 1px solid rgba(77, 43, 170, .12)
}

.testimonialSwiper .swiper-button-prev:after,
.testimonialSwiper .swiper-button-next:after {
  font-size: 18px;
  font-weight: 900
}

.testimonialSwiper .swiper-pagination-bullet-active {
  background: var(--red)
}

/* Gallery */
.gallery-section {
  position: relative;
  background: linear-gradient(180deg, #fff, #fbf8ff);
  overflow: hidden;
}

.gallery-section:before {
  content: "";
  position: absolute;
  left: -120px;
  top: 120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(77, 43, 170, .06)
}

.gallery-section:after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: 60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(239, 47, 55, .06)
}

.gallery-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-auto-rows: 210px;
  gap: 20px;
}

.gallery-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(31, 18, 82, .10);
  border: 1px solid rgba(77, 43, 170, .10);
}

.gallery-tile.tall {
  grid-row: span 2
}

.gallery-tile.wide {
  grid-column: span 2
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
}

.gallery-tile:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(21, 8, 66, .78));
  z-index: 1;
  opacity: .82
}

.gallery-tile span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, .32)
}

.gallery-tile:hover img {
  transform: scale(1.08);
  filter: saturate(1.1)
}

/* CTA and enquiry cards */
.premium-cta {
  isolation: isolate
}

.premium-cta:before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  pointer-events: none
}

.cta-action-card p {
  color: #6a647e !important;
  font-size: 14px !important
}

.cta-action-card .btn {
  margin-top: 10px
}

.faq-row {
  position: relative;
  background: radial-gradient(circle at 12% 10%, rgba(77, 43, 170, .08), transparent 28%), linear-gradient(180deg, #fbf9ff, #fff);
}

.faq-inline,
.enquiry-box {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .92) !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 58px rgba(31, 18, 82, .10) !important;
  border: 1px solid rgba(77, 43, 170, .14) !important;
}

.faq-inline:before,
.enquiry-box:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--purple3));
}

.enquiry-box:after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(rgba(239, 47, 55, .26) 1.2px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: .7;
  pointer-events: none
}

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

.enquiry-head h3 {
  margin-bottom: 5px
}

.enquiry-badge {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff0f1, #f3edff);
  color: var(--red);
  font-size: 32px;
  box-shadow: 0 14px 36px rgba(239, 47, 55, .14)
}

.form-control,
.form-select {
  height: 54px;
  border-radius: 14px !important;
  background: #fff;
  border: 1px solid rgba(77, 43, 170, .18);
  box-shadow: 0 8px 18px rgba(31, 18, 82, .03)
}

textarea.form-control {
  min-height: 116px
}

.accordion-button {
  border-radius: 14px !important
}

.accordion-item {
  background: transparent
}

.accordion-body {
  background: #fbf9ff;
  border-radius: 14px;
  margin: 0 0 12px
}

/* Floating actions */
.float-actions {
  z-index: 160
}

.float-actions a {
  transition: transform .22s ease, box-shadow .22s ease
}

.float-actions a:hover {
  transform: translateX(4px) scale(1.06)
}

@media(max-width:991px) {
  .navbar-brand img {
    width: 74px !important;
    height: 40px !important
  }

  .hero-exact {
    padding-top: 74px !important
  }

  .testimonialSwiper {
    padding: 8px 40px 50px !important
  }

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

  .gallery-tile.tall {
    grid-row: span 1
  }

  .gallery-tile.wide {
    grid-column: span 1
  }

  .enquiry-head {
    align-items: center
  }

  .stats-band {
    max-width: 720px
  }

  .top-header {
    display: none !important
  }

  .main-navbar,
  .main-navbar.scrolled {
    top: 0 !important
  }
}

@media(max-width:767px) {
  .testimonialSwiper {
    padding: 8px 4px 46px !important
  }

  .testimonialSwiper .swiper-button-prev,
  .testimonialSwiper .swiper-button-next {
    display: none
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
    gap: 16px
  }

  .gallery-tile span {
    font-size: 15px
  }

  .enquiry-head {
    display: block
  }

  .enquiry-badge {
    margin: 12px 0 0
  }

  .faq-inline,
  .enquiry-box {
    padding: 24px !important
  }

  .hero-floating-card {
    display: none
  }

  .navbar-brand img {
    width: 68px !important;
    height: 37px !important
  }

  .footer-logo img {
    width: 68px !important;
    height: 40px !important
  }

  .float-actions {
    bottom: 70px
  }

  .video-card:after {
    display: none
  }
}

/* ===== Final polish requested: visible hero images, larger transparent logo, gallery lightbox, responsive alignment ===== */
.navbar-brand img,
.footer-logo img,
.loader-mark img {
  content: url('../img/logo-transparent-final.png');
  border-radius: 0 !important;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: none !important;
}

.navbar-brand img {
  width: 178px !important;
  height: 48px !important;
  max-width: 270px;
}

.navbar-brand span {
  display: none !important;
}

.footer-logo img {
    width: 300px !important;
    height: 82px !important;

}

.footer-logo span {
  display: none !important;
}

.loader-mark img {
  width: 142px !important;
  height: 50px !important;
}

.loader-mark {
  width: 150px;
  height: 70px
}

.loader-mark span {
  display: none !important;
}

.top-header.hide-top {
  transform: translateY(-120%) !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.main-navbar.scrolled {
  top: 0 !important;
  height: 87px !important;
}

body.scrolled-page .hero-exact {}

.hero-exact {
  background: linear-gradient(110deg, #fff 0 44%, #f4f0ff 44% 100%) !important;
}

.hero-slide:before {
  width: 64% !important;
  opacity: 1 !important;
  background: linear-gradient(90deg, #fff 0%, rgb(255, 255, 255) 12%, rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, 0) 10%), var(--hero-img) center right/cover no-repeat !important;
  filter: saturate(1.05) contrast(1.02);
}

.hero-slide:after {
  background: radial-gradient(circle at 8% 38%, rgba(239, 47, 55, .10), transparent 19%), radial-gradient(circle at 88% 18%, rgba(77, 43, 170, .10), transparent 24%), linear-gradient(90deg, rgba(255, 255, 255, .16), transparent 58%) !important;
}

.hero-copy h1 {
  font-size: clamp(36px, 3.8vw, 56px) !important;
  line-height: 1.1 !important;
  letter-spacing: -1px !important;
}

.hero-desc {
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.hero-floating-card {
  transform: scale(.92);
}

.faq-row {
  padding: 78px 0 !important;
  background: radial-gradient(circle at 8% 20%, rgba(239, 47, 55, .05), transparent 24%), radial-gradient(circle at 92% 82%, rgba(77, 43, 170, .06), transparent 28%), linear-gradient(180deg, #fff, #fbf9ff) !important;
}

.faq-inline,
.enquiry-box {
  height: 100%;
  border-radius: 30px !important;
  padding: 38px !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .90)) !important;
  box-shadow: 0 28px 75px rgba(32, 17, 83, .12) !important;
}

.section-tag {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-radius: 999px;
  background: #fff0f1;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 13px;
  margin-bottom: 12px;
}

.faq-inline h3,
.enquiry-box h3 {
  font-size: clamp(25px, 2.5vw, 34px) !important;
  margin-bottom: 16px !important;
}

.faq-inline .accordion {
  position: relative;
  z-index: 2;
}

.faq-inline .accordion-item {
  border: 0 !important;
  margin-bottom: 11px;
  background: #fff;
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(31, 18, 82, .05);
  overflow: hidden;
}

.faq-inline .accordion-button {
  padding: 17px 18px !important;
  border-radius: 16px !important;
}

.faq-inline .accordion-button:not(.collapsed) {
  color: var(--red) !important;
  background: #fff7f8 !important;
}

.enquiry-box {
  background: linear-gradient(135deg, #fff 0, #fff 62%, #fff7f8 100%) !important;
}

.enquiry-box .btn {
  min-width: 190px;
  justify-content: center;
}

.enquiry-badge {
  animation: float 4s ease-in-out infinite;
}

.testimonials {
  background: radial-gradient(circle at 88% 20%, rgba(239, 47, 55, .06), transparent 25%), linear-gradient(180deg, #fff, #fbfaff) !important;
}

.testimonialSwiper {
  padding: 8px 58px 58px !important;
  overflow: hidden;
}

.testimonial-card {
  border-radius: 30px !important;
  background: linear-gradient(180deg, #fff, #fff 55%, #fbf9ff) !important;
  border: 1px solid rgba(77, 43, 170, .14) !important;
  box-shadow: 0 24px 70px rgba(31, 18, 82, .11) !important;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
}

.testimonial-card .person img {
  border: 4px solid #fff;
  box-shadow: 0 8px 18px rgba(31, 18, 82, .15);
}

.gallery-section {
  position: relative;
  background: linear-gradient(180deg, #fff, #fbf8ff);
  overflow: hidden;
}

.gallery-section:before {
  content: "";
  position: absolute;
  left: -120px;
  top: 100px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(77, 43, 170, .07);
  filter: blur(1px);
}

.gallery-section:after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: 60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(239, 47, 55, .07);
}

.gallery-mosaic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-auto-rows: 215px;
  gap: 20px;
}

.gallery-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(31, 18, 82, .11);
  border: 1px solid rgba(77, 43, 170, .12);
  cursor: zoom-in;
}

.gallery-tile.tall {
  grid-row: span 2
}

.gallery-tile.wide {
  grid-column: span 2
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease, filter .65s ease;
}

.gallery-tile:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(21, 8, 66, .82));
  z-index: 1;
  opacity: .82
}

.gallery-tile span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, .32)
}

.gallery-tile:hover img {
  transform: scale(1.08);
  filter: saturate(1.12)
}

.gallery-modal .modal-content {
  background: #120631;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .45);
}

.gallery-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 5;
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  padding: 11px;
}

.galleryLightboxSwiper {
  height: min(78vh, 760px);
}

.galleryLightboxSwiper .swiper-slide {
  display: grid;
  place-items: center;
  background: #120631;
}

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

.galleryLightboxSwiper .swiper-pagination-bullet {
  background: #fff;
  opacity: .55
}

.galleryLightboxSwiper .swiper-pagination-bullet-active {
  background: var(--red) !important;
  opacity: 1
}

.galleryLightboxSwiper .swiper-button-prev,
.galleryLightboxSwiper .swiper-button-next {
  background: #fff !important;
}

.video-card img,
.program-card img,
.gallery-tile img {
  user-select: none;
  -webkit-user-drag: none;
}

@media(max-width:1199px) {
  .navbar-brand img {
    width: 156px !important
  }

  .hero-slide:before {
    width: 62% !important
  }

  .gallery-mosaic {
    grid-auto-rows: 190px
  }
}

@media(max-width:991px) {
  .navbar-brand img {
    width: 148px !important;
    height: 42px !important
  }

  .main-navbar,
  .main-navbar.scrolled {
    top: 0 !important;
    height: 90px !important
  }

  .hero-exact {
    padding-top: 74px !important
  }

  .hero-slide:before {
    width: 100% !important;
    height: 330px !important;
    top: auto !important;
    bottom: 0 !important;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .58) 26%, rgba(255, 255, 255, 0) 65%), var(--hero-img) center/cover no-repeat !important
  }

  .hero-slide {
    padding-bottom: 300px !important;
    min-height: 700px !important
  }

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

  .gallery-tile.tall {
    grid-row: span 1
  }

  .gallery-tile.wide {
    grid-column: span 1
  }

  .faq-inline,
  .enquiry-box {
    padding: 30px !important
  }

  .testimonialSwiper {
    padding: 8px 42px 52px !important
  }

  .top-header {
    display: none !important;
  }
}

@media(max-width:767px) {
  .navbar-brand img {
    width: 132px !important;
    height: 38px !important
  }

  .hero-copy h1 {
    font-size: 34px !important
  }

  .hero-slide {
    min-height: 650px !important;
    padding-bottom: 260px !important
  }

  .hero-slide:before {
    height: 285px !important
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 245px;
    gap: 16px
  }

  .gallery-tile span {
    font-size: 15px
  }

  .faq-inline,
  .enquiry-box {
    padding: 24px !important;
    border-radius: 24px !important
  }

  .testimonialSwiper {
    padding: 8px 4px 48px !important
  }

  .galleryLightboxSwiper {
    height: 70vh
  }

  .float-actions {
    left: 10px;
    bottom: 72px
  }

  .float-actions a {
    width: 46px;
    height: 46px;
    font-size: 20px
  }

  .scroll-top {
    right: 12px
  }
}

@media(max-width:460px) {
  .navbar-brand img {
    width: 118px !important;
    height: 34px !important
  }

  .hero-copy h1 {
    font-size: 30px !important
  }

  .hero-desc {
    font-size: 13px !important
  }

  .hero-slide {
    min-height: 620px !important;
    padding-bottom: 230px !important
  }

  .hero-slide:before {
    height: 250px !important
  }

  .faq-inline h3,
  .enquiry-box h3 {
    font-size: 23px !important
  }

  .gallery-mosaic {
    grid-auto-rows: 220px
  }
}

/* ===== Hero image hard-fix: use real image layer so background always shows ===== */
.hero-slide {
  isolation: isolate;
}

.hero-bg-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 66%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 1;
  /* filter: saturate(1.08) contrast(1.04);
  transform: scale(1.015);
  transition: transform 6s ease; */
}

.swiper-slide-active .hero-bg-photo {
  transform: scale(1.075);
}

.hero-slide:before {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 72% !important;
  /* background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .84) 13%, rgba(255, 255, 255, .38) 34%, rgba(255, 255, 255, .06) 62%, rgba(255, 255, 255, .02) 100%) !important; */
  z-index: 1 !important;
  pointer-events: none !important;
}

.hero-slide:after {
  z-index: 2 !important;
  pointer-events: none !important;
}

.hero-container {
  z-index: 5 !important;
}

.hero-floating-card,
.hero-nav,
.hero-pagination {
  z-index: 8 !important;
}

@media(max-width:991px) {
  .hero-bg-photo {
    left: 0;
    right: auto;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 330px;
    object-position: center
  }

  .hero-slide:before {
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 330px !important;
    /*background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .56) 25%, rgba(255, 255, 255, .06) 70%, rgba(255, 255, 255, 0) 100%) !important;*/
            background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, .56) 25%, rgb(255 255 255 / 51%) 70%, rgba(255, 255, 255, 0) 100%) !important;
  }

  .hero-slide:after {
    background: radial-gradient(circle at 8% 30%, rgba(239, 47, 55, .10), transparent 20%) !important
  }
}

@media(max-width:767px) {
  .hero-bg-photo {
    height: 285px
  }

  .hero-slide:before {
    height: 285px !important
  }
}

@media(max-width:460px) {
  .hero-bg-photo {
    height: 250px
  }

  .hero-slide:before {
    height: 250px !important
  }
}

/* ===== Final PHP responsive and alignment audit fixes ===== */
body {
  padding-top: 0 !important;
}

.top-header.fixed-top {
  top: 0 !important;
}

.main-navbar.fixed-top {
  top: 36px !important;
}

.main-navbar.scrolled {
  top: 0 !important;
}

.hero-exact {
  padding-top: 112px !important;
}

.navbar-brand img {
  width: 270px !important;
  height: auto !important;
  max-height: 80px !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  box-shadow: none !important;
  background: transparent !important;
}

.navbar-brand span {
  line-height: 1.02;
}

.navbar-brand small {
  font-size: 11px !important;
}

.faq-row .row {
  align-items: stretch;
}

.faq-inline,
.enquiry-box {
  min-height: 100%;
}

.enquiry-box {
  position: relative;
  overflow: hidden;
}

.enquiry-box:before {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(239, 47, 55, .08);
}

.enquiry-box:after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 130px;
  height: 92px;
  background-image: radial-gradient(rgba(239, 47, 55, .22) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: .75;
  pointer-events: none;
}

.enquiry-box form,
.enquiry-head {
  position: relative;
  z-index: 2;
}

.faq-inline {
  position: relative;
  overflow: hidden;
}

.faq-inline:after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(77, 43, 170, .07);
}

.testimonialSwiper {
  overflow: hidden !important;
}

.testimonial-card {
  height: 100%;
  min-height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  min-height: 86px;
}

.programSwiper {
  overflow: hidden !important;
}

.program-card {
  height: 100%;
}

.galleryLightboxSwiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}

@media(max-width:1199px) {
  .nav-link {
    font-size: 12px !important;
    padding-left: 8px !important;
    padding-right: 8px !important
  }

  .btn {
    padding: 11px 16px !important
  }

  .hero-exact {
    padding-top: 106px !important
  }
}

@media(max-width:991px) {
  .top-header {
    display: none !important
  }

  .main-navbar.fixed-top,
  .main-navbar.scrolled {
    top: 0 !important
  }

  .hero-exact {
    padding-top: 74px !important
  }

  .navbar-brand img {
    width: 138px !important;
    max-height: 44px !important
  }

  .navbar-collapse {
    border: 1px solid var(--line)
  }

  .faq-inline,
  .enquiry-box {
    height: auto
  }

  .float-actions .label {
    display: none
  }

  .footer .row>div {
    text-align: left
  }
}


.cta-action-card .btn-brand{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    margin: 0 auto;
    padding: 14px 30px;
}

.cta-action-card{
    text-align: center;
}








@media(max-width:767px) {
  .section-space {
    padding: 58px 0 !important
  }

  .section-heading {
    margin-bottom: 30px !important
  }

  .section-heading h2 {
    font-size: 28px !important
  }

  .navbar-brand img {
    width: 126px !important;
    max-height: 40px !important
  }

  .faq-row {
    padding: 58px 0 !important
  }

  .faq-inline,
  .enquiry-box {
    padding: 22px !important
  }

  .faq-inline h3,
  .enquiry-box h3 {
    font-size: 25px !important
  }

  .enquiry-box p {
    font-size: 16px !important
  }

  .form-control,
  .form-select {
    height: 48px
  }

  .footer-bottom {
    display: block;
    text-align: center
  }

  .footer-bottom span {
    display: block;
    margin: 8px 0
  }

  .hero-pills {
    box-shadow: 0 12px 30px rgba(31, 18, 82, .08)
  }
  .hero-pills{
    display: none;
  }
  .about-exact {
    position: relative;
    background: #fff;
    margin-top: 1px !important;
}
    .section-space {
        padding: 30px 0 !important;
    }
        .hero-bg-photo {
        height: 398px;
    }
    .heroSwiper {
    height: 465px;
}
.hero-exact {
    padding-top: 120px;
    min-height: 528px;
}
}

@media(max-width:480px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important
  }

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

  .navbar-brand img {
    width: 112px !important
  }

  .hero-copy h1 {
    font-size: 29px !important
  }

  .mini-title {
    font-size: 12px !important
  }

  .stats-band {
    grid-template-columns: 1fr !important
  }

  .why-icons {
    grid-template-columns: 1fr !important
  }

  .speciality-item {
    padding: 22px !important
  }

  .gallery-mosaic {
    grid-auto-rows: 210px !important
  }

  .float-actions {
    left: 8px !important;
    bottom: 70px !important
  }

  .scroll-top {
    width: 44px;
    height: 44px
  }
      .hero-slide {
        min-height: 403px !important;
        padding-bottom: 190px !important;
    }
    .hero-slide, .min-vh-hero {
    min-height: 380px;
}
    .hero-bg-photo {
        height: 459px;
    }
    .nav-link {
    font-size: 13px;
    padding: 11px 12px !important;
}
    .nav-link {
        font-size: 13px !important;
    }
}

@media (max-width: 460px) {
    .hero-slide:before {
        height: 479px !important;
    }
        .stats-band {
        grid-template-columns: 1fr 1fr !important;
    }
        .section-heading h2 {
        font-size: 22px !important;
    }
.tree-crown span{
  font-size: 27px;
}
.special-icon {
    width: 64px;
    height: 60px;
    font-size: 23px;
}
.premium-cta h2 {
    font-size: clamp(22px, 3vw, 33px) !important;
}
.cta-action-card {
    background: #fff;
    background: rgb(240, 234, 255);
    padding: 11px;}

}

@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.5rem;
    }
}

html, body {
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
}

*, *::before, *::after {
    box-sizing: border-box;
}


@media (max-width: 768px) {
    .about-floating-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 15px;
        max-width: 100%;
    }
     .program-card{
        text-align:center;
    }

    .program-card div{
        display:flex;
        flex-direction:column;
        align-items:center;
    }
}


.overflow-safe-section {
    overflow-x: hidden;
    width: 100%;
}

/* Logo fix: use uploaded Siddaganga logo in header and footer */
.navbar-brand img,
.footer-logo img {
  content: url('../img/logo2.webp') !important;
  border-radius: 12px !important;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: none !important;
}

.navbar-brand img {
  width: 300px !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 88px !important;
}

.footer-logo img {
  width: 300px !important;
  max-width: 100% !important;
  height: auto !important;
}

@media (max-width: 576px) {
  .navbar-brand img {
    width: 250px !important;
  }
      .hero-actions .btn {
        width: max-content;
        justify-content: center;
    }
     .stats-band{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:0;
    }

    .stats-band .stat{
        text-align:center;
        padding:30px 15px;
    }

    /* Center the last item */
    .stats-band .stat:last-child{
        grid-column:1 / -1;
        max-width:180px;
        margin:0 auto;
    }
}

/* ===== Page Hero (Introduction & inner pages) ===== */
    .page-hero {
      position: relative;
      overflow: hidden;
      min-height: 420px;
      padding-top: 150px;
      padding-bottom: 90px;
      display: flex;
      align-items: center;
      isolation: isolate;
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: -2;
      transform: scale(1.04);
    }

    .page-hero-overlay {
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(115deg, rgba(24, 8, 66, .94) 0%, rgba(38, 17, 95, .90) 32%, rgba(77, 43, 170, .62) 58%, rgba(77, 43, 170, .30) 100%),
        radial-gradient(circle at 88% 20%, rgba(239, 47, 55, .28), transparent 40%);
    }

    .page-hero-container {
      position: relative;
      z-index: 2;
    }

    .page-hero .mini-title {
      background: rgba(255, 255, 255, .12);
      border-color: rgba(255, 255, 255, .22);
      color: #fff;
      backdrop-filter: blur(10px);
    }

    .page-hero .mini-title i {
      color: #ff9aa0;
    }

    .page-hero h1 {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      color: #fff;
      font-size: clamp(40px, 5vw, 66px);
      line-height: 1.04;
      letter-spacing: -1.6px;
      margin: 0 0 18px;
    }

    .page-hero h1 span {
      display: block;
      font-size: clamp(15px, 1.5vw, 19px);
      font-weight: 800;
      letter-spacing: 0;
      color: rgba(255, 255, 255, .82);
      margin-top: 12px;
      font-family: Inter, system-ui, sans-serif;
    }

    .page-hero-crumbs {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, .10);
      border: 1px solid rgba(255, 255, 255, .18);
      backdrop-filter: blur(10px);
      border-radius: 999px;
      padding: 10px 18px;
      font-weight: 800;
      font-size: 13px;
      color: rgba(255, 255, 255, .78);
    }

    .page-hero-crumbs a {
      color: #fff;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .page-hero-crumbs i.bi-chevron-right {
      font-size: 10px;
      color: rgba(255, 255, 255, .5);
    }

    .page-hero-crumbs span {
      color: #ff9aa0;
    }

    .page-hero-wave {
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 64px;
      background: #fff;
      border-radius: 50% 50% 0 0 / 100% 100% 0 0;
      transform: scaleX(1.3);
      z-index: 1;
    }

    @media (max-width: 991px) {
      .page-hero {
        min-height: 320px;
        padding-top: 110px;
        padding-bottom: 70px;
      }
    }

    @media (max-width: 767px) {
      .page-hero {
        min-height: 280px;
        padding-top: 96px;
        padding-bottom: 56px;
      }
      .page-hero h1 {
        font-size: 34px;
        letter-spacing: -1px;
      }
      .page-hero-wave {
        height: 40px;
      }
    }

    /* ===== Trustee Message layout (page-specific) ===== */
    .trustee-section {
      position: relative;
      overflow: hidden;
    }

    .trustee-section:before {
      content: "";
      position: absolute;
      right: -140px;
      top: 60px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(77, 43, 170, .08), transparent 68%);
      pointer-events: none;
    }

    .trustee-portrait-wrap {
      position: relative;
    }

    .trustee-photo-card {
      position: relative;
      border-radius: 26px;
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
    }

    .trustee-photo-card img {
      width: 100%;
      height: 550px;
      object-fit: cover;
      display: block;
    }
    .center-list{
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .trustee-name-plate {
      /*position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;*/
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(14px);
    border-radius: 0 0 18px;
      padding: 18px 20px;
      box-shadow: var(--shadow2);
    }

    .trustee-name-plate strong {
      display: block;
      font-family: 'Playfair Display', serif;
      color: var(--purple);
      font-size: 20px;
      font-weight: 900;
      line-height: 1.2;
    }

    .trustee-name-plate span {
      display: block;
      color: var(--red);
      font-weight: 800;
      font-size: 13px;
      margin-top: 4px;
    }

    .trustee-badge {
      position: absolute;
      left: -18px;
      top: 28px;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      color: #fff;
      border-radius: 16px;
      padding: 14px 16px;
      box-shadow: 0 18px 34px rgba(239, 47, 55, .3);
      display: flex;
      align-items: center;
      gap: 10px;
      z-index:99;
      font-weight: 900;
      font-size: 13px;
    }

    .trustee-badge i {
      font-size: 22px;
    }

    .trustee-copy {
      position: relative;
    }

    .trustee-copy .quote-mark {
      font-family: Georgia, serif;
      color: var(--red);
      font-size: 90px;
      line-height: .6;
      display: block;
      margin-bottom: -6px;
    }

    .trustee-greeting {
      color: var(--purple2);
      font-weight: 900;
      font-size: 18px;
      margin-bottom: 6px;
    }

    .trustee-copy p {
      color: #47415f;
      font-weight: 700;
      font-size: 15px;
      line-height: 1.85;
      margin-bottom: 20px;
    }

    .trustee-pullquote {
      position: relative;
      background: linear-gradient(135deg, #f5f1ff, #fff4f5);
      border-left: 4px solid var(--red);
      border-radius: 4px 18px 18px 4px;
      padding: 22px 26px;
      margin: 30px 0;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      color: var(--purple);
      font-weight: 700;
      font-size: 18px;
      line-height: 1.5;
    }

    .trustee-signature {
      margin-top: 34px;
      padding-top: 26px;
      border-top: 1px dashed var(--line);
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .trustee-signature .sig-name {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 900;
      color: var(--purple);
      line-height: 1.1;
    }

    .trustee-signature .sig-role {
      color: var(--muted);
      font-weight: 800;
      font-size: 13px;
      margin-top: 4px;
    }

    .trustee-vision-strip {
      margin-top: 46px;
      background: linear-gradient(135deg, #291064, #5631b2);
      color: #fff;
      border-radius: 24px;
      padding: 30px 32px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: var(--shadow);
    }

    .trustee-vision-strip i {
      font-size: 34px;
      flex: 0 0 auto;
      opacity: .85;
    }

    .trustee-vision-strip p {
      margin: 0;
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-weight: 700;
      font-size: 17px;
      line-height: 1.5;
    }

    @media (max-width: 991px) {
      .trustee-photo-card img {
        height: 380px;
      }
      .trustee-badge {
        left: 14px;
      }
    }

    @media (max-width: 767px) {
      .trustee-copy .quote-mark {
        font-size: 66px;
      }
      .trustee-pullquote {
        font-size: 16px;
        padding: 18px 20px;
      }
      .trustee-vision-strip {
        flex-direction: column;
        text-align: center;
        padding: 26px 22px;
      }
    }


    /* ===== Faculties layout (page-specific) ===== */
    .faculty-section {
      position: relative;
      overflow: hidden;
    }

    .faculty-section:before {
      content: "";
      position: absolute;
      right: -140px;
      top: 80px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(77, 43, 170, .07), transparent 68%);
      pointer-events: none;
    }

    .faculty-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 40px;
    }

    .faculty-filter-btn {
      border: 1px solid var(--line);
      background: #fff;
      color: var(--purple);
      font-weight: 900;
      font-size: 13px;
      border-radius: 999px;
      padding: 11px 20px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: var(--shadow2);
      transition: .25s;
      cursor: pointer;
    }

    .faculty-filter-btn i {
      font-size: 15px;
      color: var(--purple2);
    }

    .faculty-filter-btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .faculty-filter-btn.active {
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      color: #fff;
      border-color: transparent;
      box-shadow: 0 14px 30px rgba(239, 47, 55, .26);
    }

    .faculty-filter-btn.active i {
      color: #fff;
    }

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

    .faculty-card {
      position: relative;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 26px 22px;
      text-align: center;
      box-shadow: var(--shadow2);
      transition: .35s;
      overflow: hidden;
      opacity: 1;
      transform: scale(1);
    }

    .faculty-card:before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(239, 47, 55, .05), rgba(77, 43, 170, .05));
      opacity: 0;
      transition: .35s;
    }

    .faculty-card:hover {
      transform: translateY(-9px);
      box-shadow: var(--shadow);
      border-color: #ded6f4;
    }

    .faculty-card:hover:before {
      opacity: 1;
    }

    .faculty-card.is-hidden {
      display: none;
    }

    .faculty-sl {
      position: absolute;
      top: 14px;
      left: 16px;
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 12px;
      color: var(--red);
      opacity: .5;
    }

    .faculty-avatar {
      position: relative;
      width: 72px;
      height: 72px;
      margin: 6px auto 16px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--purple2), var(--purple));
      color: #fff;
      font-size: 27px;
      font-weight: 900;
      font-family: 'Playfair Display', serif;
    }

    .faculty-card[data-cat="leadership"] .faculty-avatar {
      background: linear-gradient(135deg, var(--red), var(--red-dark));
    }

    .faculty-card[data-cat="sportsarts"] .faculty-avatar {
      background: #fff0e6;
      color: #ff711f;
    }

    .faculty-card[data-cat="support"] .faculty-avatar {
      background: #e8faff;
      color: #1597a8;
    }

    .faculty-name {
      position: relative;
      font-size: 15.5px;
      font-weight: 900;
      color: var(--purple);
      margin-bottom: 8px;
      line-height: 1.3;
      text-transform: capitalize;
      min-height: 40px;
    }

    .faculty-designation {
      position: relative;
      display: block;
      color: var(--red);
      font-weight: 800;
      font-size: 11.5px;
      letter-spacing: .02em;
      text-transform: uppercase;
      line-height: 1.5;
      margin-bottom: 12px;
      min-height: 34px;
    }

    .faculty-qual {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #f6f3ff;
      color: var(--purple2);
      font-weight: 800;
      font-size: 11.5px;
      border-radius: 999px;
      padding: 7px 13px;
    }

    .faculty-qual i {
      font-size: 13px;
    }

    .faculty-empty {
      display: none;
      text-align: center;
      padding: 50px 20px;
      color: var(--muted);
      font-weight: 800;
    }

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

    @media (max-width: 767px) {
      .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .faculty-card {
        padding: 20px 14px;
      }
      .faculty-filters {
        gap: 8px;
      }
      .faculty-filter-btn {
        font-size: 12px;
        padding: 9px 15px;
      }
    }

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


     /* ===== Trustees Board layout (page-specific) ===== */
    .trustees-section {
      position: relative;
      overflow: hidden;
    }

    .trustees-section:before {
      content: "";
      position: absolute;
      left: -140px;
      bottom: 40px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(239, 47, 55, .07), transparent 68%);
      pointer-events: none;
    }

    .trustee-office-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      margin-bottom: 26px;
    }

    .trustee-office-card {
      position: relative;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 30px 24px;
      text-align: center;
      box-shadow: var(--shadow2);
      transition: .35s;
      overflow: hidden;
    }

    .trustee-office-card:before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(239, 47, 55, .05), rgba(77, 43, 170, .05));
      opacity: 0;
      transition: .35s;
    }

    .trustee-office-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow);
      border-color: #ded6f4;
    }

    .trustee-office-card:hover:before {
      opacity: 1;
    }

    .trustee-rank {
      position: absolute;
      top: 16px;
      right: 18px;
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 13px;
      color: var(--red);
      opacity: .55;
    }

    .trustee-avatar {
      position: relative;
      width: 78px;
      height: 78px;
      margin: 0 auto 18px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #f0eaff;
      color: var(--purple2);
      font-size: 32px;
      font-weight: 900;
      font-family: 'Playfair Display', serif;
    }

    .trustee-office-card:nth-child(1) .trustee-avatar {
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      color: #fff;
    }

    .trustee-office-card:nth-child(2) .trustee-avatar {
      background: #fff0e6;
      color: #ff711f;
    }

    .trustee-office-card:nth-child(3) .trustee-avatar {
      background: #e8faff;
      color: #1597a8;
    }

    .trustee-office-card:nth-child(4) .trustee-avatar {
      background: #f0fadf;
      color: #76a517;
    }

    .trustee-office-card h3 {
      position: relative;
      font-size: 17px;
      font-weight: 900;
      color: var(--purple);
      margin-bottom: 8px;
      text-transform: capitalize;
    }

    .trustee-office-card .designation-chip {
      position: relative;
      display: inline-flex;
      background: #fff0f1;
      color: var(--red);
      font-weight: 900;
      font-size: 11px;
      letter-spacing: .06em;
      text-transform: uppercase;
      border-radius: 999px;
      padding: 6px 13px;
    }

    .trustee-members-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 26px;
      box-shadow: var(--shadow2);
      padding: 12px;
      overflow: hidden;
    }

    .trustee-members-head {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 18px 20px 14px;
    }

    .trustee-members-head i {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: #f0eaff;
      color: var(--purple2);
      font-size: 20px;
    }

    .trustee-members-head h3 {
      font-family: 'Playfair Display', serif;
      color: var(--purple);
      font-weight: 900;
      font-size: 20px;
      margin: 0;
    }

    .trustee-members-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      padding: 6px 12px 18px;
    }

    .trustee-member-item {
      display: flex;
      align-items: center;
      gap: 13px;
      background: #fbf9ff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 14px 16px;
      transition: .3s;
    }

    .trustee-member-item:hover {
      background: #fff;
      box-shadow: var(--shadow2);
      transform: translateY(-3px);
    }

    .trustee-member-item .initial {
      flex: 0 0 auto;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--purple2), var(--purple));
      color: #fff;
      font-weight: 900;
      font-size: 15px;
      font-family: 'Playfair Display', serif;
    }

    .trustee-member-item .name {
      font-weight: 900;
      color: var(--purple);
      font-size: 13.5px;
      line-height: 1.3;
      text-transform: capitalize;
    }

    .trustee-member-item .role {
      display: block;
      color: var(--muted);
      font-weight: 800;
      font-size: 10.5px;
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-top: 2px;
    }

    .trustees-note {
      margin-top: 34px;
      display: flex;
      align-items: center;
      gap: 16px;
      background: linear-gradient(135deg, #f5f1ff, #fff4f5);
      border-left: 4px solid var(--red);
      border-radius: 4px 18px 18px 4px;
      padding: 20px 24px;
    }

    .trustees-note i {
      font-size: 26px;
      color: var(--red);
      flex: 0 0 auto;
    }

    .trustees-note p {
      margin: 0;
      color: var(--purple);
      font-weight: 800;
      font-size: 14px;
      line-height: 1.6;
    }

    @media (max-width: 1199px) {
      .trustee-office-row {
        grid-template-columns: repeat(2, 1fr);
      }
      .trustee-members-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 767px) {
      .trustee-office-row {
        grid-template-columns: 1fr;
      }
      .trustee-members-grid {
        grid-template-columns: 1fr;
      }
      .trustees-note {
        flex-direction: column;
        text-align: center;
      }
    }

    /* ===== Program Detail layout (page-specific: Primary School) ===== */
    .program-overview {
      position: relative;
      overflow: hidden;
    }

    .program-overview:before {
      content: "";
      position: absolute;
      right: -140px;
      top: 60px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(239, 47, 55, .07), transparent 68%);
      pointer-events: none;
    }

    .program-media {
      position: relative;
      border-radius: 26px;
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
    }

    .program-media img {
      width: 100%;
      height: 460px;
      object-fit: cover;
      display: block;
    }

    .program-age-badge {
      position: absolute;
      left: -18px;
      top: 28px;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      color: #fff;
      border-radius: 16px;
      padding: 14px 18px;
      box-shadow: 0 18px 34px rgba(239, 47, 55, .3);
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      font-size: 13px;
      line-height: 1.25;
    }

    .program-age-badge i {
      font-size: 22px;
    }

    .program-stat-strip {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(14px);
      border-radius: 18px;
      padding: 16px 18px;
      box-shadow: var(--shadow2);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      text-align: center;
    }

    .program-stat-strip div strong {
      display: block;
      color: var(--purple);
      font-weight: 900;
      font-size: 18px;
      line-height: 1.1;
    }

    .program-stat-strip div span {
      color: var(--muted);
      font-weight: 800;
      font-size: 10.5px;
      text-transform: uppercase;
      letter-spacing: .03em;
    }

    .program-copy p {
      color: #47415f;
      font-weight: 700;
      font-size: 15px;
      line-height: 1.85;
      margin-bottom: 18px;
    }

    /* Curriculum pillars */
    .pillars-band {
      background: linear-gradient(135deg, #2a136c, #5632b3);
      position: relative;
      overflow: hidden;
    }

    .pillars-band:before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, .10), transparent 26%), radial-gradient(circle at 88% 76%, rgba(239, 47, 55, .18), transparent 28%);
      pointer-events: none;
    }

    .pillars-band .container {
      position: relative;
      z-index: 2;
    }

    .pillar-card {
      height: 100%;
      background: rgba(255, 255, 255, .96);
      border-radius: 22px;
      padding: 30px 24px;
      text-align: center;
      box-shadow: 0 18px 40px rgba(8, 4, 34, .18);
      transition: .35s;
    }

    .pillar-card:hover {
      transform: translateY(-9px);
    }

    .pillar-card .icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 18px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 30px;
    }

    .pillar-card h3 {
      font-size: 16.5px;
      font-weight: 900;
      color: var(--purple);
      margin-bottom: 8px;
    }

    .pillar-card p {
      font-size: 13px;
      color: var(--muted);
      font-weight: 700;
      line-height: 1.65;
      margin: 0;
    }

    /* Subject strip */
    .subject-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .subject-chip {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 11px 18px;
      font-weight: 900;
      font-size: 13px;
      color: var(--purple);
      box-shadow: var(--shadow2);
      transition: .25s;
    }

    .subject-chip:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow);
      color: var(--red);
    }

    .subject-chip i {
      color: var(--red);
      font-size: 15px;
    }

    /* Daily schedule timeline */
    .schedule-list {
      display: grid;
      gap: 14px;
    }

    .schedule-item {
      display: grid;
      grid-template-columns: 108px 1fr;
      align-items: center;
      gap: 20px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 16px 20px;
      box-shadow: var(--shadow2);
      transition: .3s;
    }

    .schedule-item:hover {
      transform: translateX(6px);
      box-shadow: var(--shadow);
    }

    .schedule-time {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      color: var(--red);
      font-size: 15px;
      text-align: center;
      border-right: 1px dashed var(--line);
      padding-right: 16px;
    }

    .schedule-item h4 {
      margin: 0 0 3px;
      font-size: 15px;
      font-weight: 900;
      color: var(--purple);
    }

    .schedule-item p {
      margin: 0;
      font-size: 13px;
      color: var(--muted);
      font-weight: 700;
    }

    /* Facilities checklist */
    .facility-check-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .facility-check-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: #fbf9ff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 16px 18px;
    }

    .facility-check-item i {
      color: #fff;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 14px;
      flex: 0 0 auto;
    }

    .facility-check-item strong {
      display: block;
      color: var(--purple);
      font-weight: 900;
      font-size: 13.5px;
      margin-bottom: 3px;
    }

    .facility-check-item span {
      color: var(--muted);
      font-weight: 700;
      font-size: 12.5px;
      line-height: 1.5;
    }

    /* Program CTA */
    .program-cta-inline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      background: linear-gradient(135deg, #291064, #5631b2);
      color: #fff;
      border-radius: 26px;
      padding: 34px 38px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .program-cta-inline:before {
      content: "";
      position: absolute;
      right: -80px;
      top: -80px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(239, 47, 55, .22);
    }

    .program-cta-inline h3 {
      position: relative;
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: clamp(21px, 2.4vw, 28px);
      margin: 0 0 6px;
    }

    .program-cta-inline p {
      position: relative;
      margin: 0;
      color: rgba(255, 255, 255, .82);
      font-weight: 700;
      font-size: 14px;
    }

    .program-cta-inline .btn {
      position: relative;
      flex: 0 0 auto;
    }

    @media (max-width: 991px) {
      .program-media img {
        height: 380px;
      }
      .program-age-badge {
        left: 14px;
      }
    }

    @media (max-width: 767px) {
      .facility-check-grid {
        grid-template-columns: 1fr;
      }
      .schedule-item {
        grid-template-columns: 84px 1fr;
        padding: 14px 16px;
      }
      .program-cta-inline {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
      }
      .program-stat-strip {
        grid-template-columns: repeat(3, 1fr);
        padding: 12px 10px;
      }
    }

    /* ===== Program Detail layout (page-specific: Pre School) ===== */
    .program-overview {
      position: relative;
      overflow: hidden;
    }

    .program-overview:before {
      content: "";
      position: absolute;
      right: -140px;
      top: 60px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(239, 47, 55, .07), transparent 68%);
      pointer-events: none;
    }

    .program-media {
      position: relative;
      border-radius: 26px;
      overflow: hidden;
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
    }

    .program-media img {
      width: 100%;
      height: 460px;
      object-fit: cover;
      display: block;
    }

    .program-age-badge {
      position: absolute;
      left: -18px;
      top: 28px;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      color: #fff;
      border-radius: 16px;
      padding: 14px 18px;
      box-shadow: 0 18px 34px rgba(239, 47, 55, .3);
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      font-size: 13px;
      line-height: 1.25;
    }

    .program-age-badge i {
      font-size: 22px;
    }

    .program-stat-strip {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(14px);
      border-radius: 18px;
      padding: 16px 18px;
      box-shadow: var(--shadow2);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
      text-align: center;
    }

    .program-stat-strip div strong {
      display: block;
      color: var(--purple);
      font-weight: 900;
      font-size: 18px;
      line-height: 1.1;
    }

    .program-stat-strip div span {
      color: var(--muted);
      font-weight: 800;
      font-size: 10.5px;
      text-transform: uppercase;
      letter-spacing: .03em;
    }

    .program-copy p {
      color: #47415f;
      font-weight: 700;
      font-size: 15px;
      line-height: 1.85;
      margin-bottom: 18px;
    }

    /* Curriculum pillars */
    .pillars-band {
      background: linear-gradient(135deg, #2a136c, #5632b3);
      position: relative;
      overflow: hidden;
    }

    .pillars-band:before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 12% 20%, rgba(255, 255, 255, .10), transparent 26%), radial-gradient(circle at 88% 76%, rgba(239, 47, 55, .18), transparent 28%);
      pointer-events: none;
    }

    .pillars-band .container {
      position: relative;
      z-index: 2;
    }

    .pillar-card {
      height: 100%;
      background: rgba(255, 255, 255, .96);
      border-radius: 22px;
      padding: 30px 24px;
      text-align: center;
      box-shadow: 0 18px 40px rgba(8, 4, 34, .18);
      transition: .35s;
    }

    .pillar-card:hover {
      transform: translateY(-9px);
    }

    .pillar-card .icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 18px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 30px;
    }

    .pillar-card h3 {
      font-size: 16.5px;
      font-weight: 900;
      color: var(--purple);
      margin-bottom: 8px;
    }

    .pillar-card p {
      font-size: 13px;
      color: var(--muted);
      font-weight: 700;
      line-height: 1.65;
      margin: 0;
    }

    /* Daily schedule timeline */
    .schedule-list {
      display: grid;
      gap: 14px;
    }

    .schedule-item {
      display: grid;
      grid-template-columns: 108px 1fr;
      align-items: center;
      gap: 20px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 16px 20px;
      box-shadow: var(--shadow2);
      transition: .3s;
    }

    .schedule-item:hover {
      transform: translateX(6px);
      box-shadow: var(--shadow);
    }

    .schedule-time {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      color: var(--red);
      font-size: 15px;
      text-align: center;
      border-right: 1px dashed var(--line);
      padding-right: 16px;
    }

    .schedule-item h4 {
      margin: 0 0 3px;
      font-size: 15px;
      font-weight: 900;
      color: var(--purple);
    }

    .schedule-item p {
      margin: 0;
      font-size: 13px;
      color: var(--muted);
      font-weight: 700;
    }

    /* Facilities checklist */
    .facility-check-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .facility-check-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: #fbf9ff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 16px 18px;
    }

    .facility-check-item i {
      color: #fff;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 14px;
      flex: 0 0 auto;
    }

    .facility-check-item strong {
      display: block;
      color: var(--purple);
      font-weight: 900;
      font-size: 13.5px;
      margin-bottom: 3px;
    }

    .facility-check-item span {
      color: var(--muted);
      font-weight: 700;
      font-size: 12.5px;
      line-height: 1.5;
    }

    /* Program CTA */
    .program-cta-inline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      background: linear-gradient(135deg, #291064, #5631b2);
      color: #fff;
      border-radius: 26px;
      padding: 34px 38px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .program-cta-inline:before {
      content: "";
      position: absolute;
      right: -80px;
      top: -80px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(239, 47, 55, .22);
    }

    .program-cta-inline h3 {
      position: relative;
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: clamp(21px, 2.4vw, 28px);
      margin: 0 0 6px;
    }

    .program-cta-inline p {
      position: relative;
      margin: 0;
      color: rgba(255, 255, 255, .82);
      font-weight: 700;
      font-size: 14px;
    }

    .program-cta-inline .btn {
      position: relative;
      flex: 0 0 auto;
    }

    @media (max-width: 991px) {
      .program-media img {
        height: 380px;
      }
      .program-age-badge {
        left: 14px;
      }
    }

    @media (max-width: 767px) {
      .facility-check-grid {
        grid-template-columns: 1fr;
      }
      .schedule-item {
        grid-template-columns: 84px 1fr;
        padding: 14px 16px;
      }
      .program-cta-inline {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
      }
      .program-stat-strip {
        grid-template-columns: repeat(3, 1fr);
        padding: 12px 10px;
      }
    }

    /* ===== Facilities layout (page-specific) ===== */
.facility-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #fbf9ff 60%, #fff);
}

.facility-section:before {
  content: "";
  position: absolute;
  left: -140px;
  top: 60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 43, 170, .07), transparent 68%);
  pointer-events: none;
}

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

.campus-facility-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow2);
  transition: .35s;
  overflow: hidden;
}

.campus-facility-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 47, 55, .05), rgba(77, 43, 170, .05));
  opacity: 0;
  transition: .35s;
}

.campus-facility-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: #ded6f4;
}

.campus-facility-card:hover:before {
  opacity: 1;
}

.cf-icon {
  position: relative;
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 32px;
}

.campus-facility-card h3 {
  position: relative;
  font-size: 17px;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 10px;
}

.campus-facility-card p {
  position: relative;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1199px) {
  .campus-facility-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .campus-facility-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .campus-facility-card {
    padding: 24px 16px;
  }
}

@media (max-width: 460px) {
  .campus-facility-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Gallery page layout (page-specific) ===== */
.gallery-modal .modal-dialog {
  max-width: 960px;
}

.galleryLightboxSwiper .swiper-slide img {
  border-radius: 4px;
}


/* ===== Contact page layout (page-specific) ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.contact-info-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow2);
  transition: .35s;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: #ded6f4;
}

.contact-info-card h3 {
  font-size: 16px;
  font-weight: 900;
  color: var(--purple);
  margin: 4px 0 8px;
}

.contact-info-card p {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}

.contact-info-card p a {
  color: var(--muted);
  transition: .25s;
}

.contact-info-card p a:hover {
  color: var(--red);
}

.contact-map-wrap {
  min-height: 460px;
  overflow: hidden;
}

.contact-map-wrap iframe {
  display: block;
}

@media (max-width: 1199px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-map-wrap {
    min-height: 320px;
  }
  .contact-map-wrap iframe {
    min-height: 320px !important;
  }
}