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

:root {
  --ink: #1a2b22;
  --muted: #5f7566;
  --green: #59a52c;
  /* Vibrant logo green */
  --green-dark: #2f6b15;
  /* Darker complementary green */
  --gold: #f2a900;
  /* Energetic logo gold/yellow */
  --cream: #f9f6ea;
  --mist: #eef7eb;
  --paper: #fffdf8;
  --line: rgba(47, 107, 21, 0.15);
  --shadow: 0 24px 70px rgba(47, 107, 21, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  color: var(--ink);
/*background:
    linear-gradient(rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.9)),
    url("data:image/svg+xml,%3Csvg width='260' height='260' viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round' stroke-width='4' opacity='0.55'%3E%3Cpath d='M42 56h34v44H42zM52 70h14M52 84h16' stroke='%23b9d6ca'/%3E%3Cpath d='M166 36l10 20 22 3-16 15 4 22-20-10-20 10 4-22-16-15 22-3z' stroke='%23f0dcae'/%3E%3Cpath d='M48 178h34v34H48zM88 178h24v34H88z' stroke='%23f4d6ce'/%3E%3Cpath d='M170 166c12-14 28-14 40 0M170 190c12 14 28 14 40 0' stroke='%23bdd8cd'/%3E%3Cpath d='M32 132h28M46 118v28M124 114l18 18M142 114l-18 18' stroke='%23f0dcae'/%3E%3C/g%3E%3C/svg%3E
  background-size: auto, 260px 260px*/
	background:linear-gradient(rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.9));
  line-height: 1.55;");
  animation: kidsPatternDrift 42s linear infinite;
}

@keyframes kidsPatternDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 0, 260px 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }

  .inner-banner-art {
    animation: none;
  }
}

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

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

/* --- GLOBAL TYPOGRAPHY HIERARCHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: "Baloo 2", cursive, sans-serif;
  margin-top: 0;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(2.2rem, 4vw, 2.3rem); font-weight: 800; color: var(--ink); line-height: 1.2; }
h3 { font-size: clamp(1.5rem, 4vw, 1.8rem); font-weight: 700; }
h4 { font-size: 1.4rem; font-weight: 700; }
h5 { font-size: 1.2rem; font-weight: 700; }
h6 { font-size: 1.1rem; font-weight: 700; }

.kicker {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: block;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  text-align: center;
  margin-bottom: 0;
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #333 !important;
  font-weight: 500 !important;
}

.text-white p,
.text-white .section-head p,
.text-white .section-header p {
  color: #fff !important;
}

.topbar {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.topbar .container {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.topbar a:hover,
.topbar a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 248, 1) !important;

  backdrop-filter: blur(18px);
}

.header-row {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 176px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #33483b;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(47, 107, 21, 0.16);
  border-radius: 999px;
  background: #fffdf8;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(47, 107, 21, 0.32);
  background: var(--mist);
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle-bars {
  position: relative;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-bars::before {
  top: -7px;
}

.menu-toggle-bars::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars::after {
  transform: translateY(-7px) rotate(-45deg);
}

.nav a {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav a:hover,
.nav a.active {
  color: var(--ink);
  background: #f0dcae;
  border-color: #e5cd97;
  /* transform: translateY(-3px); */
  box-shadow: 0 6px 15px rgba(240, 220, 174, 0.5);
}

.nav li:nth-child(2) > a:hover,
.nav li:nth-child(2) > a.active {
  background: #b9d6ca;
  border-color: #a4c7b8;
  /* transform: translateY(-3px); */
  box-shadow: 0 6px 15px rgba(244, 214, 206, 0.5);
}

.nav li:nth-child(3) > a:hover,
.nav li:nth-child(3) > a.active {
  background: #f0dcae;
  border-color: #e5cd97;
  /* transform: translateY(-3px); */
  box-shadow: 0 6px 15px rgba(185, 214, 202, 0.5);
}

/* --- BACKGROUND DECORATIONS --- */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.deco svg {
  width: 100%;
  height: 100%;
}

.deco.c-green {
  color: var(--green);
}

.deco.c-gold {
  color: var(--gold);
}

.deco.f1 {
  width: 60px;
  height: 60px;
  animation: decoFloat 8s ease-in-out infinite;
}

.deco.f2 {
  width: 120px;
  height: 120px;
  animation: decoRotate 15s linear infinite;
}

.deco.f3 {
  width: 80px;
  height: 80px;
  animation: decoFloat 10s ease-in-out infinite reverse;
}

.deco.f4 {
  width: 40px;
  height: 40px;
  animation: decoBounce 6s ease-in-out infinite;
}

@keyframes decoFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(15px, -25px);
  }
}

@keyframes decoRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes decoBounce {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.1);
  }
}

.css-pos-1 {
  top: 10%;
  left: 5%;
}

.css-pos-2 {
  top: 15%;
  right: 8%;
}

.css-pos-3 {
  bottom: 12%;
  left: 10%;
}

.css-pos-4 {
  bottom: 8%;
  right: 5%;
}

.css-pos-5 {
  top: 20%;
  left: -20px;
}

.css-pos-6 {
  bottom: 15%;
  right: -30px;
}

.css-pos-7 {
  top: 15%;
  right: 5%;
}

.css-pos-8 {
  bottom: 10%;
  left: 5%;
}

.css-pos-9 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.css-pos-10 {
  top: 10%;
  right: 15%;
}

.css-pos-11 {
  bottom: 20%;
  left: 15%;
}

.nav li:nth-child(4) > a:hover,
.nav li:nth-child(4) > a.active {
  background: #b9d6ca;
  border-color: #a4c7b8;
  /* transform: translateY(-3px); */
  box-shadow: 0 6px 15px rgba(189, 216, 205, 0.5);
}

.nav li:nth-child(5) > a:hover,
.nav li:nth-child(5) > a.active {
  background: #f0dcae;
  border-color: #e5cd97;
  /* transform: translateY(-3px); */
  box-shadow: 0 6px 15px rgba(246, 234, 208, 0.5);
}

.nav li:nth-child(6) > a:hover,
.nav li:nth-child(6) > a.active {
  background: #b9d6ca;
  border-color: #a4c7b8;
  /* transform: translateY(-3px); */
  box-shadow: 0 6px 15px rgba(216, 228, 250, 0.5);
}

.btn {
  width: fit-content;
  max-width: 100%;
  min-height: 46px;
    display: inline-flex;
    align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 900;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(217, 164, 65, 0.26);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary:first-child:active,
:not(.btn-check)+.btn-primary:active {
  background: var(--gold);
  border-color: transparent;
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(217, 164, 65, 0.26);
}

.btn-primary:focus-visible {
  outline: 3px solid rgba(242, 169, 0, 0.3);
  outline-offset: 3px;
}

.btn-outline {
  background: #fff;
  color: var(--green);
  border-color: rgba(15, 107, 66, 0.24);
}

.hero {
  position: relative;
  min-height: calc(90vh - 200px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--green-dark);

}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(8, 28, 19, 0.72), rgba(8, 28, 19, 0.22)),
    linear-gradient(90deg, rgba(8, 28, 19, 0.62), rgba(8, 28, 19, 0.18));
}

.hero .container {
  position: relative;
  z-index: 1;
  /*padding: 10px 0 0 10px;*/
	padding-top:10px;
	padding-bottom:10px;
}

.hero-content {
  max-width: 760px;
  margin-top: 100px;
}

.hero-copy-slide {
  display: none;
}

.hero-copy-slide.is-active {
  display: block;
  animation: heroTextIn 0.45s ease both;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
  gap: 10px;
  color: #f4ce7a;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2 {
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  letter-spacing: 0;
  font-weight: 100;
}

.hero h1 {
  margin: 20px 0;
  font-size: clamp(1.25rem, 3.6vw, 3.25rem);
  line-height: 0.98;
  max-width: 20ch;
}

.hero p {
  max-width: 58ch;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 1.08rem;
}

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

.hero-actions .btn {
  min-width: 160px;
}

.hero-actions .btn-contact {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(12px);
}

.hero-actions .btn-contact:hover {
  background: #fff;
  color: var(--green-dark);
  border-color: #fff;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(8, 28, 19, 0.22);
  backdrop-filter: blur(14px);
}

.hero-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  font-size: 1.28rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: var(--gold);
  transform: translateY(-1px);
}

.hero-dot-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 44px;
  background: var(--gold);
}

.hero-slide-count {
  min-width: 50px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.hero-stats {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding: 14px;


  border-radius: 8px;
  max-width: 1200px;
  box-shadow: 0 22px 48px rgba(8, 28, 19, 0.22);

}

.hero-stat {
  min-height: 118px;
  padding: 20px 18px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-stat-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(244, 206, 122, 0.22);
  color: #f4ce7a;
}

.hero-stat-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-stat strong {
  display: block;
  color: #f4ce7a;
  font-size: 1.58rem;
  line-height: 1;
  margin-bottom: 9px;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 42px;
}

.kicker {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.85rem, 3.2vw, 3.35rem);
  line-height: 1;
}

.section-head p {
  max-width: 45%;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.principal-welcome {
  padding: 86px 0 0;
  background:
    linear-gradient(135deg, rgba(89, 165, 44, 0.1), rgba(242, 169, 0, 0.1)),
    #fffdf8;
}

.principal-row {
  position: relative;
  z-index: 1;
}

.principal-portrait {
  position: relative;
  /*min-height: 100%;*/
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 0 18px 54px;
  isolation: isolate;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.principal-portrait::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 54px;
  width: 78%;
  height: 78%;
  z-index: -1;
  border-radius: 42% 8px 8px 42%;
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.62), transparent 30%),
    linear-gradient(145deg, rgba(47, 107, 21, 0.92), rgba(89, 165, 44, 0.78));
  box-shadow: 0 30px 70px rgba(47, 107, 21, 0.2);
}

.principal-portrait::after {
  content: "";
  position: absolute;
  left: 5%;
  top: 68px;
  width: 70%;
  height: 66%;
  z-index: -2;
  border-radius: 50%;
  border: 2px solid rgba(47, 107, 21, 0.18);
  background: rgba(242, 169, 0, 0.08);
}

.principal-portrait img {
  position: relative;
  z-index: 1;
  /*width: min(380px, 82%);*/
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 34px rgba(26, 43, 34, 0.18));
}

.principal-badge {
  position: absolute;
  left: 0;
  bottom: 54px;
  display: grid;
  gap: 2px;
  max-width: 300px;
  min-width: 260px;
  padding: 18px 22px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(47, 107, 21, 0.16);
  z-index: 2;
}

.principal-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.principal-shape.star {
  width: 24px;
  height: 24px;
  color: rgba(242, 169, 0, 0.7);
}

.principal-shape.star::before,
.principal-shape.star::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.principal-shape.star::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.principal-shape.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 24px 18px 0 rgba(89, 165, 44, 0.45);
}

.principal-orbit {
  position: absolute;
  left: 5%;
  top: 68px;
  width: 70%;
  height: 66%;
  z-index: 0;
  pointer-events: none;
}

.principal-orbit-dot {
  position: absolute;
  inset: 0;
  animation: principalOrbit 9s linear infinite;
}

.principal-orbit-dot::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(242, 169, 0, 0.14);
  transform: translateY(-50%);
}

.principal-orbit-dot:nth-child(2) {
  animation-delay: -4.5s;
}

.principal-orbit-dot:nth-child(2)::before {
  width: 11px;
  height: 11px;
  background: #99c77c;
  box-shadow: 0 0 0 7px rgba(89, 165, 44, 0.12);
}

@keyframes principalOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.principal-badge strong {
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 1;
}

