html {
  scroll-behavior: smooth;
  scroll-padding-top: 12vh;
}
@media screen and (max-width: 486px) {
  html {
    scroll-padding-top: 14vh;
  }
}
@media screen and (max-width: 355px) {
  html {
    scroll-padding-top: 21vh;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Roboto", sans-serif; */
}

:root {
  --color1: #ff9900;
  --color2: #00c2cb;
  --color3: #f4511c;
  --color4: #f8362c;
  --color5: #7daa0f;

  --bg: #fffdf8;
  --surface: #ffffff;
  --text: #28343c;
  --primary: #2f9e95;
  --secondary: #f4b73f;
  --muted: #5b6b73;
  --line: #e7ecef;
}
.yellow {
  color: var(--color1);
}
.blue {
  color: var(--color2);
}
.red {
  color: var(--color3);
}
main {
  margin-top: 10vh;
}
@media screen and (max-width: 355px) {
}
body {
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIOOaBXso.woff2)
    format("woff2");
  unicode-range:
    U + 0460 -052F,
    U + 1C80 -1C8A,
    U + 20B4,
    U + 2DE0 -2DFF,
    U + A640-A69F,
    U + FE2E-FE2F;
}
a {
  text-decoration: none;
  color: black;
  cursor: pointer;
}
.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-wrap {
  width: min(1200px, 92%);
  margin: auto;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.brand {
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 600;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-text {
  font-family: "Sacramento", cursive;
  font-size: 2rem;
  white-space: nowrap;
}

.word-1 {
  color: #ff9900;
}
.word-2 {
  color: #00c2cb;
}
.word-3 {
  color: #f4511c;
}

/* DESKTOP NAV */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.3rem;
}

.nav-links a {
  text-decoration: none;
  color: #33424c;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

/* underline desktop only */
@media (min-width: 901px) {
  .nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: var(--primary);
  }
}

/* BUTTON */
.nav-btn,
.mobile-btn {
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
}
.nav-btn:active {
  transform: translateY(-2px);
  background-color: var(--text);
  color: var(--bg);
}
.mobile-btn {
  display: none;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: #333;
  transition: 0.3s;
  border-radius: 10px;
}

/* animate */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* TABLET */
@media (max-width: 1100px) {
  .brand-text {
    font-size: 1.6rem;
  }
  .nav-links {
    gap: 1.5rem;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 84px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 0;
    transition: 0.35s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
  }

  .mobile-btn {
    display: block;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
}

/* SMALL MOBILE */
@media (max-width: 600px) {
  .nav-wrap {
    height: 74px;
  }
  .brand {
    gap: 0.35rem;
  }
  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-text {
    font-size: 1.3rem;
  }

  .nav-links {
    top: 74px;
    height: calc(100vh - 74px);
    width: 100%;
  }
}
body.menu-open {
  overflow: hidden;
}
/* hero section */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  padding: 8vh 0 4rem;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, #dff6ff 0%, transparent 34%),
    radial-gradient(circle at 10% 20%, #fff1d6 0%, transparent 30%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 34rem;
  height: 34rem;
  background: #e6f4f1;
  border-radius: 50%;
  top: -10rem;
  left: -12rem;
  z-index: 0;
}
.hero-grid {
  /* display: grid;
  grid-template-columns: 1.05fr 0.95fr; */
  display: flex;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-copy {
  max-width: 600px;
}
.eyebrow {
  color: #2f9e8f;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.1;
  color: #1e2a36;
  margin-bottom: 1.2rem;
}
.hero-copy p:not(.eyebrow) {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #53606d;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.35rem;
}
.hero-actions a {
  text-decoration: none;
}
.btn {
  background: #2f9e8f;
  color: #fff;
  box-shadow: 0 10px 22px rgba(47, 158, 143, 0.25);
  padding: 1rem 2rem;
  transition: background-color 0.3s ease;
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
  border-radius: 2em;
  border: 4px solid transparent;
}

.btn:hover {
  background: var(--secondary);
  color: var(--text);
  cursor: pointer;
  transform: translateY(-2px);
}
.alt-btn {
  background: #fff;
  color: #1f2d38;
  border: 3px solid transparent;
  background-image:
    linear-gradient(#fff, #fff), linear-gradient(90deg, #53d9d0, #d8d14d);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  border-radius: 2em;
  padding: 1rem 2rem;
  transition: background-color 0.3s ease;
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}
.alt-btn:hover {
  background: var(--color4);
  color: #fff;
  cursor: pointer;
  transform: translateY(-2px);
}
.hero-media {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  background: #d7f2ee;
  border-radius: 12em;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero-media img {
  width: 100%;
  display: block;
  object-fit: cover;
  /* aspect-ratio: 4 / 3; */
  border: 6px solid #fff;
  border-radius: 12em;
  box-shadow: 0 18px 35px rgba(32, 66, 74, 0.16);
  position: relative;
  z-index: 2;
}
.hero::after {
  content: "";
  position: absolute;
  width: 5rem;
  height: 5rem;
  background: #fde8d7;
  border-radius: 50%;
  bottom: 4rem;
  right: 6rem;
  z-index: 0;
}
@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 8vh 0 4rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
    order: 2;
  }
  .hero-copy p:not(.eyebrow) {
    margin-inline: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-media {
    order: 1;
    margin: 0 auto;
    max-width: 620px;
  }
}
@media (max-width: 600px) {
  .hero-grid {
    flex-direction: column-reverse;
  }
}
/* about start */
.about {
  background: #f7f3ee;
  padding: 12vh 6vw;
  position: relative;
}
.about-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}
.about-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 67px;
}
.about-top .shape-fill {
  fill: var(--bg);
  /* fill: #a1a2a4; */
}
.about-container {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: center;
  justify-items: start;
  margin: 12vh 0;
}

/* IMAGE */
.about-image {
  position: relative;
  z-index: 2;
}
.about-image::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background: #d7f2ee;
  border-radius: 12em;
  z-index: -1;
}
.about-image video {
  /* width: 100%; */
  max-width: 280px;
  /* border-radius: 20px; */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-radius: 9em;
  z-index: 2;
}

/* CONTENT */
.about-content {
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.tag {
  color: #2f9e8f;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.about-content h2 {
  font-family: "Playfair Display", serif;

  margin: 15px 0;
  line-height: 1.3;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.lead {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

/* POINTS */
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 4rem;
}

.about-points h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
  color: #2e2e2e;
}

.about-points p {
  font-size: 0.95rem;
  color: #666;
}
.about-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  margin-bottom: -1px;
}
.about-bottom svg {
  position: relative;
  display: block;
  width: calc(128% + 1.3px);
  height: 166px;
}
.about-bottom .shape-fill {
  fill: #ffffff;
}
@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .about-points {
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: none;
  }
}