.principal-badge span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.principal-message {
  position: relative;
  max-width: 100%;
  padding: 8px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.principal-message .kicker {
    display: inline-flex;
    align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(89, 165, 44, 0.1);
  color: var(--green-dark);
  letter-spacing: 0.12em;
}

.principal-message .kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.principal-message::before {
  content: "\201C";
  position: absolute;
  top: -22px;
  right: 4px;
  color: rgba(242, 169, 0, 0.22);
  font-family: Georgia, serif;
  font-size: 7.4rem;
  line-height: 1;
}

.principal-message h2 {
  position: relative;

  margin: 0 0 28px;
  color: var(--ink);
  font-size: clamp(1.75rem, 2.7vw, 2.75rem);
  line-height: 1.04;
  margin-bottom: 18px;
}

.principal-copy {
  position: relative;
  margin: 0 0 24px;
  color: #5f7365;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
}

.principal-copy+.principal-copy {
  font-size: 0.98rem;
  font-weight: 500;
}

.principal-copy:first-of-type {
  padding-left: 18px;
  border-left: 4px solid rgba(242, 169, 0, 0.65);
}

.principal-signature {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(100%, 590px);
  margin-top: 36px;
  padding: 20px 22px;
  border: 1px solid rgba(47, 107, 21, 0.12);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 36px rgba(20, 35, 27, 0.06);
}

.principal-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.principal-signature strong {
  display: block;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.2;
}

.principal-signature span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.principal-school-image {
  width: 100vw;
  min-height: clamp(360px, 45vw, 610px);
  margin: 48px 0 0 calc(50% - 50vw);
  overflow: hidden;
  border-radius: 0;
  background-image: url("../images/school-image.webp");
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(47, 107, 21, 0.08);
}

.principal-school-image img {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 768px) {
    .about .row > .col-12:first-child {
    display: block;
  }

  .about-image {
    height: auto;
    min-height: 340px;
    aspect-ratio: 5 / 4;
  }

  .principal-school-image {
    min-height: 340px;
    background-attachment: scroll;
    background-position: center top;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.about .row > .col-12:first-child {
  display: flex;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.about-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: "Learning with care";
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.about-page-hero {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(238, 247, 235, 0.88), rgba(255, 253, 248, 0.96)),
    var(--paper);
}

.about-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 58px;
}

.about-page-copy h1 {
  max-width: 12ch;
  margin: 10px 0 22px;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
}

.about-page-copy p {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.7;
}

.about-page-photo {
  overflow: hidden;
  border-radius: 8px;
  border: 10px solid #fff;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.about-page-photo img {
  height: 430px;
  object-fit: cover;
}

.about-content {
  background: #fff;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.about-info-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(20, 35, 27, 0.06);
}

.about-info-card-large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  background:
    linear-gradient(rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.92)),
    url("../images/campus-life-library-learning.webp") center / cover;
}

.about-info-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-info-card h2,
.about-principal-message h2,
.about-affiliations-panel h2 {
  margin: 0 0 18px;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.about-info-card h3,
.about-value-card h3 {
  margin: 0 0 12px;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.34rem;
  line-height: 1.16;
}

.about-info-card p,
.about-principal-message p,
.about-value-card p,
.about-affiliations-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}

.about-principal {
  background: var(--mist);
}

.about-principal-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 52px;
  align-items: center;
}

.about-principal-image {
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(160deg, #fff8dc, #e7f6df);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-principal-image img {
  width: min(360px, 86%);
  max-height: 460px;
  object-fit: contain;
}

.about-principal-message {
  padding: 10px 0;
}

.about-principal-message p+p {
  margin-top: 16px;
}

.about-values {
  background: #fff;
}

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

.about-value-card {
  min-height: 240px;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 38px rgba(20, 35, 27, 0.06);
}

.about-value-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-weight: 900;
}

.about-affiliations {
  background:
    linear-gradient(135deg, rgba(89, 165, 44, 0.1), rgba(242, 169, 0, 0.14)),
    var(--paper);
}

.about-affiliations-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: 42px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-affiliations-list {
  display: grid;
  gap: 18px;
}

.about-affiliations-list .btn {
  width: max-content;
}

/* ===== REDESIGNED ABOUT PAGE ===== */

/* --- ABOUT HERO --- */
.inner-banner {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-end;
  padding: 0 0 0;
  color: #fff;
  overflow: hidden;
  background-image: var(--inner-banner-image);
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.inner-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.inner-banner-bg img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.inner-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(8, 28, 19, 0.88) 0%, rgba(8, 28, 19, 0.55) 50%, rgba(8, 28, 19, 0.35) 100%),
    linear-gradient(90deg, rgba(8, 28, 19, 0.62), transparent);
}

.inner-banner .container {
  position: relative;
  z-index: 3;

}

.inner-banner-row {
  align-items: end;
}

.inner-banner-art-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.inner-banner-art {
  position: relative;
  bottom: -10px;
  width: 100%;
  height: auto;
  opacity: 0.9;
  pointer-events: none;
  transform-origin: 48% 100%;
  animation: innerBannerTreeSway 4.8s ease-in-out infinite;
}

@keyframes innerBannerTreeSway {

  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }

  50% {
    transform: rotate(2.5deg) translateY(-4px);
  }
}

.inner-banner-title {
  margin: 0 0 8px;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

.inner-banner-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 0.88rem;
  font-weight: 700;
}

.inner-banner-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.inner-banner-breadcrumb a:hover {
  color: var(--gold);
}

.inner-banner-breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.inner-banner-breadcrumb span:last-child {
  color: var(--gold);
}

.inner-banner-content {
  max-width: 680px;
}

.inner-banner-content h1 {
  margin: 14px 0 18px;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
  color: #fff;
  max-width: 16ch;
}

.inner-banner-content p {
  max-width: 54ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.7;
}

.inner-banner-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0;
}

.abt-stat {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}

.abt-stat:last-child {
  border-right: 0;
}

.abt-stat:hover {
  background: rgba(255, 255, 255, 0.08);
}

.abt-stat strong {
  display: block;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.abt-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- SCHOOL OVERVIEW --- */
.abt-overview {
  background:
    linear-gradient(180deg, rgba(238, 247, 235, 0.72), rgba(255, 253, 248, 0.95));
}

.abt-overview-head {
  max-width: 760px;
  margin: 0 auto ;
  text-align: center;
}

.abt-overview-head h2 {
  margin: 8px 0 0;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.2rem, 4vw, 2.3rem);
  line-height: 1.12;
}

.abt-overview-photo {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.abt-overview-photo img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.abt-overview-copy {
  padding: 0;
  text-align: left;
}

.abt-overview-copy h3 {
  margin: 0 0 16px;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.08;
}

.abt-overview-copy>p {

  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}

.abt-overview-highlights {
  margin-top: 28px;
}

.abt-facilities-panel {
  margin-top: 30px;
  padding: clamp(26px, 3.5vw, 40px);
  border: 1px solid rgba(47, 107, 21, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 18%, rgba(89, 165, 44, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdf7 100%);
  box-shadow: 0 18px 48px rgba(20, 35, 27, 0.08);
  text-align: left;
}

.abt-facilities-panel h3 {
  margin: 0 0 18px;
  text-align: center;
  color: var(--ink);
  font-family: "Baloo 2", sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
}

.abt-facilities-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.abt-facilities-grid li {
  position: relative;
  min-height: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 14px;
  border: 1px solid rgba(47, 107, 21, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 248, 0.95));
  color: var(--green-dark);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 10px 26px rgba(20, 35, 27, 0.055);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.abt-facilities-grid li::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.abt-facilities-grid li:hover {
  transform: translateY(-6px);
  border-color: rgba(89, 165, 44, 0.26);
  box-shadow: 0 20px 42px rgba(20, 35, 27, 0.11);
}

.abt-facilities-grid li:hover::before {
  opacity: 1;
}

.facility-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(89, 165, 44, 0.09);
  color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(89, 165, 44, 0.08);
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.abt-facilities-grid li:hover .facility-icon {
  background: var(--green);
  color: #fff;
  transform: scale(1.05);
}

.facility-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 991px) {
  .abt-facilities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .abt-facilities-grid {
    grid-template-columns: 1fr;
  }
}
.abt-highlight {
  padding: 22px 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(238, 247, 235, 0.8);
  box-shadow: 0 10px 30px rgba(20, 35, 27, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 20px;
}

.abt-highlight:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(89, 165, 44, 0.08);
  border-color: var(--green-light);
}

.abt-highlight-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(89, 165, 44, 0.06);
  color: var(--green);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.abt-highlight:nth-child(2) .abt-highlight-icon {
  background: rgba(242, 169, 0, 0.06);
  color: var(--gold);
}

.abt-highlight:hover .abt-highlight-icon {
  transform: scale(1.1) rotate(8deg);
  background: var(--green);
  color: #fff;
}

.abt-highlight:nth-child(2):hover .abt-highlight-icon {
  background: var(--gold);
}

.abt-highlight-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
}

.abt-highlight-content {
  flex-grow: 1;
}

.abt-highlight h4 {
  margin: 0 0 6px;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.1;
}

.abt-highlight p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.abt-overview-strip {
  margin-top: 4px;
}

.abt-overview-strip img {
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 35, 27, 0.08);
}

.abt-photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 480px;
}

.abt-mosaic-main {
  grid-row: 1 / -1;
  border-radius: 16px;
  object-fit: cover;
  height: 100%;
  box-shadow: var(--shadow);
}

.abt-mosaic-small {
  border-radius: 16px;
  object-fit: cover;
  height: 100%;
  box-shadow: 0 12px 28px rgba(20, 35, 27, 0.08);
}

/* --- VISION & MISSION --- */
.abt-vm {
  background:
    linear-gradient(135deg, rgba(238, 247, 235, 0.7), rgba(255, 253, 248, 0.95)),
    var(--mist);
}

.abt-vm-header {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}

.abt-vm-header h2 {
  margin: 8px 0 0;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.2rem, 4vw, 2.3rem);
  line-height: 1.12;
}

.abt-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.abt-vm-card {
  position: relative;
  min-height: 500px;
  padding: 28px 28px 0;
  border-radius: 8px;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(20, 35, 27, 0.12);

  transform-origin: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease, border-color 0.35s ease;
}

.abt-vm-vision {
  background: #fff;
}

.abt-vm-mission {
  background: #fff;
}

.abt-vm-values {
  background: #fff;
}

.abt-vm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 2px solid transparent;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transform: rotate(0deg) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.abt-vm-card::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 250px;
  height: 250px;
  border-radius: 50% 50% 8px 50%;
  background: rgba(240, 240, 240, 0.42);
  pointer-events: none;
  z-index: 0;
}

.abt-vm-card:hover {
  transform: translateY(-12px) rotate(-2deg);
  border-color: rgba(89, 165, 44, 0.48);

  filter: saturate(1.04);
}

.abt-vm-card:hover::before {
  opacity: 1;
  transform: rotate(2deg) scale(1.01);
  border-color: rgba(89, 165, 44, 0.85);
}

.abt-vm-mission:hover {
  transform: translateY(-12px) rotate(2deg);
  border-color: rgba(242, 169, 0, 0.55);

}

.abt-vm-mission:hover::before {
  transform: rotate(-2deg) scale(1.01);
  border-color: rgba(242, 169, 0, 0.9);
}

.abt-vm-values:hover {
  border-color: rgba(168, 191, 37, 0.56);

}

.abt-vm-values:hover::before {
  border-color: rgba(168, 191, 37, 0.92);
}

.abt-vm-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.abt-vm-icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--green-dark);
}

.abt-vm-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.abt-vm-label {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.abt-vm-vision .abt-vm-label {
  background: rgba(89, 165, 44, 0.14);
  color: var(--green-dark);
}

.abt-vm-mission .abt-vm-label {
  background: rgba(242, 169, 0, 0.18);
  color: #7d5a10;
}

.abt-vm-values .abt-vm-label {
  background: #b9d6ca;
  color: var(--green-dark);
}

.abt-vm-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(1.12rem, 1.55vw, 1.38rem);
  line-height: 1.28;
  color: var(--ink);
}

.abt-vm-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}

.abt-vm-illustration {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  z-index: 1;
  width: calc(100% - 48px);
  height: 170px;
  fill: none;
  stroke: rgba(47, 107, 21, 0.52);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
  transition: transform 0.35s ease;
}

.abt-vm-illustration path,
.abt-vm-illustration circle {
  vector-effect: non-scaling-stroke;
}

.abt-vm-card:hover .abt-vm-illustration {
  transform: translateY(-8px) scale(1.03);
}

.abt-vm-asset {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  z-index: 1;
  width: calc(100% - 48px);
  height: 180px;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0.65;
  transition: transform 0.35s ease;
}

.abt-vm-card:hover .abt-vm-asset {
  transform: translateY(-8px) scale(1.03);
}

/* --- PRINCIPAL'S MESSAGE (About page) --- */
.abt-principal {
  background:
    linear-gradient(135deg, rgba(89, 165, 44, 0.08), rgba(242, 169, 0, 0.08)),
    var(--paper);
}

.abt-principal-row {
  align-items: flex-start !important;
  --bs-gutter-x: 3rem;
}

.abt-principal-portrait-col {
  position: relative;
  align-self: stretch;
}

.abt-principal-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 52px;
  align-items: center;
}

.abt-principal-portrait {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  padding: 0;
  isolation: isolate;
}



.abt-principal-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: none;
}

.abt-principal-badge {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
  display: grid;
  gap: 2px;
  width: min(300px, 78%);
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(47, 107, 21, 0.12);
}

.abt-principal-badge strong {
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1;
}

/* --- ACADEMICS V3 (Bold Editorial - Refined) --- */
.acad-curriculum-v3 {
  padding: 92px 0;
  position: relative;
  background:
    linear-gradient(90deg, rgba(238, 247, 235, 0.62), transparent 38%),
    #fff;
}

.acad-curriculum-panel {
  display: block;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  border: 0;
}

.acad-curriculum-text {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.acad-curriculum-visual {
  position: relative;
  min-height: 560px;
  max-height: 100%;
  padding: 30px;
  background:
    linear-gradient(135deg, var(--green), #4fa31e);
  border-radius: 12px;
  isolation: isolate;
  box-shadow: 0 30px 80px rgba(47, 107, 21, 0.2);
}

.acad-curriculum-visual img {
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(20, 35, 27, 0.22);
  z-index: 2;
}

.acad-curriculum-visual::before {
  content: "";
  position: absolute;
  top: -38px;
  right: 0;
  width: 72%;
  height: 60px;
  background: var(--green);
  z-index: 1;
}

.acad-curriculum-visual::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 120px;
  height: 120px;
  border-right: 2px solid rgba(255, 255, 255, 0.48);
  border-bottom: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: 0 0 8px 0;
  z-index: 3;
  pointer-events: none;
}

.acad-curriculum-text .lead {
  max-width: 700px;
}

.acad-curriculum-text p {
  max-width: 700px;
  text-align: justify;
  text-justify: inter-word;
}

.acad-curriculum-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.acad-curriculum-points span {
    display: inline-flex;
    align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(47, 107, 21, 0.14);
  border-radius: 999px;
  background: rgba(238, 247, 235, 0.78);
  color: var(--green-dark);
  font-weight: 850;
  font-size: 0.92rem;
}

.acad-stage-cards-v3 {
  margin-top: 50px;
}

.acad-stage-card-v3 {
  background: #fff;
  padding: 42px 34px;
  height: 100%;
  border-radius: 28px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.acad-stage-card-v3:hover {
  transform: translateY(-12px);
  border-color: var(--green);
  box-shadow: 0 30px 80px rgba(89, 165, 44, 0.1);
}

.acad-stage-card-v3 .number {
  font-size: 5.2rem;
  font-weight: 900;
  color: var(--green);
  opacity: 0.04;
  position: absolute;
  top: -10px;
  right: -10px;
  line-height: 1;
  pointer-events: none;
}

.acad-stage-card-v3 .badge-theme-green {
  background: var(--green);
  color: #fff;
}

.acad-stage-card-v3 .badge-theme-dark {
  background: var(--green-dark);
  color: #fff;
}

.acad-stage-card-v3 .badge-theme-gold {
  background: var(--gold);
  color: var(--ink);
}

.acad-stage-kicker {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.acad-stage-card-v3 h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.75rem;
  color: var(--ink);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.acad-stage-options {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.acad-stage-options li {
  position: relative;
  margin: 2px 0;
  padding-left: 20px;
}

.acad-stage-options li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

.acad-stage-card-v3 p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 1.05rem;
}

.acad-offered {
  position: relative;
  background:
    radial-gradient(circle at 90% 12%, rgba(89, 165, 44, 0.1), transparent 28%),
    linear-gradient(180deg, #fff, rgba(255, 253, 248, 0.96));
}

.acad-offered-grid {
  margin-top: 46px;
}

.acad-offered-card {
  position: relative;
  height: 100%;
  overflow: visible;
  padding: clamp(22px, 3vw, 34px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: none;
}

.acad-offered-card::before {
  content: none;
}

.acad-offered-card:hover {
  transform: none;
  box-shadow: none;
}

.acad-offered-media img {
  width: 100%;
  height: clamp(280px, 28vw, 390px);
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(8, 28, 19, 0.12);
}

.acad-offered-body {
  justify-content: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}

.acad-offered-body > h3 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.25;
  font-weight: 600;
}

.acad-offered-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.acad-offered-stage {
  z-index: 3;
  width: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.05;
  font-weight: 700;
  margin: 0;
  position: relative;
  box-shadow: none;
}

.acad-offered-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 780px;
}

.acad-offered-columns > div {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.acad-offered-columns h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.2;
  font-weight: 600;
}

.acad-offered-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.acad-subject-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.acad-subject-tile {
  position: relative;
  isolation: isolate;

  background: #fff;
  padding: 34px 20px 30px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  border: 1px solid rgba(47, 107, 21, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  box-shadow: 0 18px 42px rgba(8, 28, 19, 0.08);
  overflow: hidden;
}

.acad-subject-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.acad-subject-tile::before {
  inset: 12px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 14%, rgba(89, 165, 44, 0.08), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(242, 169, 0, 0.1), transparent 34%);
  opacity: 1;
  transform: scale(1);
}

.acad-subject-tile:hover {
  color: var(--ink);
  transform: translateY(-8px);
  border-color: rgba(89, 165, 44, 0.24);
  box-shadow: 0 24px 55px rgba(8, 28, 19, 0.12);
}

.acad-subject-tile:hover::before {
  opacity: 1;
}

.acad-subject-tile:hover::before {
  transform: scale(1.16);
}

.acad-subject-tile .subject-icon {
  order: 2;
  width: 70px;
  height: 70px;
  display: block;
  margin: 10px 0 0;
  background: transparent;
  object-fit: contain;
  position: relative;
  z-index: 1;
  box-shadow: none;
  transition: transform 0.28s ease;
}

.acad-subject-tile h3 {
  order: 1;
  font-weight: 400;
  font-size: 1.1rem;
  font-family: "Baloo 2", sans-serif;
  line-height: 1.1;
  margin: 0;
  position: relative;
  z-index: 1;
  color: #333;
}

.acad-subject-tile p {
  display: none;
}

.acad-subject-tile:hover .subject-icon {
  transform: translateY(-4px) scale(1.08);
}

.acad-stage-num {
  width: 56px;
  height: 56px;
  background: #fff;
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(89, 165, 44, 0.1);
}

.acad-stage-num-alt {
  background: var(--gold);
  border: none;
  color: var(--ink);
  box-shadow: 0 0 30px rgba(242, 169, 0, 0.45);
  position: relative;
}

.acad-stage-num-alt::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 169, 0, 0.25) 0%, transparent 70%);
  z-index: -1;
}

.acad-assessment-v7 {
  padding: 40px 0;
  position: relative;
}

.assessment-photo-v7 {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.assessment-photo-v7 img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.assessment-photo-v7:hover img {
  transform: scale(1.05);
}

.acad-assessment-label {
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.assessment-content-v7 h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #0d1e16;
  margin-bottom: 20px;
}

.assessment-steps-v7 {
  margin-bottom: 40px;
}

.assessment-copy-v7 {
  max-width: 620px;
}

.assessment-copy-v7 p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.assessment-copy-v7 p:last-child {
  margin-bottom: 0;
}

.step-item-v7 {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
  align-items: flex-start;
}

.step-marker {
  width: 50px;
  height: 50px;
  background: #f2a900;
  color: #000;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(242, 169, 0, 0.2);
}

.step-info h4 {
  color: #0d1e16;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-info p {
  color: #666;
  line-height: 1.5;
  margin: 0;
  font-size: 1.05rem;
}

.assessment-badge-v7 {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #0d1e16;
  padding: 20px 30px;
  border-radius: 25px;
  width: max-content;
  box-shadow: 0 15px 30px rgba(13, 30, 22, 0.15);
}

.assessment-badge-v7 .badge-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: #f2a900;
  font-family: "Baloo 2", sans-serif;
  line-height: 1;
}

.assessment-badge-v7 .badge-txt {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.acad-downloads-section {
  padding-top: 20px;
}

.acad-downloads-card {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.acad-downloads-card h2 {
  color: #0d1e16;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.acad-downloads-intro {
  max-width: 680px;
  margin: 0 auto 30px;
}

.acad-downloads-intro p {
  color: #555;
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
}

.acad-downloads-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
}

.acad-resource-row {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 26px;
  color: #0d1e16;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(13, 30, 22, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(13, 30, 22, 0.07);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.acad-resource-row::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(242, 169, 0, 0.28) 0%, rgba(242, 169, 0, 0.28) 50%, transparent 50%);
  border-top-right-radius: 8px;
}

.acad-resource-row:hover {
  color: #0d1e16;
  border-color: rgba(89, 165, 44, 0.32);
  box-shadow: 0 24px 55px rgba(47, 107, 21, 0.12);
  transform: translateY(-4px);
}

.resource-count {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--green-dark);
  background: var(--mist);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 900;
}

.resource-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.resource-title {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.resource-desc {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.55;
}

.resource-action {
    display: inline-flex;
    align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 800;
  margin-top: auto;
  padding-top: 24px;
  white-space: nowrap;
}

.resource-action::after {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(242, 169, 0, 0.22);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232f6b15' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m13 6 6 6-6 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex: 0 0 24px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.acad-resource-row:hover .resource-action::after {
  background-color: rgba(242, 169, 0, 0.34);
  transform: translateX(3px);
}

@media (max-width: 1199px) {
  .acad-curriculum-text {
    padding: 0;
  }

  .acad-subject-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }

  .assessment-photo-v7 img {
    height: 500px;
  }

  .assessment-content-v7 h2 {
    font-size: 2.5rem;
  }

}

@media (max-width: 991px) {
  .acad-curriculum-panel {
    display: block;
  }

  .acad-curriculum-visual {
    min-height: auto;
    padding: 22px;
    border-radius: 8px;
  }

  .acad-curriculum-visual img {
    width: 100%;
    height: 420px;
  }

  .acad-offered-card {
    max-width: 760px;
    margin: 0 auto;
  }

  .acad-offered-media img {
    height: 280px;
    min-height: 0;
  }

  .acad-offered-stage {
    margin-left: 0;
  }

  .assessment-photo-v7 {
    margin-bottom: 30px;
  }

  .assessment-photo-v7 img {
    height: 400px;
  }

  .acad-downloads-list {
    grid-template-columns: 1fr;
  }

  .acad-resource-row {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .acad-curriculum-v3 {
    padding: 64px 0;
  }

  .acad-offered-columns {
    grid-template-columns: 1fr;
  }

  .acad-offered-media img {
    height: 220px;
  }

  .acad-subject-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .acad-curriculum-text {
    padding: 0;
  }

  .acad-curriculum-visual {
    min-height: auto;
    padding: 16px;
  }

  .acad-curriculum-visual img {
    height: 320px;
  }

  .acad-curriculum-visual::before {
    height: 42px;
    top: -24px;
  }

  .acad-curriculum-points span {
    width: 100%;
    justify-content: center;
  }
}

/* --- STUDENT LIFE INTRODUCTION --- */
.stl-intro-v2 {
  position: relative;
  padding: 88px 0 48px;
  background:
    radial-gradient(circle at 5% 20%, rgba(89, 165, 44, 0.13), transparent 24%),
    linear-gradient(180deg, #fff 0%, rgba(238, 247, 235, 0.42) 100%);
  overflow: hidden;
}

.stl-intro-panel-v2 {
  display: block;
}

.stl-intro-copy-v2 {
  position: relative;
  z-index: 2;
}

.stl-intro-copy-v2 p {
  max-width: 680px;
  color: #4c574e;
  font-size: 1.06rem;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

.stl-intro-tags-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.stl-intro-tags-v2 span {
    display: inline-flex;
    align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(47, 107, 21, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(20, 35, 27, 0.06);
}

.stl-intro-actions-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.stl-intro-actions-v2 .btn-outline {
  border-color: rgba(47, 107, 21, 0.26);
  color: var(--green-dark);
  background: #fff;
}

.stl-intro-actions-v2 .btn-outline:hover {
  border-color: var(--green);
  background: rgba(238, 247, 235, 0.82);
  color: var(--green-dark);
}

.stl-intro-visual-v2 {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), #4fa31e);
  box-shadow: 0 30px 80px rgba(20, 35, 27, 0.18);
  overflow: hidden;
}

.stl-intro-visual-v2::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}

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

@media (max-width: 991px) {
  .stl-intro-panel-v2 {
    display: block;
  }

  .stl-intro-visual-v2,
  .stl-intro-visual-v2 img {
    min-height: 420px;
  }
}

@media (max-width: 575px) {
  .stl-intro-v2 {
    padding: 64px 0 36px;
  }

  .stl-intro-copy-v2 p {
    text-align: left;
    font-size: 1rem;
  }

  .stl-intro-tags-v2 span,
  .stl-intro-actions-v2 .btn {
    width: 100%;
    justify-content: center;
  }

  .stl-intro-visual-v2,
  .stl-intro-visual-v2 img {
    min-height: 300px;
  }
}

/* --- STUDENT LIFE ACTIVITIES V4 (Horizontal Panels) --- */
.stl-activities-v4 {
  padding: 72px 0 120px;
  background: #fff;
  overflow: hidden;
}

.stl-horizontal-accordion {
  display: flex;
  height: 400px;
  width: 100%;
  gap: 7px;
}

.stl-panel {
  position: relative;
  flex: 0 0 70px;
  min-width: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 25px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.35, 1);
  
}

.stl-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 30, 22, 1),  rgba(13, 30, 22, 1));
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.stl-panel.active {
  flex: 1 1 auto;
  cursor: default;
  filter: grayscale(0%);
}