/* about end   */
/* why-us start */
.why-us {
  background: linear-gradient(180deg, #ffffff, var(--bg));
  padding: 100px 0;
}
.why-us .container {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 12vh;
}
.why-header span {
  color: #2f9e8f;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.tag-line::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--primary);
  margin: 8px auto;
}
.why-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  margin: 15px 0;
  color: #2e2e2e;
}
.why-header p {
  color: #555;
  font-size: 1.1rem;
}
.why-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.card {
  background: #fff;
  padding: 10vh 2vh 4vw;
  border-radius: 20px;
  text-align: center;
  flex: 1;
  max-width: 320px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  border-top: 4px solid var(--color1);
}
.icon-yellow .icon {
  background: #fff9c4;
}

.icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: absolute;
  top: calc(0% - 50px);
  right: calc(50% - 50px);
  border: 6px solid white;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 1rem;
  width: 100%;
  min-height: auto;
}
.card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.card.icon-yellow h3::after {
  background: var(--color1);
}
.card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--primary);
  margin: 18px auto;
}
.card p {
  font-size: 0.95rem;
  color: #666;
}

.card.teal {
  border-top-color: var(--color2);
  background: #eef3f2;
}
.teal .icon {
  background: #d7f2ee;
}
.card.orange {
  border-top-color: var(--color4);
}
.orange .icon {
  background: #fde8d7;
}
.card.orange h3::after {
  background: var(--color4);
}
.why-strip {
  margin-top: 60px;
  background: #eef3f2;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  padding: 25px 4vw;
  gap: 4vw;
}
.strip-item {
  text-align: center;
  flex: 1;
  position: relative;
}