.stl-panel.active::before {
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(13, 30, 22, 0.88) 0%, rgba(13, 30, 22, 0.68) 42%, rgba(13, 30, 22, 0.12) 78%),
    linear-gradient(0deg, rgba(13, 30, 22, 0.72) 0%, rgba(13, 30, 22, 0.16) 55%, transparent 100%);
}

.stl-panel-label {
  position: absolute;
  inset: 64px 0 40px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  color: #fff;
  font-family: "Baloo 2", cursive;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  pointer-events: none;
  transition: all 0.5s ease;
}

.stl-panel.active .stl-panel-label {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
}

.stl-panel-content {
  position: absolute;
  inset: 0;
  padding: 60px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 2;
}

.stl-panel.active .stl-panel-content {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}

.stl-panel-inner {
  max-width: 400px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.panel-num {
  display: block;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 15px;
}

.stl-panel-content h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 15px;
}

.stl-panel-content p {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .stl-panel {
    flex-basis: 92px;
  }

  .stl-panel-content {
    padding: 48px;
  }

  .stl-panel-content h3 {
    font-size: 2rem;
  }

}

@media (max-width: 991px) {
  .stl-horizontal-accordion {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }

  .stl-panel {
    flex: none;
    height: 60px;
    width: 100%;
  }

  .stl-panel.active {
    height: 400px;
  }

  .stl-panel-label {
    inset: auto 30px 22px;
    display: block;
    transform: none;
    writing-mode: horizontal-tb;
    font-size: 1.2rem;
    text-align: left;
  }

  .stl-panel-content {
    padding: 30px;
  }

  .stl-panel-content h3 {
    font-size: 1.8rem;
  }

}

/* --- STUDENT LIFE EVENT LIST --- */
.stl-event-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 18px;
  padding: 0;
  margin-left: 0;
  list-style: none;
}

.stl-event-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #213a2c;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.5;
  box-shadow: none;
  transition: transform 0.22s ease;
}

.stl-event-list li::after {
  display: none;
}

.stl-event-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(242, 169, 0, 0.24);
  color: var(--green-dark);
  font-size: 1.15rem;
  font-weight: 900;
}

.stl-event-list strong {
  color: var(--ink);
  font-weight: 900;
}

.stl-event-list li:hover {
  transform: translateY(-2px);
}

.stl-event-showcase {
  max-width: 520px;
  margin-left: auto;
}

.stl-event-showcase img {
  border-radius: 8px;
}

@media (max-width: 991px) {
  .stl-event-showcase {
    max-width: 640px;
    margin: 20px auto 0;
  }
}

@media (max-width: 767px) {
  .stl-event-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .stl-event-list li {
    align-items: flex-start;
  }
}

/* --- STUDENT LIFE ACTIVITY DETAILS --- */
.stl-activity-details {
  position: relative;
  padding: 120px 0;
  background: #14241d;
  overflow: hidden;
}

.stl-activity-details::before {
  content: "";
  position: absolute;
  inset: -8px;
  background:
    linear-gradient(rgba(0, 42, 28, 0.62), rgba(1, 52, 35, 0.72)),
    url("../images/img/learing-experience.webp") center center / cover fixed no-repeat;
  filter: blur(3px) grayscale(0.12);
  pointer-events: none;
}

.stl-activity-details::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(232, 238, 234, 0.2), rgba(232, 238, 234, 0.1)),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.22), transparent 24%),
    radial-gradient(circle at 84% 82%, rgba(255, 255, 255, 0.14), transparent 26%),
    rgba(13, 30, 22, 0.2);
  pointer-events: none;
}

.stl-activity-details .container {
  position: relative;
  z-index: 2;
}

.stl-activity-details .section-header .inner-heading,
.stl-activity-details .section-header p {
  color: #fff;
}

.stl-activity-details .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px !important;
  text-align: center;
}

.stl-activity-details .section-header .inner-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: clamp(2.3rem, 4vw, 3rem);
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
}

.stl-activity-details .section-header p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.84) !important;
  font-weight: 700;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.24);
}

.stl-activity-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 34px;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  box-shadow: 0 24px 65px rgba(8, 28, 19, 0.18);
  backdrop-filter: blur(4px);
  overflow: hidden;
}

.stl-activity-card::after {
  content: "";
  position: absolute;
  top: -46px;
  right: -46px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(89, 165, 44, 0.12);
}

.stl-activity-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.stl-activity-card h3 {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
}

.stl-activity-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.stl-activity-grade {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 30, 22, 0.1);
}

.stl-activity-grade span {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.stl-activity-grade strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .stl-activity-details::before {
    background-attachment: scroll;
  }

  .stl-activity-card {
    min-height: auto;
  }
}

/* --- STUDENT LIFE GALLERY SWIPER --- */
.stl-gallery {
  background: var(--paper);
  overflow: hidden;
}

.stl-gallery .text-center h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.home-gallery-feature {
  position: relative;
  max-width: 980px;
  margin: 0 auto 72px;
}

.gallery-thread {
  position: absolute;
  left: 50%;
  top: 58px;
  width: 96px;
  height: 42px;
  z-index: 0;
  pointer-events: none;
  transform: translateX(-50%);
}

.gallery-thread svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.gallery-thread path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-thread-line {
  stroke: #c9d8c0;
  stroke-width: 6;
}

.home-gallery-feature > .col-12 {
  position: relative;
  z-index: 1;
}

.home-gallery-board {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.home-gallery-collage {
  position: relative;
  display: block;
  width: 100%;
  max-width: 430px;
  padding: 14px 14px 42px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(8, 28, 19, 0.13);
  transform: rotate(-1.5deg);
}

.home-gallery-collage::before {
  content: "";
  position: absolute;
  inset: 14px 14px 42px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}

.home-gallery-collage img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.home-gallery-feature .col-12:nth-of-type(3) .home-gallery-collage {
  transform: rotate(1.5deg);
}

.home-gallery-media-icon {
  position: absolute;
  left: 50%;
  top: calc(50% - 14px);
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.86);
  border: 3px solid rgba(242, 169, 0, 0.86);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(8, 28, 19, 0.18);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.home-gallery-media-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-gallery-media-icon.video-icon svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
  stroke: none;
  transform: translateX(2px);
}

.home-gallery-main-img {
  height: 285px;
}

.home-gallery-actions {
  display: flex;
  justify-content: center;
}

.home-gallery-video-link {
    display: inline-flex;
    align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(217, 164, 65, 0.26);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.home-gallery-video-link:hover {
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-3px) scale(1.03);
}

.stl-gallery-wrap {
  position: relative;
}

.stl-gallery-swiper {
  overflow: hidden;
}

.stl-gallery-swiper .swiper-slide {
  height: auto;
}

.stl-gallery-slide {
  position: relative;
  width: 100%;
  height: clamp(220px, 24vw, 320px);
  display: block;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #dfe7df;
  cursor: zoom-in;
  box-shadow: 0 26px 70px rgba(8, 28, 19, 0.14);
}

.stl-gallery-slide .swiper-zoom-container {
  width: 100%;
  height: 100%;
}

.stl-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.stl-gallery-slide:hover img,
.stl-gallery-slide:focus-visible img {
  transform: scale(1.05);
}

.stl-gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 19, 0.28);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.stl-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 14px 36px rgba(8, 28, 19, 0.24);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.stl-zoom-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stl-gallery-slide:hover::after,
.stl-gallery-slide:focus-visible::after,
.stl-gallery-slide:hover .stl-zoom-icon,
.stl-gallery-slide:focus-visible .stl-zoom-icon {
  opacity: 1;
}

.stl-gallery-slide:hover .stl-zoom-icon,
.stl-gallery-slide:focus-visible .stl-zoom-icon {
  transform: translate(-50%, -50%) scale(1);
}

.stl-gallery-slide:focus-visible {
  outline: 4px solid rgba(89, 165, 44, 0.38);
  outline-offset: 5px;
}

.stl-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 16px 38px rgba(8, 28, 19, 0.18);
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.stl-gallery-nav:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-50%) scale(1.04);
}

.stl-gallery-prev {
  left: -26px;
}

.stl-gallery-next {
  right: -26px;
}

.stl-gallery-pagination {
  position: static;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.stl-gallery-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: rgba(47, 107, 21, 0.32);
  opacity: 1;
  transition: width 0.2s ease, background 0.2s ease;
}

.stl-gallery-pagination .swiper-pagination-bullet-active {
  width: 34px;
  border-radius: 999px;
  background: var(--green);
}

.stl-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 28, 19, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.stl-gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.stl-gallery-lightbox img {
  width: min(1200px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  cursor: zoom-in;
  transition: transform 0.24s ease;
}

.stl-gallery-lightbox.is-zoomed img {
  transform: scale(1.45);
  cursor: zoom-out;
}

.stl-gallery-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

/* --- GALLERY PAGES --- */
.gallery-page-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(242, 169, 0, 0.1), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(89, 165, 44, 0.12), transparent 30%),
    var(--paper);
}

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

.gallery-page-item {
  position: relative;
  display: block;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(47, 107, 21, 0.12);
}

.gallery-page-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-event-name {
  display: block;
  padding: 14px 12px 8px;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.gallery-page-item:hover img,
.gallery-page-item:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.05);
}

.gallery-page-item::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.gallery-page-item:hover::after,
.gallery-page-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.photo-event-modal .modal-content {
  border: 0;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.photo-event-modal .modal-header {
  border-bottom: 1px solid rgba(47, 107, 21, 0.12);
  padding: 18px 22px;
}

.photo-event-modal .modal-title {
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 800;
}

.photo-event-modal .modal-body {
  padding: 22px;
  background: var(--paper);
}

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

.photo-event-modal-card {
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(47, 107, 21, 0.12);
}

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

.video-gallery-section {
  background:
    linear-gradient(135deg, rgba(238, 247, 235, 0.78), rgba(255, 253, 248, 0.98)),
    var(--mist);
}

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

.video-gallery-card {
  overflow: hidden;
  border: 1px solid rgba(47, 107, 21, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(47, 107, 21, 0.1);
}

.video-gallery-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.video-gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 28, 19, 0.34), rgba(8, 28, 19, 0.04));
}

.video-gallery-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(8, 28, 19, 0.24);
  transform: translate(-50%, -50%);
}

.video-gallery-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid var(--ink);
}

.video-gallery-card:hover .video-gallery-thumb img,
.video-gallery-card:focus-within .video-gallery-thumb img {
  filter: saturate(1.08);
  transform: scale(1.05);
}

.video-gallery-body {
  padding: 24px 26px 28px;
}

.video-gallery-body span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(89, 165, 44, 0.14);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-gallery-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.22;
}