.strip-item h4 {
  margin: 8px 0;
  font-size: 1rem;
}
.strip-item p {
  font-size: 0.85rem;
  color: #777;
}
.strip-item::after {
  content: "";
  display: block;
  width: 1.5px;
  height: 144px;
  background: var(--primary);
  position: absolute;
  top: calc(50% - 72px);
  right: -2vw;
}
.why-strip .strip-item:last-child::after {
  display: none;
}
.strip-item svg {
  width: 60px;
  height: 60px;
}
@media (max-width: 1024px) {
  .why-cards {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .why-header h2 {
    font-size: 2rem;
  }
  .why-cards {
    flex-direction: column;
    align-items: center;
    gap: 12vh;
  }
  .why-strip {
    flex-direction: column;
    gap: 6vh;
  }
  .strip-item p {
    margin-bottom: 6vh;
  }
  .strip-item::after {
    top: auto;
    height: 1.5px;
    width: 140px;
    bottom: 0;
    right: calc(50% - 70px);
  }
}

/* why-us end */
/* programs start */
.programs {
  background: linear-gradient(180deg, white, #f7f3ee);
  padding: 2rem 8%;
}
.program-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.program-header span {
  color: #2f9e8f;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.program-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  margin: 12px 0;
  color: #2e2e2e;
}
.program-header p {
  color: #666;
  font-size: 1.05rem;
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.program-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  transition: 0.35s ease;
}
.program-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.program-content {
  padding: 24px;
}
.program-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.age {
  display: inline-block;
  background: #eef3f2;
  color: #2f9e8f;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.program-content p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.6;
}
.program-content a {
  color: #2f9e8f;
  font-weight: 600;
  text-decoration: none;
}
.age.red {
  background: #ffcccb;
  color: var(--color3);
}
.age.teal {
  background: #d7f2ee;
  color: var(--color2);
}
.age.orange {
  background: #fde8d7;
  color: var(--color4);
}
.age.yellow {
  background: #fff9c4;
  color: var(--color1);
}
.program-card:hover {
  transform: translateY(-10px);
}
@media (max-width: 1100px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .program-header h2 {
    font-size: 2rem;
  }
  .program-grid {
    grid-template-columns: 1fr;
  }
}
/* programs end */
/* quote start */
.quote {
  background: white;
  padding: 60px 8%;
  text-align: center;
}
.quote p {
  font-size: 1.25rem;
  font-style: italic;
  color: #2e2e2e;
  margin-bottom: 20px;
}
.quote span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2f9e8f;
}
/* quote end */
/* admission start */
.admission-section {
  background: #f7f3ee;
  padding: 100px 20px;
}
.admission-section.program {
  padding: 0 20px 100px;
}
.admission-card {
  max-width: 820px;
  margin: auto;
  background: white;
  padding: 55px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}
.form-header {
  text-align: center;
  margin-bottom: 40px;
}
.form-header span {
  color: #2f9e8f;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.form-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  margin: 12px 0;
  color: #2e2e2e;
}
.form-header p {
  color: #666;
}
form {
  background-color: var(--color2);
  padding: 2rem;
  border-radius: 10px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
input {
  width: 100%;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  font-size: 15px;
  background: #fafafa;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.grid-1 {
  margin-bottom: 25px;
}
label {
  display: block;

  font-weight: 600;
  color: #333;
}
.program-label {
  margin-bottom: 6px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.chips label {
  position: relative;
}
.chips input {
  display: none;
}
.chips span {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: #eef3f2;
  color: #2f9e8f;
  cursor: pointer;
  transition: 0.3s;
}
form .btn {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  background: var(--secondary);
  color: var(--text);
}
.chips input:checked + span {
  background: #2f9e8f;
  color: white;
}

form .btn:active {
  transform: translateY(-2px);
  background-color: var(--text);
  color: var(--bg);
}
@media (max-width: 768px) {
  .admission-card {
    padding: 6vh 4vw;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}
/* submitting */
/* ADD BELOW BUTTON CSS */

.mini-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#submitbtn:disabled {
  opacity: 0.85;
  cursor: not-allowed;
}
/* admission end */
/* footer start */
.site-footer {
  background:
    radial-gradient(circle at top right, #d5f3ff 0%, transparent 34%),
    radial-gradient(circle at 10% 20%, #ffecc7 0%, transparent 30%),
    radial-gradient(circle at 50% 117%, #ff858c 0%, transparent 34%);
  padding: 4rem 0 0;
  color: #1f2937;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: #fff;
  padding: 0.4rem;
}

.footer-brand h3 {
  font-size: 1.75rem;
  margin-bottom: 0.8rem;
  font-family: "Sacramento", cursive;
}

.footer-brand p {
  max-width: 320px;
  line-height: 1.7;
  color: #344054;
}

.socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  color: #1f2937;
  transition: 0.3s;
  text-decoration: none;
}

.socials a:hover {
  transform: translateY(-4px);
  background: #2f9e95;
  color: #fff;
}

.footer-links,
.footer-contact,
.footer-map {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.site-footer h4 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
  color: #1f2937;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #2f9e95;
  padding-left: 4px;
}

.footer-contact p {
  line-height: 1.8;
  margin-bottom: 0.6rem;
}

.footer-map iframe {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.2rem;
  text-align: center;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.18);
}

/* TABLET */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 0;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    align-items: center;
  }
  .footer-brand p {
    margin: auto;
  }

  .socials {
    justify-content: center;
  }

  .footer-links,
  .footer-contact,
  .footer-map {
    align-items: center;
  }

  .footer-map iframe {
    height: 260px;
    max-width: 420px;
  }
}
/* footer end */
/* ADD THIS AT END OF style.css */

/* =========================
   PROGRAM PAGE STYLES
========================= */

.program-hero {
  padding: 8rem 0 5rem;
  text-align: center;
  background:
    radial-gradient(circle at top right, #dff6ff 0%, transparent 34%),
    radial-gradient(circle at 10% 20%, #fff1d6 0%, transparent 30%);
}

.program-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.program-hero p:last-child {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  color: var(--muted);
}

/* Cards */

.program-listing {
  padding: 4rem 0 6rem;
  background: linear-gradient(180deg, white, #f7f3ee);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.program-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
}

.program-card:hover {
  transform: translateY(-10px);
}

.program-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.program-content {
  padding: 24px;
}
#program-info .program-content {
  padding: 2vw;
}
.program-content h3 {
  font-size: 1.35rem;
  margin: 0.8rem 0;
  color: var(--text);
}

.program-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.program-content a {
  color: var(--primary);
  font-weight: 700;
}

.age {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Brand Colors */

.age.yellow {
  background: #fff7cc;
  color: var(--color1);
}

.age.teal {
  background: #dff8f6;
  color: var(--color2);
}

.age.red {
  background: #ffe1db;
  color: var(--color3);
}

.age.orange {
  background: #ffe8db;
  color: var(--color4);
}

/* Mobile */

@media (max-width: 1100px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .program-hero {
    padding: 7rem 1rem 4rem;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-info.program-content {
    padding: 2vw;
  }

  .program-hero h1 {
    font-size: 2.3rem;
  }
}
/* REPLACE OLD #program-info + .program-img + .quote CSS WITH THIS */

/* ===============================
   PROGRAM DETAILS REFINED STYLE
================================= */
.programs.program-page {
  padding-top: 2vw;
}
#program-info {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff, #f7f3ee);
}

#program-info > div {
  width: min(1100px, 92%);
  margin: 0 auto 5rem;
  background: #ffffff;
  padding: 3rem;
  border-radius: 28px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}
#program-info > div:last-child {
  margin-bottom: 0;
}

#program-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}

#program-info p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

#program-info strong {
  color: var(--text);
}

#program-info ul {
  margin-top: 1.5rem;
  padding-left: 1.25rem;
}

#program-info li {
  margin-bottom: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

/* IMAGES */

.program-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 2rem;
}