.video-gallery-body p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 28, 19, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.video-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.video-lightbox-frame {
  position: relative;
  width: min(1040px, 92vw);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.video-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

@media (max-width: 980px) {
  .gallery-page-grid,
  .video-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gallery-page-grid,
  .video-gallery-grid {
    grid-template-columns: 1fr;
  }

  .photo-event-modal .modal-body {
    padding: 16px;
  }

  .photo-event-modal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

}

@media (max-width: 991px) {
  .gallery-thread {
    display: none;
  }

  .home-gallery-board {
    gap: 18px;
  }

  .home-gallery-collage {
    max-width: 100%;
  }

  .home-gallery-main-img {
    height: 220px;
  }

  .home-gallery-media-icon {
    width: 58px;
    height: 58px;
  }

  .home-gallery-media-icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 767px) {
  .stl-gallery-slide {
    height: 240px;
  }

  .stl-gallery-nav {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .stl-gallery-prev {
    left: 10px;
  }

  .stl-gallery-next {
    right: 10px;
  }

  .stl-gallery-lightbox.is-zoomed img {
    transform: scale(1.18);
  }
}

/* --- PREMIUM PRINCIPAL SECTION (About page) --- */
.abt-principal-v2 {
  padding: 110px 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(89, 165, 44, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(238, 247, 235, 0.78), rgba(255, 253, 248, 0.96) 48%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.abt-principal-v2::before {
  content: "";
  position: absolute;
  inset: 26px auto auto 0;
  width: min(34vw, 430px);
  height: min(34vw, 430px);
  background: radial-gradient(circle, rgba(89, 165, 44, 0.12), transparent 68%);
  pointer-events: none;
}

.abt-principal-layout-v3 {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(270px, 0.38fr) minmax(0, 0.62fr);
  gap: 24px;
  align-items: stretch;
}

.abt-principal-intro-v4 {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 0px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(47, 107, 21, 0.12);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(20, 35, 27, 0.12);
}

.abt-principal-intro-v4::before {
  display: none;
}

.abt-principal-intro-v4::after {
  display: none;
}

.abt-principal-media-v5 {
  min-height:100%;
 
  background:
    linear-gradient(180deg, rgba(18, 53, 35, 0.02), rgba(18, 53, 35, 0.12)),
    url("../images/img/school-2.webp") center center / cover no-repeat;
}

.abt-principal-summary-v5 {
  position: relative;
  z-index: 2;
  margin: 10px 10px 0px 10px;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 8px;
  border: 1px solid rgba(47, 107, 21, 0.12);
  background:
    radial-gradient(circle at 92% 12%, rgba(242, 169, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdf7 100%);
  box-shadow: none;
}

.abt-principal-intro-v4 .kicker {
  position: relative;
  width: fit-content;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(47, 107, 21, 0.1);
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 900;
  z-index: 1;
}

.abt-principal-intro-v4 h2 {
  position: relative;
  margin: 18px 0 0;
  color: var(--green-dark);
  font-size: clamp(2.05rem, 3.4vw, 3rem);
  line-height: 1.05;
  z-index: 1;
}

.abt-principal-intro-v4 p {
  position: relative;
  margin: 14px 0 0;
  color: rgba(48, 58, 49, 0.78) !important;
  font-weight: 750;
  line-height: 1.65;
  max-width: 32ch;
  text-shadow: none;
  z-index: 1;
}

.abt-principal-highlights-v4 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  z-index: 1;
}

.abt-principal-highlights-v4 span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(47, 107, 21, 0.12);
  border-radius: 999px;
  background: rgba(238, 247, 235, 0.82);
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 850;
  box-shadow: none;
}

.abt-principal-highlights-v4 span::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(242, 169, 0, 0.14);
}

.abt-principal-single {
  display: block;
  width: 100%;
}

.abt-principal-single .abt-principal-letter-v3 {
  width: 100%;
}

.abt-principal-single .abt-principal-summary-v5 {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.abt-principal-single .abt-principal-summary-v5 .kicker {
  width: fit-content;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(47, 107, 21, 0.1);
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 900;
  text-transform: uppercase;
}

.abt-principal-single .abt-principal-summary-v5 h2 {
  margin: 18px 0 0;
  color: var(--green-dark);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.05;
  font-weight: 700;
}

.abt-principal-single .abt-principal-summary-v5 p {
  margin: 14px 0 0;
  color: rgba(48, 58, 49, 0.78);
  font-weight: 700;
  line-height: 1.65;
  max-width: 58ch;
}

.abt-principal-single .abt-principal-highlights-v4 {
  margin-top: 22px;
}

.abt-principal-single .abt-principal-body-v2 p {
  max-width: none;
  width: 100%;
}

.abt-principal-single .abt-principal-body-v2 p:first-of-type {
  width: fit-content;
}

.abt-principal-letter-v3 {
  position: relative;
  width: 100%;
  padding: clamp(30px, 4vw, 50px);
  border-left: 6px solid var(--gold);
  border-top: 1px solid rgba(47, 107, 21, 0.1);
  border-right: 1px solid rgba(47, 107, 21, 0.1);
  border-bottom: 1px solid rgba(47, 107, 21, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(47, 107, 21, 0.09);
}

.abt-principal-letter-v3 .inner-heading {
  display: none;
}

.abt-principal-letter-v3::after {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 92px;
  height: 92px;
  border-top: 2px solid rgba(89, 165, 44, 0.22);
  border-right: 2px solid rgba(89, 165, 44, 0.22);
  border-radius: 0 8px 0 0;
  pointer-events: none;
}

.abt-principal-portrait-v2 {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.abt-principal-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: linear-gradient(135deg, rgba(89, 165, 44, 0.08) 0%, rgba(242, 169, 0, 0.08) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morphBlob 12s ease-in-out infinite;
  z-index: 1;
}

@keyframes morphBlob {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.abt-principal-portrait-v2 img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.abt-principal-tag {
  position: absolute;
  bottom: -30px;
  left: -20px;
  background: #fff;
  padding: 24px 32px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt-principal-tag strong {
  font-family: "Baloo 2", sans-serif;
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1;
}

.abt-principal-tag span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
}

.abt-principal-letter-v3 .kicker {
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  line-height: 1.2;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.abt-principal-title-v3,
.abt-principal-content-v2 h2 {
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(2.15rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 34px;
 
  
}

.abt-principal-body-v2 p {
  font-size: 1.02rem;
  line-height: 1.74;
  color: var(--muted);
  font-weight: 650;
  margin-bottom: 20px;
  max-width: 900px;
}

.abt-principal-body-v2 p:first-of-type {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(89, 165, 44, 0.1);
  color: var(--ink);
  font-weight: 900;
}

.abt-principal-signature-v4 {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100%, 520px);
  margin-top: 30px;
  padding: 12px 16px;
  border: 1px solid rgba(47, 107, 21, 0.12);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 16px 36px rgba(20, 35, 27, 0.07);
}

.abt-principal-signature-v4>span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.abt-principal-signature-v4 strong {
  display: block;
  color: var(--ink);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.12rem;
  line-height: 1.2;
}

.abt-principal-signature-v4 small {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.abt-principal-body-v2 .lead {
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--ink);
  font-family: "Baloo 2", sans-serif;
  border-left: 4px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .abt-principal-v2 {
    padding: 80px 0;
  }

  .abt-principal-layout-v3 {
    grid-template-columns: 1fr;
  }

  .abt-principal-intro-v4 {
    min-height: auto;
  }

  .abt-principal-tag {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .abt-principal-v2 {
    padding: 64px 0;
  }

.abt-principal-letter-v3 {
    padding: 28px 20px;
  }

  .abt-principal-intro-v4 {
    min-height: auto;
    padding: 10px;
  }

  .abt-principal-media-v5 {
    min-height: 260px;
  }

  .abt-principal-summary-v5 {
    margin: 0;
    padding: 22px 18px;
  }

  .abt-principal-body-v2 p {
    font-size: 1rem;
  }

  .abt-principal-body-v2 .lead {
    font-size: 1.22rem;
    padding-left: 18px;
  }

  .abt-principal-signature-v4 {
    align-items: flex-start;
    padding: 16px;
  }
}

/* --- CENTRAL SHOWCASE VALUES (About page) --- */
.abt-values-v3 {
  padding: 120px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.abt-values-header-v3 {
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.abt-values-header-v3 .kicker {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
  display: block;
}

.abt-values-header-v3 h2 {
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(2.2rem, 4vw, 2.3rem);
  line-height: 1.1;
  color: var(--ink);
}

.abt-values-grid-v3 {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.abt-values-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/*.abt-values-column-left {
  text-align: right;
}

.abt-values-column-left .abt-value-head-v3 {
  flex-direction: row-reverse;
}*/

.abt-values-column-left .abt-value-item-v3 p {
  margin-left: auto;
}

.abt-value-item-v3 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s ease;
}

.abt-value-head-v3 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.abt-value-icon-v3 {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.abt-values-column-right .abt-value-icon-v3 {
  border-color: var(--gold);
  color: var(--gold);
}

.abt-value-item-v3:hover .abt-value-icon-v3 {
  background: var(--green);
  color: #fff;
  transform: scale(1.1) rotate(10deg);
}

.abt-values-column-right .abt-value-item-v3:hover .abt-value-icon-v3 {
  background: var(--gold);
  border-color: var(--gold);
}

.abt-value-item-v3 h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.4rem;
  margin: 0;
  color: var(--ink);
  line-height: 1;
}

.abt-value-item-v3 p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 600;
}

.abt-values-center-v3 {
  position: relative;
  margin: 10px;
  border-radius: 50px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
}

.abt-values-center-v3 img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
}

.abt-values-badge-v3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--gold);
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  clip-path: polygon(0 15%, 5% 0, 10% 15%, 15% 0, 20% 15%, 25% 0, 30% 15%, 35% 0, 40% 15%, 45% 0, 50% 15%, 55% 0, 60% 15%, 65% 0, 70% 15%, 75% 0, 80% 15%, 85% 0, 90% 15%, 95% 0, 100% 15%, 100% 100%, 0 100%);
}

.abt-values-badge-v3 strong {
  display: block;
  font-family: "Baloo 2", sans-serif;
  font-size: 4.5rem;
  line-height: 0.8;
  margin-bottom: 5px;
}

.abt-values-badge-v3 span {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 991px) {
  .abt-values-grid-v3 {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .abt-values-center-v3 {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .abt-values-column-left {
    text-align: left;
  }

  .abt-values-column-left .abt-value-head-v3 {
    flex-direction: row;
  }
}

/* --- PREMIUM ACCREDITATIONS (About page) --- */
.abt-accred {
  padding: 0px 0px 20px 0px;
  background: #f8fafc;

  position: relative;
}

.abt-accred-panel {
  background: #fff;
  border-radius: 60px;
  padding: 30px 50px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.abt-accred-panel::before {
  content: "TRUSTED";
  position: absolute;
  top: 40px;
  right: -20px;
  font-size: 10rem;
  font-weight: 900;
  color: #f1f5f9;
  opacity: 0.5;
  transform: rotate(-5deg);
  pointer-events: none;
  z-index: -1;
}

.abt-accred-copy {
  position: relative;
  z-index: 2;
}

.abt-accred-copy .kicker {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 20px;
  display: block;
}

.abt-accred-copy h2 {
  margin: 0 0 25px;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  color: var(--ink);
  max-width: 20ch;
}

.abt-accred-copy p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 600;
  max-width: 60ch;
  margin-bottom: 0;
}

.abt-accred-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

.abt-accred-item {
  background: rgba(248, 250, 252, 0.5);
  padding: 22px 18px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.abt-accred-item:hover {
  background: #fff;
  border-color: var(--green-light);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.abt-accred-item span {
  display: none;
}



.abt-accred-action .btn {
  padding: 18px 36px;
  border-radius: 30px;
  font-weight: 800;
  background: var(--gold);
  color: var(--ink);
  border: none;
  box-shadow: 0 10px 25px rgba(242, 169, 0, 0.3);
  transition: all 0.3s ease;
}

.abt-accred-action .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(242, 169, 0, 0.4);
  background: #e09b00;
}

.abt-accred-logo-wrap {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-accred-logo-wrap img {
  max-width: 92%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

.abt-accred-item:hover .abt-accred-logo-wrap img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .abt-accred-panel {
    padding: 42px 34px;
    border-radius: 28px;
    text-align: center;
  }

  .abt-accred-panel::before {
    font-size: 5.2rem;
    top: 20px;
  }

  .abt-accred-copy h2 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .abt-accred-copy p {
    max-width: 100%;
  }

  .abt-accred-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .abt-accred-action {
    position: static;
    margin-top: 40px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .abt-accred-panel {
    padding: 40px 20px;
  }

  .abt-accred-logos-grid {
    grid-template-columns: 1fr;
  }

  .abt-accred-logo-wrap {
    height: 92px;
  }
}

grid-template-columns: 1fr;
}
}

.abt-accred-logos .btn {
  width: max-content;
}

.inner-page main p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  color: #333;
}

/* --- ABOUT PAGE RESPONSIVE --- */
@media (max-width: 980px) {
  .inner-banner-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .abt-principal-grid {
    grid-template-columns: 1fr;
  }

  .abt-principal-portrait-col {
    position: static;
    height: auto;
  }

  .abt-principal-portrait {
    max-width: 480px;
    margin: 0 auto;
    min-height: 390px;
    height: auto;
  }

  .abt-principal-msg {
    max-height: none;
    overflow: visible;
    padding: 0;
  }

  .abt-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt-accred-panel {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

@media (max-width: 640px) {
  .inner-banner {
    min-height: 240px;
    background-attachment: scroll;
  }

  .inner-banner .container {
    padding-top: 46px;
  }

  .inner-banner-art {
    width: 130px;
    opacity: 0.75;
  }

  .inner-banner-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .inner-banner-content h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .inner-banner-stats {
    grid-template-columns: 1fr 1fr;
    border-radius: 10px 10px 0 0;
  }

  .abt-stat {
    padding: 20px 14px;
  }

  .abt-stat strong {
    font-size: 1.4rem;
  }

  .abt-photo-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .abt-overview-head {
    margin-bottom: 28px;
    text-align: left;
  }

  .abt-overview-photo,
  .abt-overview-photo img {
    min-height: 280px;
  }

  .abt-overview-copy {
    padding: 0;
  }

  .abt-mosaic-main {
    grid-row: auto;
    height: 260px;
  }

  .abt-mosaic-small {
    height: 180px;
  }

  .abt-vm-card {
    min-height: 460px;
    padding: 26px 22px 0;
  }

  .abt-vm-illustration {
    left: 18px;
    right: 18px;
    width: calc(100% - 36px);
    height: 140px;
    stroke-width: 2.8;
  }

  .abt-vm-asset {
    left: 18px;
    right: 18px;
    width: calc(100% - 36px);
    height: 145px;
  }

  .abt-principal-portrait {
    min-height: 390px;
  }

  .abt-principal-portrait img {
    width: min(300px, 86%);
    max-height: 360px;
  }

  .abt-principal-portrait::before {
    width: 74%;
    height: 74%;
  }

  .abt-principal-portrait::after {
    right: 10%;
    top: 16%;
    width: 78%;
  }

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

  .abt-accred-panel {
    padding: 22px;
  }

  .abt-accred-logo-row {
    grid-template-columns: 1fr;
  }

  .abt-accred-logos .btn {
    width: 100%;
  }
}

.about-copy h2 {
  font-size: clamp(1.75rem, 2.7vw, 2.75rem);
  line-height: 1.04;
  margin-bottom: 18px;
}

.about-intro {
  
  margin: 0 0 28px;
  color: var(--muted);
  font-weight: 700;
}

.about-detail {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 24px 0 26px;
  padding: 24px 28px;
  border-left: 5px solid var(--gold);
  background: rgba(238, 247, 235, 0.72);
}

.about-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.75;
}

.about-actions {
  margin-top: 24px;
}

.about-accordion {
  max-width: 760px;
}

.about-card {
  display: block;
  padding: 0;
  min-height: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 35, 27, 0.06);
  overflow: hidden;
}

.about-accordion-toggle {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.about-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--mist);
  color: var(--green);
}

.about-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-accordion-indicator {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(89, 165, 44, 0.1);
  color: var(--green);
  position: relative;
}

.about-accordion-indicator::before,
.about-accordion-indicator::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease;
}

.about-accordion-indicator::after {
  transform: rotate(90deg);
}

.about-card.is-open .about-accordion-indicator::after {
  transform: rotate(0deg);
}

.about-card p {
  max-height: 0;
  margin: 0;
  padding: 0 20px;
  overflow: hidden;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.about-card.is-open p {
  max-height: 220px;
  padding: 0 16px 14px 68px;
}

.pathway-card p,
.campus-card p,
.news-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.pathways {
  background: var(--mist);
}

.why-ghar {
  position: relative;
  overflow: hidden;
  background: #eef1ff;
  padding: 92px 0 104px;
}

.why-ghar::before {
  content: "";
  position: absolute;
  inset: 16px 12px;
  border: 2px dashed rgba(242, 169, 0, 0.34);
  pointer-events: none;
}

.why-ghar-head {
  max-width: 900px;
  margin: 0 auto 52px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.why-ghar-head h2 {
  margin: 8px 0 16px;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  color: #334b63;
}

.why-ghar-head p {
  max-width: 760px;
  margin: 0 auto;
  color: #536b80;
  font-size: 1.08rem;
  font-weight: 700;
}

.why-ghar-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 390px) minmax(260px, 1fr);
  align-items: center;
  gap: 42px;
}

.why-ghar-list {
  display: grid;
  gap: 28px;
}

.why-ghar-card {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 3px solid #fff2df;
  border-radius: 34px;
  box-shadow: 0 18px 38px rgba(51, 75, 99, 0.08);
}

.why-ghar-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff1dc;
  color: #f6a754;
}

.why-ghar-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-ghar-card h3 {
  margin: 0 0 4px;
  color: #334b63;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.18;
}

.why-ghar-card p {
  margin: 0;
  color: #536b80;
  font-weight: 700;
  line-height: 1.35;
}

.why-ghar-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 26px 54px rgba(51, 75, 99, 0.16);
  background: #fff;
}

.why-ghar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mvv-section {
  background:
    linear-gradient(135deg, rgba(89, 165, 44, 0.1), rgba(242, 169, 0, 0.12)),
    var(--paper);
}

.mvv-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.mvv-head h2 {
  margin: 8px 0 14px;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 1.02;
}

.mvv-head p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.mvv-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(47, 107, 21, 0.13);
}

.mvv-photo {
  min-height: 470px;
}

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

.mvv-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
}

.mvv-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 470px;
  padding: 34px 28px;
  border-left: 1px solid var(--line);
  position: relative;
}

.mvv-item::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 34px;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}

.mvv-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 42px 0 24px;
  border-radius: 18px;
  background: var(--mist);
  color: var(--green-dark);
}

.mvv-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mvv-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: #8f6419;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mvv-item h3 {
  margin: 0 0 8px;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.32rem;
  line-height: 1.16;
}

.mvv-item p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.pathway-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(20, 35, 27, 0.08);
}

.pathway-card img {
  height: 260px;
  object-fit: cover;
}

.pathway-body {
  padding: 24px;
}

.pathway-body h3 {
  margin: 0 0 8px;
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  line-height: 1.15;
}

.pathway-body p + h3 {
  margin-top: 14px;
}

.age {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f6ead0;
  color: #8f6419;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.campus {
  background: #fff;
}

.campus-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: end;
  padding: 22px;
  background: var(--green-dark);
}

.campus-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.campus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 28, 19, 0.82), rgba(8, 28, 19, 0.05));
}

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

.campus-card div {
  position: relative;
  z-index: 1;
}
.campus-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 1.8vw, 1.45rem);
  line-height: 1.12;
}

.campus-card p {
  color: rgba(255, 255, 255, 0.78);
}

.admissions {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 53, 36, 0.95), rgba(15, 107, 66, 0.95)),
    url("../images/banner03.webp") center / cover;
    background-attachment: fixed !important;
}

.admissions-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 44px;
  align-items: center;
}

.admissions h2 {
  color: #fff;
}

.admissions p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.82) !important;
}

.admission-steps {
  margin-top: 32px;
}

.step {
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.step strong {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
}

.step span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

/* ===== ADMISSIONS PAGE ===== */
.adm-overview {
  background:
    radial-gradient(circle at 8% 12%, rgba(242, 169, 0, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(238, 247, 235, 0.96), rgba(255, 253, 248, 0.98));
}

.adm-overview-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 700;
  line-height: 1.72;
}

.adm-overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.adm-overview-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(47, 107, 21, 0.16);
}

.adm-overview-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.adm-overview-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 28, 19, 0.48), transparent 58%);
}

.adm-session-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  width: min(310px, calc(100% - 44px));
  padding: 20px 22px;
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(8, 28, 19, 0.18);
}

.adm-session-card span,
.adm-session-card small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.adm-session-card strong {
  display: block;
  color: var(--green-dark);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.adm-facts-row {
  margin-top: 34px;
}

.adm-fact {
  display: flex;
  gap: 15px;
  align-items: center;
  min-height: 96px;
  padding: 20px;
  border: 1px solid rgba(47, 107, 21, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(20, 35, 27, 0.07);
}

.adm-fact strong {
  width: 56px;
  height: 56px;
    display: inline-flex;
    align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.15rem;
}

.adm-fact span {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.25;
}

.adm-process {
  background: #fff;
}

.adm-process .section-header p {
  color: var(--muted) !important;
  font-weight: 700;
}

.adm-steps-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.adm-steps-v2::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 45px;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(89, 165, 44, 0.25));
}

.adm-step-item {
  position: relative;
}

.adm-step-num {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
    display: inline-flex;
    align-items: center;
  justify-content: center;
  border: 8px solid #fff;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(20, 35, 27, 0.12);
}

.adm-step-content {
  padding: 28px 30px;
  border: 1px solid rgba(47, 107, 21, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(238, 247, 235, 0.62), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: 0 18px 46px rgba(20, 35, 27, 0.08);
}

.adm-step-content h3 {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.adm-step-content p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

#requirements {
  position: relative;
  background:
    radial-gradient(circle at 4% 12%, rgba(242, 169, 0, 0.1), transparent 28%),
    radial-gradient(circle at 96% 86%, rgba(89, 165, 44, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(238, 247, 235, 0.9)) !important;
}

.adm-req-card,
.adm-doc-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: clamp(28px, 3.4vw, 42px);
  border: 1px solid rgba(47, 107, 21, 0.14);
  border-top: 6px solid var(--gold);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(255, 253, 248, 0.96)),
    #fff;
  box-shadow: 0 22px 54px rgba(47, 107, 21, 0.1);
}

.adm-req-card::before,
.adm-doc-card::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 30px;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
}

.adm-req-card::after,
.adm-doc-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(89, 165, 44, 0.07);
}

.adm-req-card h2,
.adm-doc-card h2 {
  position: relative;
  max-width: 100%;
  margin: 6px 0 30px;
  font-size: clamp(1.95rem, 2.9vw, 2.65rem);
  line-height: 1.05;
}

.adm-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.adm-list li {
  position: relative;
  min-height: 82px;
  padding: 16px 20px 16px 54px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(238, 247, 235, 0.9), rgba(255, 253, 248, 0.82));
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
  border: 1px solid rgba(47, 107, 21, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.adm-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(242, 169, 0, 0.17);
}

.adm-list li:hover,
.doc-item:hover {
  transform: translateY(-3px);
  border-color: rgba(242, 169, 0, 0.34);
  box-shadow: 0 16px 36px rgba(20, 35, 27, 0.08);
}

.adm-list strong {
  color: var(--ink);
}

#requirements .adm-req-card {
  height: auto;
  overflow: visible;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

#requirements .adm-req-card::before {
  left: 0;
  top: 0;
  width: 56px;
  height: 5px;
  border-radius: 999px;
  background: var(--green);
}

#requirements .adm-req-card::after {
  right: -92px;
  top: -112px;
  width: 260px;
  height: 260px;
  background: rgba(89, 165, 44, 0.07);
}

#requirements .adm-req-programs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 38px;
}

#requirements .adm-req-program {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(47, 107, 21, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(47, 107, 21, 0.1);
}

#requirements .adm-req-program img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

#requirements .adm-req-program span {
  align-self: flex-start;
    display: inline-flex;
    align-items: center;
  margin: 30px 28px 18px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(242, 169, 0, 0.18);
  color: #8a6415;
  font-weight: 900;
  text-transform: uppercase;
}

#requirements .adm-req-program p {
  flex: 1;
  margin: 0;
  padding: 0 28px 30px;
  color: #333;
  font-size: clamp(0.95rem, 1vw, 1rem);
  font-weight: 400;
  line-height: 1.62;
}

#requirements .adm-req-card .kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  padding-top: 22px;
}

#requirements .adm-req-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 26px !important;
}

#requirements .adm-req-card .adm-list {
  gap: 18px;
}

#requirements .adm-req-card .adm-list li {
  min-height: 124px;
  padding: 22px 30px 22px 70px;
  background:
    linear-gradient(135deg, rgba(238, 247, 235, 0.84), rgba(255, 253, 248, 0.94)),
    #fff;
  border-color: rgba(47, 107, 21, 0.12);
  color: #5f7566;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.7;
}

#requirements .adm-req-card .adm-list li::before {
  left: 32px;
  top: 34px;
  width: 15px;
  height: 15px;
  box-shadow: 0 0 0 8px rgba(242, 169, 0, 0.16);
}

#requirements .adm-req-card .adm-list strong {
  color: var(--ink);
  font-size: 1.04em;
}

@media (max-width: 980px) {
  #requirements .adm-req-programs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #requirements .adm-req-program img {
    height: 210px;
  }

  #requirements .adm-req-program span {
    margin: 22px 22px 14px;
  }

  #requirements .adm-req-program p {
    padding: 0 22px 24px;
  }

  #requirements .adm-req-card .adm-list li {
    min-height: auto;
    padding: 20px 20px 20px 58px;
  }

  #requirements .adm-req-card .adm-list li::before {
    left: 24px;
    top: 31px;
  }
}

.adm-doc-grid {
  position: relative;
}

.adm-doc-card .adm-doc-grid {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.doc-item {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 94px;
  padding: 18px;
  border: 1px solid rgba(47, 107, 21, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 234, 0.7)),
    #fff;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(20, 35, 27, 0.045);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.adm-doc-card .doc-item {
  min-height: 60px;
  padding: 3px 14px 3px 10px;
  gap: 10px;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
}

.doc-item .icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-size: 0;
}

.adm-doc-card .doc-item .icon {
  width: 38px;
  height: 38px;
}

.adm-doc-card .doc-item .icon::before {
  width: 13px;
  height: 17px;
}

.doc-item .icon::before {
  content: "";
  width: 17px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 3px;
  clip-path: polygon(0 0, 72% 0, 100% 28%, 100% 100%, 0 100%);
}

.adm-uniform,
.adm-fees {
  position: relative;
  background: #fff;
}

.adm-uniform {
  background:
    radial-gradient(circle at 8% 16%, rgba(250, 182, 25, 0.12), transparent 28%),
    linear-gradient(180deg, #fff, rgba(247, 252, 245, 0.82));
}

.adm-uniform-copy,
.adm-fees-copy {
  max-width: 640px;
}

.adm-uniform-copy h2,
.adm-fees-copy h2 {
  
  margin-bottom: 18px;
}

.adm-uniform-copy p,
.adm-fees-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.7;
}

.adm-uniform-details {
  margin-top: 18px;
}