.program-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* SINGLE IMAGE AUTO */

#daycare-info .program-img {
  grid-template-columns: 1fr;
}

#daycare-info .program-img img {
  max-width: 650px;
  margin: auto;
}

/* QUOTE */

#program-info .quote {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff7cc, #ffffff);
  text-align: center;
}

#program-info .quote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
}

#program-info .quote h3 {
  margin-top: 0.8rem;
  font-size: 1rem;
  color: var(--primary);
}

/* VIDEO */

.vidlink {
  margin-top: 2rem;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 24px;
}

.vidlink iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* COLOR LEFT BORDERS */

#toddler-info {
  border-left: 6px solid var(--color1);
}

#primary-info {
  border-left: 6px solid var(--color2);
}

#elementary-info {
  border-left: 6px solid var(--color3);
}

#summercamp-info {
  border-left: 6px solid var(--color4);
}

/* MOBILE */

@media (max-width: 768px) {
  #program-info {
    padding: 3rem 0;
  }

  #program-info > div {
    padding: 2rem 2vw;
    margin-bottom: 2rem;
    border-radius: 20px;
  }

  .program-img {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .program-img img {
    height: 240px;
  }

  #program-info h2 {
    font-size: 2rem;
  }

  #program-info .quote {
    padding: 1.25rem;
  }
}
/* =========================================
   ELEMENTARY PROGRAM SECTION
========================================= */