.adm-uniform-details h3 {
  margin: 18px 0 8px;
  color: var(--green-dark);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.18rem;
  line-height: 1.15;
}

.adm-uniform-details strong {
  color: var(--ink);
}

.adm-fees-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.adm-uniform-image,
.adm-fees-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 8px;
  box-shadow: 0 26px 64px rgba(47, 107, 21, 0.14);
}

.adm-uniform-image img,
.adm-fees-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.adm-uniform-image::after,
.adm-fees-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 28, 19, 0.42), rgba(8, 28, 19, 0.02));
}

.adm-fees-preview {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(8, 28, 19, 0.18);
}

.fee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: min(250px, 72vw);
  aspect-ratio: 1;
  padding: 24px;
  border: 8px solid rgba(89, 165, 44, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 14px 34px rgba(8, 28, 19, 0.12);
}

.fee-badge span,
.fee-badge small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fee-badge strong {
  margin: 10px 0;
  color: var(--green-dark);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

#apply {
  background:
    radial-gradient(circle at 92% 8%, rgba(89, 165, 44, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(238, 247, 235, 0.92), rgba(255, 253, 248, 0.98));
}

.application-page {
  min-height: calc(100vh - 122px);
  display: grid;
  align-items: center;
  padding: 96px 0;
}

.application-title {
  margin: 0;
  color: var(--ink);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.02;
}

.apply-form-container {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(47, 107, 21, 0.14);
  border-top: 7px solid var(--gold);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 70px rgba(47, 107, 21, 0.14);
}

.apply-form-container .section-header {
  margin-bottom: 34px;
}

.apply-form-container .section-header p {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--muted);
  font-weight: 700;
}

.apply-form-container .field {
  margin-bottom: 0;
}

.apply-form-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 2px;
  color: var(--green-dark);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.1;
}

.apply-form-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(47, 107, 21, 0.18), transparent);
}

.apply-form-container textarea {
  min-height: 110px;
}

.apply-form-container #family-address {
  min-height: 88px;
}

.apply-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(47, 107, 21, 0.14);
  border-radius: 8px;
  background: rgba(238, 247, 235, 0.64);
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.apply-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--green-dark);
  flex: 0 0 auto;
}

.apply-form-container .btn {
/*min-width: min(100%, 260px);*/
  min-height: 56px;
}

.contact-card {
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0 0 20px;
  color: var(--green);
  font-size: 1.32rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.field label {
  color: #1f2c23;
  font-size: .9rem;
  font-weight: 700;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  min-height: 50px;
  align-items: center;
}

.radio-option {
    display: inline-flex;
    align-items: center;
  gap: 7px;
  margin: 0;
  color: #3f4f45;
  font-size: 0.95rem;
  font-weight: 700;
}

.radio-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--green-dark);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #5f7366;
  background: #fff;
  font: inherit;
  font-weight: 400;
  
}

.field textarea {
  padding: 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(95, 115, 102, 0.62);
  font-weight: 400;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(217, 164, 65, 0.24);
  border-color: var(--gold);
}

.contact-card .btn {
  width: 100%;
  margin-top: 8px;
}

.home-visit-form .field textarea {
  min-height: 92px;
}

/* ===== CONTACT PAGE ===== */
#contact-details {
  background:
    radial-gradient(circle at 8% 8%, rgba(242, 169, 0, 0.13), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(89, 165, 44, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(238, 247, 235, 0.9), rgba(255, 253, 248, 0.96));
}

#contact-details .container {
  position: relative;
  z-index: 1;
}

#contact-details .row.g-5 {
  align-items: stretch;
}

#contact-details .col-lg-5,
#contact-details .col-lg-7 {
  display: flex;
  flex-direction: column;
}



.contact-info-list {
  margin-top: 5px;
}

.info-item {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 112px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(47, 107, 21, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(20, 35, 27, 0.07);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}


.info-item:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 169, 0, 0.5);
  box-shadow: 0 22px 48px rgba(20, 35, 27, 0.11);
}

.info-icon {
  width: 62px;
  height: 62px;
    display: inline-flex;
    align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 12px 24px rgba(47, 107, 21, 0.2);
}

.info-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-text h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.1;
}

.info-text p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.info-text a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.info-text a:hover,
.info-text a:focus-visible {
  color: var(--green-dark);
  text-decoration: underline;
}

.contact-form-card {
  position: relative;
  height: 100%;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(47, 107, 21, 0.14);
  border-top: 7px solid var(--gold);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(249, 246, 234, 0.96)),
    #fff;
  box-shadow: 0 28px 70px rgba(47, 107, 21, 0.16);
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -58px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(89, 165, 44, 0.12);
}

.contact-form-card h3 {
  position: relative;
  margin: 0 0 28px;
  color: var(--green-dark);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.contact-form-card form {
  position: relative;
}

.contact-form-card .field {
  margin-bottom: 0;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(47, 107, 21, 0.16);
  border-radius: 8px;
  color: #5f7366;
  background: #fff;
  font: inherit;
  font-weight: 700;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 150px;
  padding-top: 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(95, 115, 102, 0.62);
  font-weight: 600;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: #fffdf8;
  box-shadow: 0 0 0 4px rgba(242, 169, 0, 0.18);
}

.contact-form-card .btn {
  width: 100%;
  min-height: 56px;
  margin-top: 6px;
}

#map {
  background: #fff;
}

.google-map-container {
  position: relative;
  height: min(520px, 64vh) !important;
  overflow: hidden;
  border-top: 1px solid rgba(47, 107, 21, 0.12);
  border-bottom: 1px solid rgba(47, 107, 21, 0.12);
  background: var(--mist);
}

.google-map-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.9) contrast(1.03);
}

.map-placeholder {
  visibility: hidden;
}

.news {
  background: #e9ebff;
}

.news-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(51, 63, 111, 0.08);
}

.news-card img {
  height: 238px;
  border-radius: 30px;
  object-fit: cover;
}

.news-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-top: 24px;
}

.news-date {
  align-self: flex-start;
    display: inline-flex;
    align-items: center;
  min-height: 42px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid #d7dee9;
  border-radius: 8px;
  color: #50627a;
  font-weight: 800;
}

.news-card h3 {
  color: #2f536f;
  font-size: 1.2rem;
}

.news-more {
  align-self: flex-end;
  width: 68px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border-radius: 999px;
  background: #fff3d9;
  color: #e58b3b;
  font-weight: 900;
}

.news-page {
  padding-top: 100px;
}

.news-page .news-card {
  height: 100%;
}

.news-page .news-card img {
  aspect-ratio: 1.52 / 1;
  height: auto;
}

.news-page .news-card h3 {
 
}

.news-page .news-card p {
  min-height: 58px;
}

.footer {
  padding: 64px 0 28px;
  background-color: var(--green-dark);
  /* fallback */
  background-image:
    linear-gradient(135deg, rgba(11, 53, 36, 0.96), rgba(15, 107, 66, 0.92)),
    url("../images/bg-l.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  
}

.footer-cta {
  margin-bottom: 34px;
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.footer-cta h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  max-width: none;
}

.footer-cta p {
  max-width: none;
  color: rgba(255, 255, 255, 0.78) !important;
}

.footer-cta .btn {
  background: var(--gold);
  color: var(--ink);
  white-space: nowrap;
  font-weight: 900;
}

.footer-cta-action {
  display: flex;
  justify-content: flex-end;
}

.footer-grid {
  padding-bottom: 28px;
}

.about-card,
.pathway-card,
.campus-card,
.news-card,
.hero-stat {
  height: 100%;
}

.footer img {
  width: 250px;
  margin-bottom: 18px;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.footer p {

  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f4ce7a;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social .social-letter {
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
}

.footer h3 {
  margin: 0 0 16px;
  color: #f4ce7a;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links-2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 5vw, 70px);
  row-gap: 10px;
  max-width: 430px;
}

.footer a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 400;
}

.footer a:hover {
  color: #fff;
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #f4ce7a;
  font-weight: 900;
}

.footer-policy-links {
 
  margin: 22px auto 0;
  padding: 22px 12px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  font-weight: 700;
}

.event-ticker {
  padding: clamp(42px, 6vw, 76px) 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 223, 0.9), rgba(255, 255, 255, 0.96));
  border-top: 1px solid rgba(143, 100, 25, 0.24);
  border-bottom: 1px solid rgba(143, 100, 25, 0.24);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(20, 35, 27, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.22);
  animation: whatsappPulse 2.4s ease-out infinite;
}

.whatsapp-float::after {
  inset: -22px;
  opacity: 0.55;
  animation-delay: 0.8s;
}

.whatsapp-icon-ring {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 40px rgba(20, 35, 27, 0.3);
}

.whatsappme__button__open {
  width: 36px;
  height: 36px;
  fill: currentColor;
  animation: phonering-alo-circle-img-anim 0.8s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(0.72);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes phonering-alo-circle-img-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }

  50%,
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}

.event-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.event-section-head h2 {
  max-width: 660px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.event-section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.event-slider-wrap {
  position: relative;
}

.event-swiper {
  height: auto !important;
  overflow: hidden;
  padding: 4px 2px 8px;
}

.event-swiper .swiper-wrapper {
  align-items: stretch;
  height: auto !important;
}

.event-swiper .swiper-slide {
  display: flex;
  height: auto !important;
}

.event-swiper.is-fallback .swiper-wrapper {
  display: flex;
  transition: transform 0.45s ease;
}

.event-swiper.is-fallback .swiper-slide {
  flex: 0 0 100%;
  width: 100%;
}

.event-card {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 210px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(47, 107, 21, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 35, 27, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--green-dark), #f2a900);
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 169, 0, 0.48);
  box-shadow: 0 24px 54px rgba(20, 35, 27, 0.13);
}

.event-date {
    display: inline-flex;
    align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(242, 169, 0, 0.16);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 20px 0 12px;
  color: var(--ink);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.event-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.65;
}

.event-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.event-slider-btn {
  width: 44px;
  height: 44px;
    display: inline-flex;
    align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 107, 21, 0.18);
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 12px 26px rgba(20, 35, 27, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.event-slider-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-slider-btn:hover,
.event-slider-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 169, 0, 0.58);
  background: rgba(242, 169, 0, 0.12);
}

.event-slider-btn.swiper-button-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.event-pagination {
  width: auto !important;
  min-width: 72px;
  display: inline-flex;
  justify-content: center;
  gap: 8px;
}

.event-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  background: rgba(47, 107, 21, 0.34);
  opacity: 1;
}

.event-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background: var(--green-dark);
}

.event-pagination button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(47, 107, 21, 0.34);
  transition: width 0.2s ease, background 0.2s ease;
}

.event-pagination button.is-active {
  width: 24px;
  background: var(--green-dark);
}

@media (max-width: 1200px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    z-index: 1000;
    background: #fffdf8;
    backdrop-filter: none;
  }

  .section-head p {
    max-width: 100%;
  }

  .header-row {
    position: relative;
    gap: 10px;
  }

  .brand img {
    width: clamp(136px, 34vw, 176px);
  }

  .header-row > .btn-primary {
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 4vw;
    right: 4vw;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(47, 107, 21, 0.14);
    border-radius: 24px;
    background: #fffdf8;
    box-shadow: 0 24px 70px rgba(47, 107, 21, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1001;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    justify-content: flex-start;
    padding: 12px 16px;
    transform: none;
  }

  .nav a:hover,
  .nav a.active,
  .nav li:nth-child(n) > a:hover,
  .nav li:nth-child(n) > a.active {
    transform: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    z-index: 1000;
    background: #fffdf8;
    backdrop-filter: none;
  }

  .section-head p {
    width: 100%;
  }

  .header-row {
    position: relative;
    gap: 10px;
  }

  .brand img {
    width: clamp(136px, 34vw, 176px);
  }

  .header-row > .btn-primary {
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 4vw;
    right: 4vw;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(47, 107, 21, 0.14);
    border-radius: 24px;
    background: #fffdf8;
    box-shadow: 0 24px 70px rgba(47, 107, 21, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1001;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    justify-content: flex-start;
    padding: 12px 16px;
    transform: none;
  }

  .nav a:hover,
  .nav a.active,
  .nav li:nth-child(n) > a:hover,
  .nav li:nth-child(n) > a.active {
    transform: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

  .principal-row {
    margin-right: -20px;
    margin-left: -20px;
  }

  .principal-message-col,
  .principal-portrait-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .principal-portrait {
    max-width: 520px;
    margin: 0 auto;
  }

  .principal-message-col {
    order: 1;
  }

  .principal-portrait-col {
    order: 2;
  }

  .principal-message::before {
    right: 0;
  }

  .about-page-hero-grid,
  .about-content-grid,
  .about-principal-grid,
  .about-affiliations-panel {
    grid-template-columns: 1fr;
  }

  .about-page-photo {
    transform: none;
  }

  .about-info-card-large {
    grid-row: auto;
    min-height: 280px;
  }

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

  .why-ghar {
    padding: 76px 0 88px;
  }

  .why-ghar-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-ghar-photo {
    width: min(420px, 86vw);
    margin: 0 auto;
    order: -1;
  }

  .mvv-showcase {
    grid-template-columns: 1fr;
  }

  .mvv-photo {
    min-height: 320px;
  }

  .mvv-panel {
    grid-template-columns: 1fr;
  }

  .mvv-item {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .admissions-grid {
    grid-template-columns: 1fr;
  }

  .adm-overview-copy h2 {
    max-width: 100%;
  }

  .adm-fees-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .adm-fees-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {

  .topbar .container,
  .section-head,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head p {
    max-width: 100%;
  }

  .header-row {
    flex-direction: row;
    align-items: center;
    gap: 12px;
   /* padding: 14px 0;*/
  }

  .header-row > .btn-primary {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero .container {
/*    padding: 70px 0 86px;*/
  }

  .hero h1 {
    font-size: clamp(2.1rem, 10vw, 3.25rem);
  }

  .hero-controls {
    bottom: 24px;
    max-width: calc(100% - 28px);
    gap: 10px;
    padding: 10px 12px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-dot.is-active {
    width: 34px;
  }

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

  .footer-cta {
    margin-bottom: 24px;
    padding: 22px;
  }

  .footer-cta-action {
    justify-content: flex-start;
  }

  .footer-links-2col {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .footer-cta .btn {
    width: 100%;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: auto;
    max-width: 100%;
  }

  .event-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 64px;
    height: 64px;
  }

  .whatsapp-icon-ring {
    width: 42px;
    height: 42px;
    border-width: 3px;
  }

  .hero-stat {
    min-height: auto;
  }

  .section {
    padding: 68px 0;
  }

  .adm-overview-visual,
  .adm-overview-visual img {
    min-height: 310px;
  }

  .adm-session-card {
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 16px;
  }

  .adm-fact {
    min-height: auto;
    padding: 16px;
  }

  .adm-fact strong {
    width: 48px;
    height: 48px;
  }

  .adm-steps-v2::before {
    left: 28px;
  }

  .adm-step-num {
    width: 56px;
    height: 56px;
    border-width: 5px;
    font-size: 1rem;
  }

  .adm-step-content {
    padding: 20px;
  }

  .adm-req-card,
  .adm-doc-card,
  .apply-form-container {
    padding: 22px;
  }

  .apply-form-section-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .apply-form-section-title::after {
    width: 100%;
    flex: none;
  }

  .adm-req-card h2,
  .adm-doc-card h2 {
    max-width: 100%;
    margin-bottom: 22px;
  }

  .adm-list li {
    min-height: auto;
    padding: 16px 16px 16px 50px;
  }

  .adm-list li::before {
    left: 20px;
    top: 23px;
  }

  .doc-item {
    min-height: auto;
    padding: 16px;
  }

  .doc-item .icon {
    width: 46px;
    height: 46px;
  }

  .adm-uniform-image,
  .adm-fees-image,
  .adm-uniform-image img,
  .adm-fees-image img {
    min-height: 340px;
  }

  .adm-fees-preview {
    right: 14px;
    bottom: 14px;
    padding: 12px;
  }

  .fee-badge {
    width: min(200px, 74vw);
  }

  #contact-details h2 {
    max-width: 100%;
    font-size: clamp(2rem, 11vw, 2.85rem);
  }

  .contact-info-list {
    margin-top: 24px;
  }

  .info-item {
    min-height: auto;
    padding: 16px;
  }

  .info-icon {
    width: 50px;
    height: 50px;
  }

  .contact-form-card {
    padding: 22px;
  }

  .google-map-container {
    height: 380px !important;
  }

  .about-page-hero {
    padding: 68px 0;
  }

  .about-page-hero-grid,
  .about-principal-grid {
    gap: 34px;
  }

  .about-page-copy h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .about-page-copy p {
    font-size: 0.98rem;
  }

  .about-page-photo img {
    height: 280px;
  }

  .about-info-card,
  .about-affiliations-panel {
    padding: 22px;
  }

  .about-principal-image {
    min-height: 380px;
  }

  .about-principal-image img {
    max-height: 360px;
  }

  .about-value-card {
    min-height: auto;
    padding: 22px;
  }

  .about-affiliations-list .btn {
    width: 100%;
  }

  .why-ghar {
    padding: 64px 0 72px;
  }

  .why-ghar::before {
    inset: 10px 8px;
  }

  .why-ghar-head {
    margin-bottom: 34px;
  }

  .why-ghar-head h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .why-ghar-head p {
    font-size: 0.98rem;
  }

  .why-ghar-list {
    gap: 16px;
  }

  .why-ghar-card {
    min-height: auto;
    align-items: flex-start;
    border-radius: 24px;
    padding: 18px;
  }

  .why-ghar-icon {
    width: 44px;
    height: 44px;
  }

  .why-ghar-card h3 {
    font-size: 1.05rem;
  }

  .why-ghar-card p {
    font-size: 0.92rem;
  }

  .mvv-head h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .mvv-head p {
    font-size: 0.96rem;
  }

  .mvv-photo {
    min-height: 240px;
  }

  .mvv-item {
    padding: 26px 22px;
  }

  .mvv-item::before {
    left: 22px;
    top: 24px;
  }

  .mvv-icon {
    margin-top: 34px;
  }

  .principal-row {
    row-gap: 36px;
    margin-right: -12px;
    margin-left: -12px;
  }

  .principal-message-col,
  .principal-portrait-col {
    padding-right: 12px;
    padding-left: 12px;
  }

  .principal-portrait {
    min-height: 500px;
    padding: 26px 10px 42px;
  }

  .principal-portrait::before {
    right: 3%;
    bottom: 66px;
    width: 78%;
    height: 70%;
  }

  .principal-orbit {
    left: 5%;
    top: 68px;
    width: 70%;
    height: 66%;
  }

  .principal-portrait img {
    width: min(300px, 82%);
    max-height: 430px;
  }

  .principal-badge {
    left: 8px;
    bottom: 88px;
    min-width: 0;
    max-width: calc(100% - 48px);
    padding: 12px 14px;
  }

  .principal-message {
    padding: 0;
  }

  .principal-message::before {
    top: -24px;
    right: 18px;
    font-size: 5.5rem;
  }

  .principal-message h2 {
    
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .principal-copy {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .about-detail {
    padding: 18px;
  }

  .about-detail p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .principal-copy:first-of-type {
    padding-left: 14px;
    border-left-width: 3px;
  }

  .principal-signature {
    align-items: flex-start;
    padding: 16px;
  }

  .campus-card {
    min-height: 280px;
  }

  .news-card {
    border-radius: 24px;
    padding: 18px;
  }

  .news-card img {
    height: 220px;
    border-radius: 22px;
  }
}

/* ===== KIDS FLOATING DECORATIONS ===== */
.section {
  position: relative;
  overflow: hidden;
}

@keyframes kidHover {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes kidTumble {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-25px) rotate(180deg);
  }

  100% {
    transform: translateY(0) rotate(360deg);
  }
}

@keyframes kidPop {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  15% {
    transform: scale(1.35) rotate(12deg);
  }

  30% {
    transform: scale(1) rotate(-5deg);
  }

  45%,
  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes kidRock {

  0%,
  100% {
    transform: rotate(-18deg);
  }

  50% {
    transform: rotate(18deg);
  }
}

@keyframes kidFloatDiagonal {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(15px, -20px) rotate(10deg);
  }
}

@keyframes svgDraw {
  0% {
    stroke-dashoffset: 350;
  }

  40%,
  100% {
    stroke-dashoffset: 0;
  }
}

.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  font-size: 2rem;
  line-height: 1;
}

/* ===== KIDS SVG DECORATIONS ===== */
.deco svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  overflow: visible;
}

.deco svg path {
  stroke-dasharray: 350;
  stroke-dashoffset: 0;
  animation: svgDraw 5s ease-in-out infinite alternate;
}

.c-gold {
  color: var(--gold);
  opacity: 0.45;
}

.c-green {
  color: var(--green);
  opacity: 0.45;
}

.c-dark {
  color: var(--green-dark);
  opacity: 0.25;
}

.c-muted {
  color: var(--muted);
  opacity: 0.25;
}

.deco.f1 {
  animation: kidHover 4s ease-in-out infinite;
}

.deco.f2 {
  animation: kidRock 3s ease-in-out infinite;
}

.deco.f3 {
  animation: kidPop 4.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

.deco.f4 {
  animation: kidFloatDiagonal 5s ease-in-out infinite;
}

.deco.f5 {
  animation: kidTumble 8s linear infinite;
}

.deco.f6 {
  animation: kidHover 3.5s ease-in-out infinite reverse;
}

/* Dot blobs */
.deco-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  opacity: 0.07;
}

@media (prefers-reduced-motion: reduce) {

  .deco,
  .deco-blob {
    animation: none !important;
  }

  .principal-orbit-dot {
    animation: none !important;
  }

  .whatsapp-float::before,
  .whatsapp-float::after {
    animation: none !important;
  }

  .whatsappme__button__open {
    animation: none !important;
  }
}

/* Former inline decorative positioning */
.css-pos-1 {
  top: 8%;
  left: 3%;
  font-size: 3.2rem;
}

.css-pos-2 {
  top: 10%;
  right: 4%;
  font-size: 3rem;
}

.css-pos-3 {
  bottom: 12%;
  left: 5%;
  font-size: 3.1rem;
}

.css-pos-4 {
  bottom: 18%;
  right: 4%;
  font-size: 2.7rem;
}

.css-pos-5 {
  top: 6%;
  left: 2%;
  font-size: 4rem;
}

.css-pos-6 {
  top: 10%;
  right: 3%;
  font-size: 3.5rem;
}

.css-pos-7 {
  bottom: 12%;
  left: 4%;
  font-size: 4rem;
}

.css-pos-8 {
  bottom: 18%;
  right: 5%;
  font-size: 3rem;
}

.css-pos-9 {
  top: 45%;
  left: 1%;
  font-size: 2rem;
}

.css-pos-10 {
  width: 200px;
  height: 200px;
  background: var(--gold);
  top: -60px;
  right: -60px;
}

.css-pos-11 {
  width: 140px;
  height: 140px;
  background: var(--green);
  bottom: -40px;
  left: -40px;
}

.css-pos-12 {
  top: 8%;
  left: 3%;
  font-size: 4rem;
}

.css-pos-13 {
  top: 12%;
  right: 4%;
  font-size: 3.5rem;
}

.css-pos-14 {
  bottom: 10%;
  left: 5%;
  font-size: 3rem;
}

.css-pos-15 {
  bottom: 15%;
  right: 3%;
  font-size: 3rem;
}

.css-pos-16 {
  top: 50%;
  right: 2%;
  font-size: 2rem;
}

.css-pos-17 {
  width: 180px;
  height: 180px;
  background: var(--green);
  top: -50px;
  left: -50px;
}

.css-pos-18 {
  width: 120px;
  height: 120px;
  background: var(--gold);
  bottom: -30px;
  right: -30px;
}

.css-pos-19 {
  top: 6%;
  left: 2%;
  font-size: 4rem;
}

.css-pos-20 {
  top: 10%;
  right: 3%;
  font-size: 3.5rem;
}

.css-pos-21 {
  bottom: 12%;
  left: 4%;
  font-size: 4rem;
}

.css-pos-22 {
  bottom: 18%;
  right: 5%;
  font-size: 3rem;
}

.css-pos-23 {
  top: 40%;
  left: 1.5%;
  font-size: 2rem;
}

.css-pos-24 {
  width: 220px;
  height: 220px;
  background: var(--gold);
  bottom: -80px;
  right: -80px;
}

.css-pos-25 {
  top: 8%;
  left: 3%;
  font-size: 4rem;
}

.css-pos-26 {
  top: 14%;
  right: 4%;
  font-size: 3rem;
}

.css-pos-27 {
  bottom: 14%;
  left: 5%;
  font-size: 3.5rem;
}

.css-pos-28 {
  bottom: 20%;
  right: 4%;
  font-size: 3.5rem;
}

.css-pos-29 {
  top: 7%;
  left: 2%;
  font-size: 4rem;
}

.css-pos-30 {
  top: 12%;
  right: 3%;
  font-size: 3.5rem;
}

.inner-heading{
font-size: clamp(2.2rem, 4vw, 2.3rem) !important;
font-weight: 400 !important;
}
.img-radius{
  border-radius: 8px;
}

.principal-message h2,
.about-copy h2,
.section-head h2,
.admissions h2,
.event-section-head h2 {
  font-size: clamp(1.75rem, 2.7vw, 2.75rem);
  line-height: 1.02;
}

.btn {
  width: fit-content !important;
  max-width: 100%;
}