#elementary-info {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

#elementary-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(47, 158, 143, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(212, 167, 98, 0.08),
      transparent 35%
    );
  z-index: -1;
}

.program-section {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* =========================================
   SECTION HEADER
========================================= */

.section-heading {
  text-align: center;
  margin-bottom: 70px;
}

.program-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(47, 158, 143, 0.12);
  color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
  font-family: "Playfair Display", serif;
}

.section-heading p {
  max-width: 760px;
  margin: auto;
  color: #666;
  font-size: 1.08rem;
  line-height: 1.9;
}

/* =========================================
   IMAGE GRID
========================================= */

.program-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  /* margin-bottom: 60px; */
}

.program-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.program-img img:hover {
  transform: translateY(-8px);
}

/* =========================================
   CONTENT
========================================= */

.program-content {
  max-width: 980px;
  margin: auto;
}

/* .program-content p {
  font-size: 1.05rem;
  line-height: 2;
  color: #555;
  margin-bottom: 24px;
} */

/* =========================================
   HIGHLIGHT BLOCKS
========================================= */

.program-highlight {
  margin: 60px 0;
  padding: 6vw;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(47, 158, 143, 0.08),
    rgba(255, 255, 255, 1)
  );
  border: 1px solid rgba(47, 158, 143, 0.12);
}

.program-highlight.soft {
  background: linear-gradient(
    135deg,
    rgba(212, 167, 98, 0.08),
    rgba(255, 255, 255, 1)
  );
  border: 1px solid rgba(212, 167, 98, 0.15);
}

.program-highlight h3 {
  font-size: 1.8rem;
  margin-bottom: 18px;
  color: var(--text);
  font-family: "Playfair Display", serif;
}

.program-highlight p:last-child {
  margin-bottom: 0;
}

/* =========================================
   FEATURE GRID
========================================= */

.program-section .program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  /* margin: 70px 0; */
}

.program-section .program-card {
  background: white;
  padding: 2vw;
  border-radius: 28px;
  border: 1px solid #eee;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  transition: 0.35s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
}

.program-card h3 {
  font-size: 1.5rem;
  /* margin-bottom: 24px;
  color: var(--secondary);
  font-family: "Playfair Display", serif; */
}

.program-card ul {
  padding-left: 18px;
}

.program-card li {
  margin-bottom: 16px;
  line-height: 1.8;
  color: #555;
}

/* =========================================
   GREAT LESSONS
========================================= */

.great-lessons {
  margin: 80px 0;
  text-align: center;
}

.great-lessons h3 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--text);
  font-family: "Playfair Display", serif;
}

.great-lessons p {
  max-width: 760px;
  margin: auto auto 40px;
}

.great-lessons ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 0;
  list-style: none;
}

.great-lessons li {
  padding: 16px 22px;
  background: white;
  border-radius: 999px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  font-weight: 600;
  color: #444;
  transition: 0.3s ease;
}

.great-lessons li:hover {
  transform: translateY(-4px);
  background: var(--secondary);
  color: white;
}

/* =========================================
   QUOTE
========================================= */

.quote {
  /* margin-top: 90px; */
  text-align: center;
  padding: 50px 30px;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(47, 158, 143, 0.08),
    rgba(212, 167, 98, 0.08)
  );
}

.quote p {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.5;
  font-family: "Playfair Display", serif;
  color: var(--text);
  margin-bottom: 20px;
}

.quote h3 {
  color: var(--secondary);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {
  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-img img {
    height: 340px;
  }
}

@media (max-width: 768px) {
  #elementary-info {
    padding: 90px 0;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .program-img {
    grid-template-columns: 1fr;
  }

  .program-img img {
    height: 280px;
    border-radius: 22px;
  }

  /* .program-highlight,
  .program-card,
  .quote {
    padding: 30px 24px;
  } */

  .great-lessons ul {
    gap: 12px;
  }

  .great-lessons li {
    width: 100%;
  }

  .program-content p {
    font-size: 1rem;
    line-height: 1.9;
  }
}
@media (max-width: 600px) {
  .program-section .program-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .program-section .program-card {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .section-heading h2 {
    font-size: 2.2rem;
  }

  .program-card h3,
  .program-highlight h3,
  .great-lessons h3 {
    font-size: 1.5rem;
  }

  .quote p {
    font-size: 1.5rem;
  }
}
/* gallery start */
/* ========================================
   SCHOOL GALLERY
======================================== */

.school-gallery-section {
  padding: 110px 20px;
  background: linear-gradient(to bottom, #f8f6f2 0%, #ffffff 100%);
  overflow: hidden;
}

.gallery-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.gallery-heading span {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary);
}

.gallery-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 15px 0;
  color: #2e2e2e;
}

.gallery-heading p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
}

/* WRAPPER */

.gallery-wrapper {
  position: relative;
  width: 100%;
}

/* TRACK */

.gallery-track-container {
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
  padding: 10px 5vw;
}

/* SLIDES */

.gallery-slide {
  position: relative;
  flex: 0 0 32%;
  border-radius: 28px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}

/* DIFFERENT ORIENTATIONS */

.gallery-slide {
  aspect-ratio: 4 / 5;
}

.gallery-slide.landscape {
  aspect-ratio: 16 / 10;
}

.gallery-slide.portrait {
  aspect-ratio: 3 / 4;
}

/* HOVER */

.gallery-slide:hover img {
  transform: scale(1.05);
}

/* NAV BUTTONS */

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;

  width: 54px;
  height: 54px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

  cursor: pointer;

  font-size: 1.4rem;
  color: var(--text);

  transition: 0.3s ease;
}

.gallery-btn:hover {
  transform: translateY(-50%) scale(1.08);
}

.gallery-btn.prev {
  left: 20px;
}

.gallery-btn.next {
  right: 20px;
}

/* DOTS */

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfcfcf;
  transition: 0.3s ease;
  cursor: pointer;
}

.gallery-dot.active {
  width: 32px;
  border-radius: 999px;
  background: var(--secondary);
}

/* MOBILE */

@media (max-width: 992px) {
  .gallery-slide {
    flex: 0 0 48%;
  }
}

@media (max-width: 768px) {
  .school-gallery-section {
    padding: 80px 16px;
  }

  .gallery-track {
    gap: 18px;
    padding: 10px 16px;
  }

  .gallery-slide {
    flex: 0 0 85%;
  }

  .gallery-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .gallery-btn.prev {
    left: 10px;
  }

  .gallery-btn.next {
    right: 10px;
  }
} /* ========================================
   LIGHTBOX
======================================== */

.lightbox {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.92);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.35s ease;

  z-index: 9999;

  padding: 20px;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

/* IMAGE */

.lightbox-image {
  max-width: 95%;
  max-height: 90vh;

  object-fit: contain;

  border-radius: 18px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);

  transform: scale(0.95);

  transition: 0.35s ease;
}

.lightbox.active .lightbox-image {
  transform: scale(1);
}

/* CLOSE BUTTON */

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 50px;
  height: 50px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  color: white;

  font-size: 2rem;
  cursor: pointer;

  backdrop-filter: blur(10px);

  transition: 0.3s ease;

  z-index: 10;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* NAVIGATION */

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 56px;
  height: 56px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);

  color: white;

  font-size: 1.5rem;
  cursor: pointer;

  backdrop-filter: blur(10px);

  transition: 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

/* MOBILE */

@media (max-width: 768px) {
  .lightbox {
    padding: 12px;
  }

  .lightbox-image {
    max-width: 100%;
    max-height: 82vh;
    border-radius: 14px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .lightbox-close {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .lightbox-nav.prev {
    left: 10px;
  }

  .lightbox-nav.next {
    right: 10px;
  }
}
/* gallery end */
