/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&family=Grandstander:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100..900;1,100..900&display=swap");

/* CSS Variables */
:root {
  /* Brand Colors */
  --bg-header: #ffffff;
  --color-navy: #00204d;
  --color-coral: #e54c81;
  --color-yellow: #f9ae02;
  --color-white: #ffffff;
  --color-light-bg: #fcf9ff;
  /* Palette */
  --color-pink: #e54c81;
  --color-purple: #7b3186;
  --color-cyan: #09b2de;
  --color-green: #66b136;
  --color-orange: #f26b1d;
  --color-lime: #8cc63f;
  --color-periwinkle: #5b6ee1;

  /* Fonts */
  --font-display: "Grandstander", "Nunito", sans-serif;
  --font-body: "Nunito", sans-serif;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;

  /* Layout Metrics */
  --header-height: 90px;
  --header-height-sticky: 75px;
  --max-width: 1200px;
}

/* Base Resets & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-light-bg);
  color: var(--color-navy);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
}

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

ul {
  list-style: none;
}

/* ==========================================
   HEADER
   ========================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: transparent;
  transition: var(--transition-smooth);
}

.site-header.is-sticky {
  height: var(--header-height-sticky);
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header__container {
  width: 100%;
  max-width: calc(var(--max-width) + 48px);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  height: 80%;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.site-header.is-sticky .header__logo {
  height: 75%;
}

.header__logo:hover {
  transform: scale(1.05);
}

.header__logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.header__nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.header__nav-list {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}

.header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.header__nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-navy);
  text-transform: uppercase;
  padding: 8px 16px;
  letter-spacing: 0.3px;
  border-radius: 20px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.header__nav-link:hover,
.header__nav-link.is-active {
  color: var(--color-coral);
}

@media (min-width: 993px) and (max-width: 1200px) {
  .header__nav-link {
    font-size: 14px;
    padding: 8px 12px;
  }
}

/* ——— Toggle Button (Hamburger) ——— */
.header__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
  outline: none;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 40px;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.header__toggle:hover {
  background-color: rgba(238, 127, 130, 0.1);
}

.header__toggle-line {
  width: 24px;
  height: 3px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: var(--transition-smooth);
  transform-origin: center;
}

.header__toggle.is-active .header__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--color-coral);
}

.header__toggle.is-active .header__toggle-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.header__toggle.is-active .header__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--color-coral);
}

/* ——— Desktop CTA Buttons ——— */
.header__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 24px;
  flex-shrink: 0;
  height: 100%;
}

.header__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 800;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  line-height: normal;
  height: 44px;
  white-space: nowrap;
  border: 2px solid;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header__btn--admission {
  background-color: var(--color-white);
  border-color: var(--color-coral);
  color: #333;
}

.header__btn--admission:hover {
  background-color: #fff2f6;
  box-shadow: 0 6px 20px rgba(229, 76, 129, 0.12);
  transform: translateY(-2px);
}

.header__btn--franchise {
  background-color: var(--color-purple);
  border-color: var(--color-purple);
  color: var(--color-white);
}

.header__btn--franchise:hover {
  background-color: #65276e;
  border-color: #65276e;
  box-shadow: 0 6px 20px rgba(123, 49, 134, 0.25);
  transform: translateY(-2px);
}

/* ——— Backdrop Overlay ——— */
.header__backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.header__backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ——— Dropdown (Desktop) ——— */
@media (min-width: 993px) {
  .header__nav-item--dropdown .header__arrow {
    font-size: 11px;
    margin-left: 6px;
    transition: transform 0.3s ease;
  }

  .header__nav-item--dropdown:hover .header__arrow {
    transform: rotate(180deg);
  }

  .header__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background-color: var(--color-white);
    min-width: 260px;
    border-radius: 16px;
    padding: 12px 0;
    box-shadow: 0 12px 35px rgba(0, 32, 77, 0.12);
    border: 1.5px solid rgba(0, 32, 77, 0.06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10010;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  }

  .header__nav-item--dropdown:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }

  .header__dropdown li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: all 0.2s ease;
  }

  .header__dropdown li a:hover {
    background-color: #fff2f6;
    color: var(--color-coral);
    padding-left: 24px;
  }
}

/* ——— Mobile Drawer Header (Hidden on Desktop) ——— */
.header__drawer-header {
  display: none;
}

/* ——— Mobile CTA (inside drawer) ——— */
.header__mobile-cta {
  display: none;
}

/* ==========================================
   MOBILE (≤ 992px)
   ========================================== */
@media (max-width: 992px) {
  :root {
    --header-height: 80px;
    --header-height-sticky: 70px;
  }

  .header__container {
    padding: 0 20px;
  }

  .header__toggle {
    display: flex;
    z-index: 10000;
  }

  .header__cta {
    display: none;
  }

  /* Backdrop Overlay */
  .header__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .header__backdrop.is-visible {
    opacity: 1;
    visibility: visible;
  }

  /* SIDE DRAWER PANEL (Left Slide-in) */
  .header__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.25);
    border-right: 3px solid var(--color-coral);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    overflow-y: auto;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header__nav.is-open {
    left: 0;
  }

  /* Drawer Top Header (Logo + Circular Close Button) */
  .header__drawer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background-color: #f2f9fd;
    border-bottom: 1px solid #e1eff6;
    position: relative;
    flex-shrink: 0;
  }

  .drawer__logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
  }

  .drawer__close-btn {
    position: absolute;
    top: 14px;
    right: -16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #f26b1d;
    color: #ffffff;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    z-index: 10001;
    transition:
      transform 0.2s ease,
      background-color 0.2s ease;
  }

  .drawer__close-btn:hover {
    transform: scale(1.1);
    background-color: var(--color-coral);
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    padding: 8px 0;
    height: auto;
  }

  .header__nav-item {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #f5e6eb;
  }

  .header__nav-link {
    font-size: 15px;
    font-weight: 700;
    color: #333333;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    transition: all 0.2s ease;
    text-transform: capitalize;
  }

  .header__nav-link::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    color: #888888;
    margin-right: 12px;
    transition:
      transform 0.2s ease,
      color 0.2s ease;
  }

  .header__nav-link:hover,
  .header__nav-link.is-active {
    color: var(--color-coral);
    background-color: #fff8f9;
  }

  .header__nav-link:hover::before,
  .header__nav-link.is-active::before {
    color: var(--color-coral);
    transform: translateX(3px);
  }

  /* Mobile Dropdown */
  .header__nav-item--dropdown {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .header__nav-item--dropdown .header__arrow {
    font-size: 11px;
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  .header__nav-item--dropdown.is-active-dropdown .header__arrow {
    transform: rotate(180deg);
  }

  .header__dropdown {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 0;
    background: #fafafa;
    box-shadow: none;
    border: none;
    border-top: 1px solid #f0e6ea;
    position: static;
    transform: none;
    width: 100%;
    padding: 4px 0 4px 24px;
  }

  .header__nav-item--dropdown.is-active-dropdown .header__dropdown {
    display: flex;
  }

  .header__dropdown li {
    width: 100%;
    border-bottom: 1px dashed #ede2e6;
  }

  .header__dropdown li:last-child {
    border-bottom: none;
  }

  .header__dropdown li a {
    font-size: 14px;
    font-weight: 600;
    color: #555555;
    padding: 10px 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
  }

  .header__dropdown li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    color: #aaa;
    margin-right: 8px;
  }

  .header__dropdown li a:hover {
    color: var(--color-coral);
    background: transparent;
    padding-left: 18px;
  }

  /* Mobile CTA Buttons */
  .header__mobile-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    width: 100%;
    padding: 20px;
    border-top: 1px solid #f5e6eb;
    opacity: 1;
    transform: none;
  }

  .header__mobile-cta .header__btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .header__mobile-cta .header__btn--admission {
    background-color: var(--color-white);
    border: 2px solid var(--color-coral);
    color: var(--color-coral);
  }

  .header__mobile-cta .header__btn--franchise {
    background-color: var(--color-purple);
    border: 2px solid var(--color-purple);
    color: var(--color-white);
  }
}

/* ==========================================
   SMALL MOBILE (≤ 480px)
   ========================================== */
@media (max-width: 480px) {
  :root {
    --header-height: 70px;
    --header-height-sticky: 60px;
  }

  .header__container {
    padding: 0 16px;
  }

  .header__logo {
    height: 70%;
  }

  .header__toggle {
    width: 38px;
    height: 36px;
    padding: 8px;
  }

  .header__nav-link {
    font-size: 22px;
  }

  .header__nav-list {
    gap: 15px;
  }
}

/* ==========================================
   HERO BRAND CARD (Welcome Text Overlay)
   ========================================== */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 24px 45px;
}

/* Background Zooming Layer */
.hero-bg-zoom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  animation: zoomBg 24s ease-in-out infinite alternate;
}

@keyframes zoomBg {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}

.hero-brand-card {
  text-align: center;
  max-width: 720px;
  background: transparent;
  padding: 10px 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px; /* Push down slightly from the sticky header */
  z-index: 10;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-brand-subtitle {
  font-family: var(--font-display);
  font-size: clamp(16px, 3.5vw, 24px);
  font-weight: 700;
  color: #7b3186;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.rainbow-text {
  display: inline-block;
}

.hero-brand-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  color: #e54c81;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-brand-tagline {
  font-family: "Grandstander", "Nunito", sans-serif;
  font-size: clamp(15px, 3vw, 20px);
  font-weight: 600;
  color: var(--color-navy);
  font-style: italic;
  opacity: 0.9;
}

/* Premium Apply Now Button (Beige, gold border and arrow) */
.btn-hero-apply {
  align-self: center;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #fef6e4; /* Light cream beige */
  color: #b5823d; /* Gold brown */
  border: 2px solid #b5823d;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 8px 20px;
  border-radius: 40px;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(181, 130, 61, 0.08);
}

.btn-hero-apply .arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #b5823d;
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  transition: var(--transition-smooth);
}

/* Hover transitions */
.btn-hero-apply:hover {
  background-color: #b5823d;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(181, 130, 61, 0.25);
  transform: translateY(-2px);
}

.btn-hero-apply:hover .arrow-circle {
  background-color: #ffffff;
  color: #b5823d;
  transform: translateX(3px);
}

/* ==========================================
   COLORFUL PILL BUTTONS (Matching design style)
   ========================================== */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 10px 22px;
  border-radius: 40px;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.btn-pill .arrow-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 11px;
  transition: var(--transition-smooth);
}

/* Coral / Pink Variant */
.btn-pill--coral {
  background-color: #fde8f1;
  color: #e54c81;
  border-color: #e54c81;
}
.btn-pill--coral .arrow-circle {
  background-color: #e54c81;
  color: #ffffff;
}
.btn-pill--coral:hover {
  background-color: #e54c81;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(229, 76, 129, 0.3);
  transform: translateY(-2px);
}
.btn-pill--coral:hover .arrow-circle {
  background-color: #ffffff;
  color: #e54c81;
  transform: translateX(3px);
}

/* Blue / Cyan Variant */
.btn-pill--blue {
  background-color: #e3f7fd;
  color: #09b2de;
  border-color: #09b2de;
}
.btn-pill--blue .arrow-circle {
  background-color: #09b2de;
  color: #ffffff;
}
.btn-pill--blue:hover {
  background-color: #09b2de;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(9, 178, 222, 0.3);
  transform: translateY(-2px);
}
.btn-pill--blue:hover .arrow-circle {
  background-color: #ffffff;
  color: #09b2de;
  transform: translateX(3px);
}

/* Green Variant */
.btn-pill--green {
  background-color: #edf8e7;
  color: #66b136;
  border-color: #66b136;
}
.btn-pill--green .arrow-circle {
  background-color: #66b136;
  color: #ffffff;
}
.btn-pill--green:hover {
  background-color: #66b136;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(102, 177, 54, 0.3);
  transform: translateY(-2px);
}
.btn-pill--green:hover .arrow-circle {
  background-color: #ffffff;
  color: #66b136;
  transform: translateX(3px);
}

/* Orange Variant */
.btn-pill--orange {
  background-color: #fef0e8;
  color: #f26b1d;
  border-color: #f26b1d;
}
.btn-pill--orange .arrow-circle {
  background-color: #f26b1d;
  color: #ffffff;
}
.btn-pill--orange:hover {
  background-color: #f26b1d;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(242, 107, 29, 0.3);
  transform: translateY(-2px);
}
.btn-pill--orange:hover .arrow-circle {
  background-color: #ffffff;
  color: #f26b1d;
  transform: translateX(3px);
}

/* Google Blue Variant */
.btn-pill--google {
  background-color: #e8f0fe;
  color: #4285f4;
  border-color: #4285f4;
}
.btn-pill--google .arrow-circle {
  background-color: #4285f4;
  color: #ffffff;
}
.btn-pill--google:hover {
  background-color: #4285f4;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
  transform: translateY(-2px);
}
.btn-pill--google:hover .arrow-circle {
  background-color: #ffffff;
  color: #4285f4;
  transform: translateX(3px);
}

/* Purple Variant */
.btn-pill--purple {
  background-color: #f5eaf8;
  color: #7b3186;
  border-color: #7b3186;
}
.btn-pill--purple .arrow-circle {
  background-color: #7b3186;
  color: #ffffff;
}
.btn-pill--purple:hover {
  background-color: #7b3186;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(123, 49, 134, 0.3);
  transform: translateY(-2px);
}
.btn-pill--purple:hover .arrow-circle {
  background-color: #ffffff;
  color: #7b3186;
  transform: translateX(3px);
}

/* Entry Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   HERO KIDS ILLUSTRATION
   ========================================== */
.hero-kids-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: clamp(280px, 46vh, 500px);
  z-index: 5;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-kids-img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  transform-origin: bottom center;
  animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(40px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Responsive adjustment for tablets & mobiles */
@media (max-width: 768px) {
  .hero {
    min-height: 95vh;
    padding: 110px 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-brand-card {
    margin-top: 30px;
    width: 100%;
  }
  .hero-brand-title {
    font-size: clamp(26px, 7vw, 42px);
    white-space: normal;
    word-break: break-word;
  }
  .hero-kids-container {
    position: relative;
    left: auto;
    transform: none;
    bottom: auto;
    margin-top: auto;
    height: clamp(300px, 48vh, 450px);
    pointer-events: none;
    z-index: 5;
  }
  .hero-kids-img {
    height: 100%;
    width: auto;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 95vh;
    padding: 100px 16px 0;
  }
  .hero-brand-card {
    padding: 10px 0;
    margin-top: 25px;
    gap: 8px;
  }
  .hero-brand-title {
    font-size: clamp(22px, 6.5vw, 30px);
  }
  .hero-kids-container {
    margin-top: auto;
    height: clamp(260px, 45vh, 380px);
  }
}

/* Responsive adjustments for low screen heights */
@media (max-height: 700px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 10px;
  }
  .hero-brand-card {
    margin-top: 5px;
    gap: 8px;
  }
  .hero-brand-subtitle {
    font-size: 15px;
  }
  .hero-brand-title {
    font-size: clamp(24px, 5vh, 40px);
  }
  .hero-brand-tagline {
    font-size: 14px;
  }
  .btn-hero-apply {
    margin-top: 8px;
    padding: 6px 16px;
    font-size: 13px;
  }
}
@media (max-height: 520px) {
  .hero {
    padding-top: 90px;
  }
  .hero-brand-card {
    margin-top: 0px;
    gap: 4px;
  }
  .hero-brand-subtitle {
    font-size: 13px;
  }
  .hero-brand-title {
    font-size: clamp(20px, 6vh, 32px);
  }
  .hero-brand-tagline {
    font-size: 13px;
  }
  .btn-hero-apply {
    margin-top: 4px;
    padding: 4px 12px;
    font-size: 12px;
  }
}

/* ==========================================
   HERO CLOUD SHAPE DIVIDER
   ========================================== */
.hero-cloud-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

/* Front main cloud layer masking the kids */
.hero-cloud-divider.divider-front {
  bottom: -2px; /* Prevent 1px gaps */
  z-index: 6;
}

.hero-cloud-divider.divider-front svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

/* Back background colored cloud layer for depth */
.hero-cloud-divider.divider-back {
  bottom: -1px;
  z-index: 4;
}

.hero-cloud-divider.divider-back svg {
  position: relative;
  display: block;
  width: calc(110%);
  height: 98px; /* Taller peak projection */
  opacity: 0.9;
  animation: floatBackCloud 18s ease-in-out infinite alternate;
  transform-origin: bottom center;
}

@keyframes floatBackCloud {
  0% {
    transform: translateX(-2%) scaleY(1);
  }
  100% {
    transform: translateX(2%) scaleY(1.06);
  }
}

/* Responsive adjustment for mobile & tablet cloud heights */
@media (max-width: 992px) {
  .hero-cloud-divider.divider-front svg {
    height: 60px;
  }
  .hero-cloud-divider.divider-back svg {
    height: 75px;
  }
}

@media (max-width: 480px) {
  .hero-cloud-divider.divider-front svg {
    height: 40px;
  }
  .hero-cloud-divider.divider-back svg {
    height: 50px;
  }
}

/* ==========================================
   HIGHLIGHTS SECTION (4 CARDS)
   ========================================== */
.highlights-section {
  padding: 60px 24px;
  background-color: #ffffff;
  position: relative;
  z-index: 10;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.highlight-card {
  background-color: var(--color-white);
  border-radius: 32px;
  padding: 35px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 32, 77, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

/* Card Icon Bubble */
.card-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: transform 0.4s ease;
}

.card-icon-wrapper img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* Card Font and Text styling */
.highlight-card .card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
}

.highlight-card .card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-navy);
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

/* --- Color Varieties (Crayon Pastel Theme) --- */

/* Red Card */
/* Pink Card (Play & Learn) */
.highlight-card.card-red {
  background: linear-gradient(to bottom, #ffffff 0%, #fde8f1 100%);
  border-color: #e54c81;
}
.highlight-card.card-red .card-icon-wrapper {
  background: rgba(229, 76, 129, 0.1);
}
.highlight-card.card-red .card-icon-wrapper i {
  color: #e54c81;
}
.highlight-card.card-red:hover {
  border-color: #e54c81;
}

/* Yellow Card (Safe & Secure) */
.highlight-card.card-yellow {
  background: linear-gradient(to bottom, #ffffff 0%, #fff3cc 100%);
  border-color: #f9ae02;
}
.highlight-card.card-yellow .card-icon-wrapper {
  background: rgba(249, 174, 2, 0.1);
}
.highlight-card.card-yellow .card-icon-wrapper i {
  color: #f9ae02;
}
.highlight-card.card-yellow:hover {
  border-color: #f9ae02;
}

/* Green Card (Expert Teachers) */
.highlight-card.card-green {
  background: linear-gradient(to bottom, #ffffff 0%, #dff0d1 100%);
  border-color: #66b136;
}
.highlight-card.card-green .card-icon-wrapper {
  background: rgba(102, 177, 54, 0.1);
}
.highlight-card.card-green .card-icon-wrapper i {
  color: #66b136;
}
.highlight-card.card-green:hover {
  border-color: #66b136;
}

/* Cyan Card (Holistic Growth) */
.highlight-card.card-blue {
  background: linear-gradient(to bottom, #ffffff 0%, #cff1fb 100%);
  border-color: #09b2de;
}
.highlight-card.card-blue .card-icon-wrapper {
  background: rgba(9, 178, 222, 0.1);
}
.highlight-card.card-blue .card-icon-wrapper i {
  color: #09b2de;
}
.highlight-card.card-blue:hover {
  border-color: #09b2de;
}

/* Orange Card */
.highlight-card.card-orange {
  background: linear-gradient(to bottom, #ffffff 0%, #fff1e6 100%);
  border-color: #ff7c08;
}
.highlight-card.card-orange .card-icon-wrapper {
  background: rgba(255, 124, 8, 0.1);
}
.highlight-card.card-orange .card-icon-wrapper i {
  color: #ff7c08;
}
.highlight-card.card-orange:hover {
  border-color: #ff7c08;
}

/* Purple Card */
.highlight-card.card-purple {
  background: linear-gradient(to bottom, #ffffff 0%, #f4ecf9 100%);
  border-color: #7b3186;
}
.highlight-card.card-purple .card-icon-wrapper {
  background: rgba(123, 49, 134, 0.1);
}
.highlight-card.card-purple .card-icon-wrapper i {
  color: #7b3186;
}
.highlight-card.card-purple:hover {
  border-color: #7b3186;
}

/* Teal Card */
.highlight-card.card-teal {
  background: linear-gradient(to bottom, #ffffff 0%, #e6f7ff 100%);
  border-color: #0ea5e9;
}
.highlight-card.card-teal .card-icon-wrapper {
  background: rgba(14, 165, 233, 0.1);
}
.highlight-card.card-teal .card-icon-wrapper i {
  color: #0ea5e9;
}
.highlight-card.card-teal:hover {
  border-color: #0ea5e9;
}

/* Hover General Interactions */
.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 32, 77, 0.08);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .highlights-section {
    padding: 40px 16px;
  }
  .highlight-card {
    padding: 28px 20px;
  }
}

/* ==========================================
   RAINBOW CURRICULUM SECTION
   ========================================== */
.rainbow-curriculum-section {
  padding: 80px 24px;
  background-color: #ffffff;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.curriculum-container {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.curriculum-content-left {
  flex: 1;
}

.curriculum-image-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.curriculum-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  color: #8e44ad; /* Bright violet */
  margin-bottom: 24px;
  line-height: 1.2;
}

.curriculum-title span {
  color: #5b2c6f; /* Dark violet */
}

.curriculum-p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-navy);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 20px;
}

.curriculum-rainbow-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
}

/* Blob Image Wrapper */
.blob-image-wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.blob-bg {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  z-index: 1;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: blobMotion 8s ease-in-out infinite alternate;
}

.blob-bg.pink-blob {
  background-color: var(--color-coral);
  opacity: 0.15; /* Nice soft pink blob */
}

/* Let the blob morph gently and float */
@keyframes blobMotion {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translateY(0);
  }
  100% {
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
    transform: translateY(-15px);
  }
}

/* Decorative Stickers */
.sticker {
  position: absolute;
  z-index: 4;
  font-size: 28px;
}

.star-sticker {
  top: 10%;
  left: 5%;
  color: var(--color-yellow);
  animation: spinSlow 8s linear infinite;
  z-index: 5;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.heart-sticker {
  bottom: 15%;
  right: 5%;
  color: var(--color-coral);
  font-size: 32px;
  animation: pulseGentle 3s ease-in-out infinite;
  z-index: 5;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.smile-sticker {
  bottom: 25%;
  left: 8%;
  color: var(--color-cyan);
  font-size: 36px;
  animation: floatSmall 4s ease-in-out infinite alternate;
  z-index: 5;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

@keyframes spinSlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseGentle {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

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

.blob-image-wrapper img {
  position: relative;
  z-index: 2;
  display: block;
}

/* Floating Triangle with Circular Motion */
.decor-triangle {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 26px solid var(--color-yellow);
  z-index: 3;
  animation: circularMotion 6s linear infinite;
}

@keyframes circularMotion {
  0% {
    transform: rotate(0deg) translateX(40px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(40px) rotate(360deg);
  }
}

/* --- Responsive Layouts --- */
@media (max-width: 992px) {
  .curriculum-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .curriculum-title {
    margin-bottom: 16px;
  }
  .curriculum-rainbow-img {
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .rainbow-curriculum-section {
    padding: 50px 16px;
  }
  .curriculum-container {
    gap: 30px;
  }
  .curriculum-p {
    font-size: 15px;
    line-height: 1.7;
  }
  .curriculum-rainbow-img {
    max-width: 300px;
  }
}

/* Demo Page Styles - Utilizing Global Variables and Brand Assets */
body {
  background-color: var(--color-light-bg);
  padding-top: 0; /* Merged header and hero section */
  scroll-behavior: smooth;
}

/* Section Global Styles */
section {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.section-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-title span {
  color: var(--color-coral);
}

.section-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-navy);
  opacity: 0.85;
  line-height: 1.8;
}

/* ==========================================
       HERO SECTION (HOME)
       ========================================== */
.hero-bg-zoom {
  background-image: url("../assets/hero-bg.png");
}

/* Premium Buttons */
.btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-primary {
  background-color: var(--color-coral);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #e56569;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(238, 127, 130, 0.35);
}

.btn-secondary {
  background-color: var(--color-yellow);
  color: var(--color-navy);
}

.btn-secondary:hover {
  background-color: #ecd000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 219, 0, 0.35);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

.card {
  background: var(--color-white);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 32, 77, 0.04);
  border: 2px solid rgba(0, 32, 77, 0.02);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 32, 77, 0.08);
  border-color: rgba(238, 127, 130, 0.1);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.icon-play {
  background: rgba(238, 127, 130, 0.15);
  color: var(--color-coral);
}
.icon-learn {
  background: rgba(255, 219, 0, 0.18);
  color: #c4a100;
}
.icon-grow {
  background: #e0f6eb;
  color: #2ecc71;
}
.icon-create {
  background: #e8f4fd;
  color: #3498db;
}

.card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
}

.card-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-navy);
  opacity: 0.85;
  line-height: 1.8;
}

/* ==========================================
       ABOUT US SECTION
       ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4/3;
  background: #ffeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-bullet-icon {
  background: var(--color-yellow);
  color: var(--color-navy);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

/* ==========================================
       OUR PROGRAMS SECTION (STACKING CARDS)
       ========================================== */
#programs {
  background-color: var(--color-white);
  padding: 60px 0;
  overflow: visible !important;
}

#programs .section-container {
  background-color: #f7f2fa; /* Soft lavender/pink container background from screenshot */
  border-radius: 50px;
  padding: 80px 48px;
  margin: 0 auto;
  max-width: 1296px; /* Normalized to align with 1200px content width + 96px padding */
  width: calc(100% - 48px);
  box-shadow: 0 15px 40px rgba(0, 32, 77, 0.02);
}

.programs-carousel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  position: relative;
  z-index: 10;
}
.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 32, 77, 0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.carousel-dots .dot:hover {
  background-color: rgba(0, 32, 77, 0.3);
}
.carousel-dots .dot.is-active {
  width: 24px;
  border-radius: 6px;
  background-color: var(--color-coral);
}

.programs-carousel-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 10px 60px;
  width: 100%;
  max-width: 1120px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.programs-carousel-container::-webkit-scrollbar {
  display: none !important; /* Hide standard scrollbar for premium touch slider look */
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

.program-carousel-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  position: relative;
  height: 460px;
  border-radius: 30px;
  overflow: hidden;
  padding: 35px 25px 25px;
  background-color: var(--theme-color);
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 32, 77, 0.06);
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.program-carousel-card:hover {
  box-shadow: 0 25px 50px rgba(0, 32, 77, 0.15);
}

/* Inline SVG background vectors */
.card-vector-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.card-vector-decor svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Top Link Arrow Button */
.card-link-arrow {
  position: absolute;
  top: 30px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    background-color 0.2s,
    transform 0.2s,
    border-color 0.2s;
  z-index: 2;
}

.card-link-arrow i {
  font-size: 15px;
  transform: rotate(-45deg); /* Point up-right matching curved arrow look */
  transition: transform 0.2s;
}

.program-carousel-card:hover .card-link-arrow {
  background-color: #ffffff;
  color: var(--theme-color);
  border-color: #ffffff;
}

.program-carousel-card:hover .card-link-arrow i {
  transform: rotate(0deg); /* Straightens on hover */
}

/* Text Headers */
.card-text-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 75%;
  position: relative;
  z-index: 2;
}

.card-age-tag {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92); /* Crisp white on all card colors */
  line-height: 1.2;
}

.program-carousel-card .program-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.program-carousel-card .program-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #ffffff;
  opacity: 0.95;
  line-height: 1.6;
  margin: 0;
  max-width: 72%;
  flex-grow: 1;
  padding-top: 16px;
  position: relative;
  z-index: 2;
}

/* Bottom Section */
.card-bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.btn-card-enroll {
  background-color: #ffffff;
  color: var(--theme-color);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 20px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  margin-bottom: 5px;
}

.btn-card-enroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper Box */
.card-img-placeholder {
  width: 100px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 25px;
  right: 25px;
}

.card-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Transparent kid silhouettes sitting on card backdrop */
.card-img-silhouette {
  position: absolute;
  bottom: -2px;
  right: 15px;
  height: 260px;
  width: auto;
  object-fit: contain;
  z-index: 3;
  pointer-events: none;
  display: block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: bottom center;
}

/* Carousel Navigation Buttons */
.carousel-control {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 32, 77, 0.08);
  transition:
    background-color 0.2s,
    transform 0.2s,
    color 0.2s;
  z-index: 10;
  position: absolute;
}

.carousel-control:hover {
  background-color: var(--color-navy);
  color: #ffffff;
  transform: scale(1.08);
}

.carousel-control.prev-btn {
  left: 10px;
}

.carousel-control.next-btn {
  right: 10px;
}

/* --- Theme Variables --- */
.card-red {
  --theme-color: #e54c81;
}
.card-orange {
  --theme-color: #f26b1d;
}
.card-yellow {
  --theme-color: #f9ae02;
}
.card-green {
  --theme-color: #66b136;
}
.card-blue {
  --theme-color: #09b2de;
}
.card-purple {
  --theme-color: #7b3186;
}

/* --- Responsive Configurations --- */
@media (max-width: 1200px) {
  .programs-carousel-container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .carousel-control.prev-btn {
    left: -10px;
  }
  .carousel-control.next-btn {
    right: -10px;
  }
}

@media (max-width: 992px) {
  .carousel-control {
    display: none; /* Rely on native touch swiping on mobile/tablets */
  }
  #programs .section-container {
    padding: 50px 16px;
  }
  .program-carousel-card {
    flex: 0 0 calc((100% - 24px) / 2); /* Show exactly 2 cards on tablet */
  }
}

@media (max-width: 768px) {
  .program-carousel-card {
    flex: 0 0 100%; /* Show exactly 1 card on mobile */
    height: 420px;
    padding: 30px 20px 20px;
  }
  .card-img-placeholder {
    width: 80px;
    height: 100px;
    bottom: 20px;
    right: 20px;
  }
  .card-img-silhouette {
    height: 200px;
    right: 10px;
    bottom: -2px;
  }
  .btn-card-enroll {
    padding: 8px 18px;
    font-size: 13px;
  }
  .card-age-tag {
    font-size: 22px;
  }
  .program-carousel-card .program-title {
    font-size: 19px;
  }
  .program-carousel-card .program-desc {
    font-size: 13px;
  }
}

/* ==========================================
       GALLERY SECTION
       ========================================== */
#gallery {
  padding: 60px 0;
  background-color: var(--color-white);
}
#gallery .section-container {
  background-color: #f7f2fa; /* Match Our Programs container background */
  border-radius: 50px;
  padding: 80px 48px;
  margin: 0 auto;
  max-width: 1296px; /* Normalized to align with 1200px content width + 96px padding */
  width: calc(100% - 48px);
  box-shadow: 0 15px 40px rgba(0, 32, 77, 0.02);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}
.gallery-item {
  position: relative;
  background-color: var(--color-white);
  border-radius: 28px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 32, 77, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-sizing: border-box;
  overflow: visible; /* To allow the badge to overlap outside the card */
  cursor: pointer;
}
.gallery-item:hover {
  transform: translateY(-4px);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Lightbox Modal System */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 50, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  padding: 20px;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox.active .lightbox-img {
  transform: scale(1);
}
.lightbox-caption {
  margin-top: 15px;
  color: #ffffff;
  font-family: var(--font-display, sans-serif);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100000;
}
.lightbox-close:hover {
  background: #e54c81;
  color: #fff;
  transform: scale(1.1);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 100000;
}
.lightbox-nav:hover {
  background: #ff8a00;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.lightbox-prev {
  left: 30px;
}
.lightbox-next {
  right: 30px;
}
.gallery-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-cloud-top-left {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 4;
  pointer-events: none;
}
.gallery-cloud-top-right {
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 4;
  pointer-events: none;
}
.gallery-cloud-left {
  position: absolute;
  bottom: -1px;
  left: -1px;
  z-index: 4;
  pointer-events: none;
}
.gallery-cloud-right {
  position: absolute;
  bottom: -1px;
  right: -1px;
  z-index: 4;
  pointer-events: none;
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 32, 77, 0.12);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

@media (max-width: 992px) {
  #gallery .section-container {
    padding: 50px 24px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
       FOOTER
       ========================================== */
.footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 24px 40px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.footer-col {
  width: 100%;
}

.footer-about {
  max-width: 100%;
  text-align: left;
}

.footer-logo {
  height: 60px;
  margin-bottom: 24px;
  display: block;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-icon:hover {
  background: #e54c81;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-display);
  color: #e54c81;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-align: left;
}

.footer-link-list,
.footer-contact-list {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}

.footer-link-list li {
  margin-bottom: 12px;
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-link-list a:hover {
  color: #e54c81;
}

.footer-divider-vertical {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  align-self: stretch;
  margin: 0 10px;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-list i {
  color: #e54c81;
  margin-top: 4px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: #e54c81;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: #e54c81;
}

.pipe {
  color: rgba(255, 255, 255, 0.2);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background-color: #20ba5a;
  color: #ffffff;
}

/* Footer Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  .footer-divider-vertical {
    display: none;
  }
  .footer-about {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ==========================================
       KEYFRAME ANIMATIONS & RESPONSIVE GRID
       ========================================== */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-bullet {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 16px;
  }
}

@media (max-width: 480px) {
  .feature-cards {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  /* Carousel Card Mobile Overrides */
  .program-carousel-card {
    height: auto;
    min-height: 380px;
    padding: 24px 20px 20px;
  }
  .program-carousel-card .program-desc {
    max-width: 65%;
    font-size: 12px;
    padding-top: 10px;
  }
  .card-img-silhouette {
    height: 180px;
    right: 5px;
  }
}

.why-choose-us-section {
  padding: 100px 24px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.wcu-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.wcu-image-container {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.wcu-image {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.wcu-image:hover {
  transform: translateY(-8px);
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-12px);
  }
}
@keyframes floatLeftRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(10px);
  }
}
.wcu-content {
  display: flex;
  flex-direction: column;
}
.wcu-content .section-subtitle {
  display: inline-block;
  color: var(--color-coral);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.wcu-content .section-title {
  text-align: left;
  margin-bottom: 24px;
}
.wcu-content .section-desc {
  text-align: left;
  margin-bottom: 40px;
  color: rgba(0, 32, 77, 0.7);
  font-size: 16px;
  line-height: 1.6;
}
.wcu-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.wcu-feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.wcu-feature-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background-color: rgba(238, 127, 130, 0.1);
  color: var(--color-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}
.wcu-feature-item:nth-child(2) .wcu-feature-icon {
  background-color: rgba(255, 139, 44, 0.1);
  color: #ff8b2c;
}
.wcu-feature-item:nth-child(3) .wcu-feature-icon {
  background-color: rgba(255, 219, 0, 0.15);
  color: #b5823d;
}
.wcu-feature-item:nth-child(4) .wcu-feature-icon {
  background-color: rgba(0, 184, 124, 0.1);
  color: #00b87c;
}
.wcu-feature-item:hover .wcu-feature-icon {
  transform: scale(1.1);
}
.wcu-feature-text h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}
.wcu-feature-text p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-navy);
  opacity: 0.85;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .why-choose-us-section {
    padding: 70px 16px;
  }
  .wcu-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .wcu-image-container {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .wcu-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ==========================================
       TESTIMONIALS SECTION
       ========================================== */
#testimonials {
  padding: 80px 0;
  background-color: var(--color-white);
  overflow: hidden;
}
#testimonials .section-container {
  max-width: 1296px; /* Normalized to align with 1200px content width + 96px padding */
  width: calc(100% - 48px);
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}
.testimonials-carousel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 40px;
  padding: 0;
  box-sizing: border-box;
}
.testimonials-carousel-container {
  overflow: hidden;
  width: 100%;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3); /* 3 cards visible on desktop */
  background: var(--color-white);
  border-radius: 24px;
  padding: 35px 30px;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 32, 77, 0.03);
  border: 2px solid transparent; /* Colorful border logic below */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.testimonial-card:nth-child(6n + 1) {
  border-color: #e54c81;
  background: #e54c81;
}
.testimonial-card:nth-child(6n + 2) {
  border-color: #f26b1d;
  background: #f26b1d;
}
.testimonial-card:nth-child(6n + 3) {
  border-color: #f9ae02;
  background: #f9ae02;
}
.testimonial-card:nth-child(6n + 4) {
  border-color: #66b136;
  background: #66b136;
}
.testimonial-card:nth-child(6n + 5) {
  border-color: #09b2de;
  background: #09b2de;
}
.testimonial-card:nth-child(6n + 6) {
  border-color: #7b3186;
  background: #7b3186;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 32, 77, 0.08);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
}
.testimonial-stars i {
  font-size: 15px;
  color: #ffd700;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}
.testimonial-quote {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
}
.parent-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 15px;
}
.parent-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 32, 77, 0.12);
  flex-shrink: 0;
}
.parent-info {
  text-align: left;
}
.parent-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}
.parent-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.test-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid rgba(0, 32, 77, 0.05);
  color: var(--color-navy);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 32, 77, 0.04);
  z-index: 10;
}
.test-nav-btn:hover {
  background: var(--color-coral);
  border-color: var(--color-coral);
  color: var(--color-white);
  box-shadow: 0 6px 16px rgba(238, 127, 130, 0.25);
}
.test-prev {
  left: 0;
}
.test-next {
  right: 0;
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.test-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 32, 77, 0.12);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.test-dot.is-active {
  background: var(--color-coral);
  transform: scale(1.15);
  width: 20px;
  border-radius: 8px;
}

/* Responsive styles for Testimonials */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2); /* 2 cards visible on tablet */
    min-height: 280px;
  }
  .testimonials-carousel-wrapper {
    padding: 0;
  }
}
@media (max-width: 768px) {
  #testimonials {
    padding: 60px 0;
  }
  #testimonials .section-container {
    padding: 0 20px;
  }
  .testimonials-carousel-wrapper {
    padding: 0;
  }
  .testimonial-card {
    flex: 0 0 100%; /* 1 card visible on mobile/tablet <= 768px */
    padding: 24px;
  }
  .test-nav-btn {
    display: none; /* Hide nav arrows on mobile */
  }
}
@media (max-width: 576px) {
  #testimonials .section-container {
    padding: 0 16px;
  }
}

/* ==========================================
       FRANCHISE SECTION
       ========================================== */
.franchise-section {
  background-color: var(--color-white);
  padding: 60px 0;
  position: relative;
  overflow: visible !important;
}
.franchise-section .section-container {
  background-color: #f7f2fa;
  border-radius: 50px;
  padding: 45px 48px;
  margin: 0 auto;
  max-width: 1296px; /* Normalized to align with 1200px content width + 96px padding */
  width: calc(100% - 48px);
  box-shadow: 0 15px 40px rgba(0, 32, 77, 0.02);
  overflow: hidden;
}
.franchise-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.franchise-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.franchise-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0 24px;
  width: 100%;
}
.franchise-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-bullet {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.franchise-feature-item p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(0, 32, 77, 0.8);
  font-weight: 500;
  margin: 0;
}
.btn-franchise-contact {
  align-self: flex-start;
}
.franchise-image-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  align-self: end;
  margin-bottom: -45px;
}
.franchise-image {
  width: 100%;
  max-width: 580px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  transition: transform 0.3s ease;
  display: block;
}
.franchise-image:hover {
  transform: translateY(-8px);
}

/* Responsive styling for Franchise */
@media (max-width: 992px) {
  .franchise-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .franchise-content {
    align-items: center;
    text-align: center;
  }
  .btn-franchise-contact {
    align-self: center;
  }
  .franchise-image-container {
    margin-bottom: -80px;
  }
  .franchise-image {
    max-width: 480px;
  }
}
@media (max-width: 576px) {
  .franchise-image-container {
    margin-bottom: -80px;
  }
  .franchise-image {
    border-radius: 0;
    max-width: 360px;
  }
  .franchise-section {
    padding: 60px 0;
  }
}

/* ==========================================
       FAQ SECTION
       ========================================== */
.faq-section {
  padding: 80px 24px;
  background-color: var(--color-white);
  position: relative;
}
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}
.faq-header .section-title span {
  color: var(--color-coral);
}
.faq-list {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--faq-bg-color, #ffffff);
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  border: 1.5px solid var(--faq-theme-color);
}
.faq-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}
.faq-item:nth-child(6n + 1) {
  --faq-theme-color: #e54c81; /* Pink */
  --faq-bg-color: #fff2f6;
}
.faq-item:nth-child(6n + 2) {
  --faq-theme-color: #f9ae02; /* Yellow */
  --faq-bg-color: #fffdf0;
}
.faq-item:nth-child(6n + 3) {
  --faq-theme-color: #09b2de; /* Cyan */
  --faq-bg-color: #f2fcff;
}
.faq-item:nth-child(6n + 4) {
  --faq-theme-color: #66b136; /* Green */
  --faq-bg-color: #f6fcf3;
}
.faq-item:nth-child(6n + 5) {
  --faq-theme-color: #7b3186; /* Purple */
  --faq-bg-color: #faf4fb;
}
.faq-item:nth-child(6n + 6) {
  --faq-theme-color: #f26b1d; /* Orange */
  --faq-bg-color: #fff6f0;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-navy);
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: var(--faq-theme-color);
}
.faq-icon {
  font-size: 13px;
  color: var(--faq-theme-color);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-item.active .faq-question {
  color: var(--faq-theme-color);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}
.faq-answer-inner {
  padding: 0 24px 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(0, 32, 77, 0.75);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 16px;
  }
  .faq-header .section-title {
    font-size: 28px;
  }
  .faq-question {
    font-size: 14.5px;
    padding: 12px 18px;
  }
  .faq-answer-inner {
    padding: 0 18px 14px;
    font-size: 14px;
  }
}

/* ==========================================
       BLOGS SECTION
       ========================================== */
#blogs {
  background-color: var(--color-white);
  padding: 60px 0;
  overflow: visible !important;
}
#blogs .section-container {
  background-color: #f7f2fa; /* Soft lavender/pink container background matching Our Programs */
  border-radius: 50px;
  padding: 80px 48px;
  margin: 0 auto;
  max-width: 1296px; /* Normalized to align with 1200px content width + 96px padding */
  width: calc(100% - 48px);
  box-shadow: 0 15px 40px rgba(0, 32, 77, 0.02);
}
.blogs-header {
  text-align: center;
  margin-bottom: 50px;
}
.blogs-header .section-title span {
  color: var(--color-coral);
}
.blogs-carousel-wrapper {
  position: relative;
  width: 100%;
}
.blogs-carousel-container {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}
.blogs-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #ffffff;
  border-radius: 30px;
  border: 8px solid #ffffff;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 32, 77, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px dashed #e54c81;
  border-radius: 22px;
  pointer-events: none;
  z-index: 2;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 32, 77, 0.08);
}
.blog-img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-coral);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  background: rgba(255, 112, 112, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
}
.blog-title {
  font-size: 20px;
  color: var(--color-navy);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-excerpt {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-navy);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}
.blog-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.blog-link:hover {
  color: var(--color-coral);
}
.blogs-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.blogs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e2e8f0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.blogs-dot.is-active {
  width: 24px;
  border-radius: 12px;
  background-color: var(--color-coral);
}

/* Responsive styling for Blogs */
@media (max-width: 992px) {
  .blog-card {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .blog-card {
    flex: 0 0 100%;
  }
  #blogs .section-container {
    padding: 60px 24px;
    width: calc(100% - 32px);
  }
}

/* ==========================================
       NEW ADMISSIONS CTA SECTION
       ========================================== */
.admissions-cta-new {
  padding: 60px 24px 100px;
  display: flex;
  justify-content: center;
  background-color: var(--color-white);
}
.admissions-cta-container {
  max-width: 1200px;
  width: 100%;
  min-height: 400px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background-image: url("../assets/admissions_banner_framed.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 40px rgba(0, 32, 77, 0.08);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 80px 60px;
}
.admissions-cta-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  color: var(--color-navy); /* Dark text for light blue background */
  text-align: left;
}
.admissions-cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.admissions-cta-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}
.admissions-cta-btn {
  display: inline-flex;
  align-items: center;
  background-color: #e2e8e4;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-display);
  text-decoration: none;
  padding: 14px 32px 14px 32px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.admissions-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
}
.btn-color-strip {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(to bottom, #f43f5e 50%, #fbbf24 50%);
}

@media (max-width: 768px) {
  .admissions-cta-container {
    justify-content: center;
    padding: 40px 24px;
  }
  .admissions-cta-content {
    text-align: center;
    padding-top: 150px;
  }
}

/* ==========================================
       OLD ADMISSIONS SECTION (Kept for backward compatibility)
       ========================================== */
.admissions-section {
  padding: 60px 24px 100px;
  display: flex;
  justify-content: center;
  background-color: var(--color-white);
}
.admissions-banner {
  display: flex;
  max-width: 1000px;
  width: 100%;
  border-radius: 20px;
  border: 3px dashed var(--color-coral);
  overflow: hidden;
  position: relative;
  background-color: #fde8f1; /* soft pink */
  box-shadow: 0 10px 30px rgba(0, 32, 77, 0.05);
}
.admissions-left {
  flex: 0 0 55%;
  background-color: #ffffff;
  padding: 60px 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}
.admissions-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -29px;
  width: 30px;
  height: 100%;
  background-image: radial-gradient(
    circle at 0 30px,
    #ffffff 30px,
    transparent 31px
  );
  background-size: 30px 60px;
  background-repeat: repeat-y;
}
.admissions-logo {
  width: 140px;
  margin-bottom: 24px;
}
.admissions-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  color: #7b3186; /* dark maroon */
  line-height: 1.2;
  margin-bottom: 5px;
}
.admissions-subtitle {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 800;
  color: #7b3186;
  margin-bottom: 40px;
}
.admissions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 30px;
  background-color: var(--color-coral);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-display);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(229, 76, 129, 0.25);
  transition: all 0.3s ease;
}
.admissions-btn:hover {
  background-color: #d13a6c;
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(229, 76, 129, 0.35);
}
.admissions-right {
  flex: 0 0 45%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.admissions-kid-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}
.admissions-blob {
  position: absolute;
  width: 280px;
  height: 350px;
  background-color: #66b136; /* palette green */
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: -1;
  bottom: -20px;
}
.admissions-kid {
  max-width: 90%;
  max-height: 350px;
  object-fit: contain;
  z-index: 2;
}
.floating-doodle {
  position: absolute;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@media (max-width: 768px) {
  .admissions-banner {
    flex-direction: column;
  }
  .admissions-left {
    flex: 0 0 auto;
    padding: 40px 30px;
    align-items: center;
    text-align: center;
  }
  .admissions-left::after {
    top: auto;
    bottom: -29px;
    left: 0;
    width: 100%;
    height: 30px;
    background-image: radial-gradient(
      circle at 30px 0,
      #ffffff 30px,
      transparent 31px
    );
    background-size: 60px 30px;
    background-repeat: repeat-x;
  }
  .admissions-right {
    padding-top: 60px;
    height: 350px;
  }
  .admissions-title {
    font-size: 32px;
  }
  .admissions-subtitle {
    font-size: 24px;
  }
} /* ==========================================
   ABOUT US PAGE SPECIFIC STYLES
   ========================================== */

/* About & Programs Hero */
.about-hero,
.programs-hero {
  width: 100%;
  aspect-ratio: 2098 / 749;
  min-height: 250px;
  background: url("../assets/breadcrumb-bg.png") no-repeat center center / cover;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding-top: 100px;
}

.about-hero h1,
.programs-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

/* Breadcrumb Styling */
.about-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.about-breadcrumb a {
  color: var(--color-navy);
  text-decoration: none;
  opacity: 0.75;
  transition: var(--transition-fast);
}

.about-breadcrumb a:hover {
  opacity: 1;
  color: var(--color-coral);
}

.about-breadcrumb .breadcrumb-separator {
  color: var(--color-navy);
  opacity: 0.5;
  font-size: 10px;
}

.about-breadcrumb .breadcrumb-current {
  color: var(--color-coral);
}

/* Awards & Recognition Section */
.awards-section {
  padding: 80px 24px;
  background-color: var(--color-white);
  text-align: center;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.award-card {
  background-color: var(--color-white);
  border-radius: 28px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 32, 77, 0.02);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  text-align: center;
  position: relative;
}

.award-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 32, 77, 0.06);
}

.award-badge-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 8px;
  transition: transform 0.4s ease;
}

.award-badge-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.award-card:hover .award-badge-icon {
  transform: rotate(15deg) scale(1.1);
}

.award-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.3;
}

.award-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-navy);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

/* Award Color Variations */
.award-card.card-gold {
  border-color: rgba(249, 174, 2, 0.15);
  background: linear-gradient(to bottom, #ffffff 0%, #fffdf0 100%);
}
.award-card.card-gold .award-badge-icon {
  background-color: #fffdf0;
  color: #f9ae02;
}
.award-card.card-gold:hover {
  border-color: #f9ae02;
}

.award-card.card-purple {
  border-color: rgba(142, 68, 173, 0.15);
  background: linear-gradient(to bottom, #ffffff 0%, #fbf5ff 100%);
}
.award-card.card-purple .award-badge-icon {
  background-color: #fbf5ff;
  color: #8e44ad;
}
.award-card.card-purple:hover {
  border-color: #8e44ad;
}

.award-card.card-coral {
  border-color: rgba(255, 76, 76, 0.15);
  background: linear-gradient(to bottom, #ffffff 0%, #fff5f5 100%);
}
.award-card.card-coral .award-badge-icon {
  background-color: #fff5f5;
  color: #ff4c4c;
}
.award-card.card-coral:hover {
  border-color: #ff4c4c;
}

.award-card.card-teal {
  border-color: rgba(0, 128, 128, 0.15);
  background: linear-gradient(to bottom, #ffffff 0%, #f5fffa 100%);
}
.award-card.card-teal .award-badge-icon {
  background-color: #f5fffa;
  color: #008080;
}
.award-card.card-teal:hover {
  border-color: #008080;
}

@media (max-width: 992px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

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

/* Vision & Mission Section */
.about-mission-section {
  padding: 80px 24px;
  background-color: var(--color-light-bg);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card {
  background: var(--color-white);
  border-radius: 30px;
  padding: 45px 40px;
  box-shadow: 0 15px 40px rgba(0, 32, 77, 0.03);
  border: 2px solid transparent;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mission-card.vision {
  border-color: rgba(229, 76, 129, 0.15);
}

.mission-card.mission {
  border-color: rgba(9, 178, 222, 0.15);
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 32, 77, 0.06);
}

.mission-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.vision .mission-card-icon {
  background-color: #fff2f6;
  color: #e54c81;
}

.mission .mission-card-icon {
  background-color: #f2fcff;
  color: #09b2de;
}

.mission-card h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.mission-card p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-navy);
  opacity: 0.85;
  margin: 0;
  flex-grow: 1;
}

/* Core Pillars (Sanskaron Ki Pathshala) */
.about-pillars-section {
  padding: 85px 24px;
  background-color: #f7f2fa;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.pillar-card {
  background: var(--color-white);
  border-radius: 28px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0, 32, 77, 0.02);
  border: 2px solid var(--pillar-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 32, 77, 0.06);
}

.pillar-card.pink {
  --pillar-color: #e54c81;
  --pillar-bg: #fff2f6;
}

.pillar-card.yellow {
  --pillar-color: #f9ae02;
  --pillar-bg: #fffdf0;
}

.pillar-card.cyan {
  --pillar-color: #09b2de;
  --pillar-bg: #f2fcff;
}

.pillar-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background-color: var(--pillar-bg);
  color: var(--pillar-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.pillar-card p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-navy);
  opacity: 0.8;
  margin: 0;
}

/* Campus & Team Highlights */
.about-details-section {
  padding: 85px 24px;
  background-color: var(--color-white);
}

.about-details-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-details-content {
  text-align: left;
}

.about-details-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-details-content h2 span {
  color: var(--color-coral);
}

.about-details-content p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-navy);
  opacity: 0.85;
  margin-bottom: 30px;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-bullet {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #e8f9ef;
  color: #66b136;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.about-feature-item span.text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
}

.about-details-image {
  position: relative;
}

.about-img-box {
  border-radius: 30px;
  border: 3px dashed var(--color-coral);
  overflow: hidden;
  padding: 10px;
  background-color: #fff2f6;
  box-shadow: 0 15px 35px rgba(0, 32, 77, 0.04);
}

.about-img-box img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-pillars-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .about-details-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 110px 16px 30px;
  }
  .about-mission-section,
  .about-pillars-section,
  .about-details-section {
    padding: 60px 16px;
  }
}

@media (max-width: 576px) {
  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.about-features-list {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.pillar-card {
  background: var(--color-white);
  border-radius: 28px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0, 32, 77, 0.02);
  border: 2px solid var(--pillar-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 32, 77, 0.06);
}

.pillar-card.pink {
  --pillar-color: #e54c81;
  --pillar-bg: #fff2f6;
}

.pillar-card.yellow {
  --pillar-color: #f9ae02;
  --pillar-bg: #fffdf0;
}

.pillar-card.cyan {
  --pillar-color: #09b2de;
  --pillar-bg: #f2fcff;
}

.pillar-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background-color: var(--pillar-bg);
  color: var(--pillar-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.pillar-card p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-navy);
  opacity: 0.8;
  margin: 0;
}

/* Campus & Team Highlights */
.about-details-section {
  padding: 85px 24px;
  background-color: var(--color-white);
}

.about-details-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-details-content {
  text-align: left;
}

.about-details-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-details-content h2 span {
  color: var(--color-coral);
}

.about-details-content p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-navy);
  opacity: 0.85;
  margin-bottom: 30px;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-bullet {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #e8f9ef;
  color: #66b136;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.about-feature-item span.text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
}

.about-details-image {
  position: relative;
}

.about-img-box {
  border-radius: 30px;
  border: 3px dashed var(--color-coral);
  overflow: hidden;
  padding: 10px;
  background-color: #fff2f6;
  box-shadow: 0 15px 35px rgba(0, 32, 77, 0.04);
}

.about-img-box img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-pillars-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .about-details-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 110px 16px 30px;
  }
  .about-mission-section,
  .about-pillars-section,
  .about-details-section {
    padding: 60px 16px;
  }
}

@media (max-width: 576px) {
  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-features-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* ==========================================
   ABOUT INTRO SECTION (LIKE IMAGE)
   ========================================== */
.about-intro-section {
  padding: 60px 24px;
  background-color: var(--color-white);
  overflow: hidden;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left Column - Visuals */
.about-intro-visuals {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.about-blob-bg {
  position: absolute;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  background-color: var(--color-coral); /* Pink */
  border-radius: 50% 50% 50% 10%; /* Teardrop / balloon shape */
  transform: rotate(-45deg);
  z-index: 1;
  animation: floatBalloon 6s ease-in-out infinite alternate;
}

@keyframes floatBalloon {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  100% {
    transform: rotate(-45deg) translate(-15px, -15px);
  }
}

.about-intro-img {
  position: relative;
  z-index: 2;
  max-width: 70%;
  height: auto;
}

/* Right Column - Content */
.about-intro-content {
  position: relative;
  z-index: 2;
}

.about-intro-subtitle {
  color: var(--color-coral);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  display: block;
}

.about-intro-title {
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
}

.about-intro-title span {
  position: relative;
  display: inline-block;
  color: var(--color-coral);
}

.about-intro-desc {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Action Row */
.about-action-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.btn-enroll-yellow {
  background-color: var(--color-yellow);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(249, 174, 2, 0.3);
}

.btn-enroll-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 174, 2, 0.4);
}

.about-contact-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-contact-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-orange);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.about-contact-text h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-navy);
  margin-bottom: 2px;
}

.about-contact-text p {
  font-size: 14px;
  color: #777;
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-action-row {
    justify-content: center;
  }

  .about-intro-title {
    font-size: 36px;
  }
}

/* ==========================================
   FAQ PAGE STYLES
   ========================================== */
.faq-section {
  padding: 80px 24px;
  background-color: var(--color-light-bg);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 32, 77, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 8px 25px rgba(0, 32, 77, 0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-coral);
}

.faq-item.active .faq-question {
  color: var(--color-coral);
}

.faq-icon {
  font-size: 16px;
  color: var(--color-coral);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 24px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}
/* ==========================================
   CUSTOM FAQ PAGE STYLES
   ========================================== */
.cs_faq_section {
  padding: 80px 24px;
  background-color: var(--color-white);
}
.cs_faq_container {
  background-color: #f7f9fb;
  border-radius: 30px;
  padding: 60px 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.cs_section_heading {
  text-align: center;
  margin-bottom: 50px;
}
.cs_section_subtitle {
  color: var(--color-coral);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cs_section_title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--color-navy);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}
.cs_accordians_wrapper_1 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cs_accordian {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 32, 77, 0.03);
}
.cs_accordian.active {
  box-shadow: 0 8px 25px rgba(0, 32, 77, 0.08);
}
.cs_accordian_head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cs_accordian_title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
  padding-right: 40px;
  transition: color 0.3s ease;
}
.cs_accordian:hover .cs_accordian_title,
.cs_accordian.active .cs_accordian_title {
  color: var(--color-coral);
}
.cs_accordian_toggler {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
.cs_accordian_toggler::before,
.cs_accordian_toggler::after {
  content: "";
  position: absolute;
  background-color: var(--color-coral);
  transition: all 0.3s ease;
}
.cs_accordian_toggler::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.cs_accordian_toggler::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.cs_accordian.active .cs_accordian_toggler::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.cs_accordian_body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    margin-top 0.4s ease;
}
.cs_accordian.active .cs_accordian_body {
  margin-top: 16px;
}
.cs_accordian_body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}
.cs_questionbox_wrapper {
  background: url("../assets/breadcrumb-bg.png") no-repeat center center / cover;
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  max-width: 1000px;
  margin: 60px auto 0;
  position: relative;
  overflow: hidden;
}
.cs_questionbox_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 32, 77, 0.85);
  border-radius: 30px;
  z-index: 1;
}
.cs_questionbox_content {
  position: relative;
  z-index: 2;
}
.cs_questionbox_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-coral);
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}
.cs_questionbox_title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.cs_questionbox_text {
  color: #ccc;
  margin-bottom: 5px;
  font-size: 16px;
}
.cs_questionbox_phone {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.cs_questionbox_phone:hover {
  color: var(--color-coral);
}

/* Key Development Areas Section */
.dev-areas-section {
  padding: 80px 24px;
  background-color: var(--color-light-bg);
  text-align: center;
}

.dev-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.dev-area-card {
  background-color: var(--color-white);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0, 32, 77, 0.02);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  text-align: center;
}

.dev-area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 32, 77, 0.06);
}

.dev-area-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.dev-area-card:hover .dev-area-icon {
  transform: scale(1.1);
}

.dev-area-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.3;
}

/* Card color overrides */
.dev-area-card.card-pink {
  border-color: rgba(229, 76, 129, 0.15);
}
.dev-area-card.card-pink .dev-area-icon {
  background-color: #fff2f6;
  color: #e54c81;
}

.dev-area-card.card-blue {
  border-color: rgba(9, 178, 222, 0.15);
}
.dev-area-card.card-blue .dev-area-icon {
  background-color: #f2fcff;
  color: #09b2de;
}

.dev-area-card.card-yellow {
  border-color: rgba(249, 174, 2, 0.15);
}
.dev-area-card.card-yellow .dev-area-icon {
  background-color: #fffdf0;
  color: #f9ae02;
}

.dev-area-card.card-green {
  border-color: rgba(102, 177, 54, 0.15);
}
.dev-area-card.card-green .dev-area-icon {
  background-color: #f7fff0;
  color: #66b136;
}

.dev-area-card.card-purple {
  border-color: rgba(142, 68, 173, 0.15);
}
.dev-area-card.card-purple .dev-area-icon {
  background-color: #fbf5ff;
  color: #8e44ad;
}

.dev-area-card.card-orange {
  border-color: rgba(255, 138, 0, 0.15);
}
.dev-area-card.card-orange .dev-area-icon {
  background-color: #fffbf5;
  color: #ff8a00;
}

.dev-area-card.card-teal {
  border-color: rgba(0, 128, 128, 0.15);
}
.dev-area-card.card-teal .dev-area-icon {
  background-color: #f5fffa;
  color: #008080;
}

.dev-area-card.card-indigo {
  border-color: rgba(75, 0, 130, 0.15);
}
.dev-area-card.card-indigo .dev-area-icon {
  background-color: #f5f6ff;
  color: #4b0082;
}

@media (max-width: 992px) {
  .dev-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .dev-areas-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   FRANCHISE HERO BANNER WITH FORM
   ========================================== */
.franchise-hero-banner {
  position: relative;
  width: 100%;
  min-height: 600px;
  background-image: url("https://www.footprintseducation.in/landingpage/franchise_v2/assets/images/global/bg-kid-2.jpg");
  background-size: cover;
  background-position: 25% center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  box-sizing: border-box;
  z-index: 1;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 40%,
    rgba(255, 255, 255, 0.9) 80%,
    #ffffff 100%
  );
  z-index: 2;
  pointer-events: none;
}

.banner-container {
  width: 100%;
  max-width: calc(var(--max-width) + 48px);
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 3;
  flex-grow: 1;
}

.franchise-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.franchise-form-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.35;
  margin-top: 0;
  margin-bottom: 24px;
}

.franchise-form-card .highlight-pink {
  color: var(--color-coral);
}

.banner-franchise-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.banner-form-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-navy);
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  box-sizing: border-box;
}

.banner-form-input:focus {
  border-color: var(--color-coral);
  box-shadow: 0 0 0 3px rgba(229, 76, 129, 0.1);
}

.form-row-split {
  display: flex;
  gap: 16px;
}

.banner-form-submit {
  width: 100%;
  height: 50px;
  background-color: var(--color-coral);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
}

.banner-form-submit:hover {
  background-color: #d13f70;
  box-shadow: 0 6px 20px rgba(229, 76, 129, 0.3);
  transform: translateY(-1px);
}

/* Responsive banner styles */
@media (max-width: 992px) {
  .franchise-hero-banner {
    background-position: 15% center;
    padding: 60px 0;
  }
  .banner-overlay {
    background: rgba(255, 255, 255, 0.7);
  }
  .banner-container {
    justify-content: center;
    padding: 30px 20px 60px;
  }
  .franchise-form-card {
    max-width: 440px;
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .franchise-hero-banner {
    background-position: center center;
    min-height: auto;
  }
  .banner-overlay {
    background: rgba(255, 255, 255, 0.85);
  }
  .banner-container {
    padding: 20px 16px 40px;
  }
  .franchise-form-card {
    padding: 24px 20px;
  }
  .franchise-form-card h3 {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .form-row-split {
    flex-direction: column;
    gap: 16px;
  }
}

/* ==========================================
   SUPPORT SECTION CARDS
   ========================================== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: calc(var(--max-width) + 48px);
  margin: 0 auto;
}

.support-card {
  background-color: #f9fbfd;
  border-radius: 20px;
  padding: 30px;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 32, 77, 0.02);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 32, 77, 0.06);
}

.support-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-card-icon {
  font-size: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
}

.support-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

/* Color Varieties for Support Cards */
.support-card.sc-orange {
  border-color: #ff7c08;
}
.support-card.sc-orange .support-card-icon i {
  color: #ff7c08;
}

.support-card.sc-green {
  border-color: #10b981;
}
.support-card.sc-green .support-card-icon i {
  color: #10b981;
}

.support-card.sc-purple {
  border-color: #7b3186;
}
.support-card.sc-purple .support-card-icon i {
  color: #7b3186;
}

.support-card.sc-red {
  border-color: #ff6262;
}
.support-card.sc-red .support-card-icon i {
  color: #ff6262;
}

.support-card.sc-yellow {
  border-color: #f59e0b;
}
.support-card.sc-yellow .support-card-icon i {
  color: #f59e0b;
}

.support-card.sc-teal {
  border-color: #0ea5e9;
}
.support-card.sc-teal .support-card-icon i {
  color: #0ea5e9;
}

/* Responsive Support Cards */
@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================
   FAQ ACCORDION STYLES
   ========================================== */
.franchise-faq-section {
  padding: 90px 24px;
  background-color: var(--color-white);
  position: relative;
}

.faq-title-area {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title-area span {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-coral);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 8px;
}

.faq-title-area h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 38px);
  color: var(--color-navy);
  font-weight: 800;
  margin: 0;
  line-height: 1.25;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion-item {
  background-color: var(--color-white);
  border: 2px solid #ff7c08;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion-btn {
  width: 100%;
  padding: 22px 30px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  margin: 0;
}

.faq-accordion-btn span.faq-toggle-icon {
  color: #ff7c08;
  font-size: 20px;
  font-weight: 600;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 30px;
}

.faq-accordion-answer-content {
  padding-bottom: 24px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
}

/* Active state for accordion */
.faq-accordion-item.active .faq-accordion-answer {
  max-height: 1000px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* ==========================================
   GLOBAL PAGE PRELOADER
   ========================================== */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: #ffffff;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.5s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  animation: loaderPulse 1.5s ease-in-out infinite alternate;
}

@keyframes loaderPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.loader-spinner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spinner-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  animation: loaderBounce 1.2s infinite ease-in-out;
}

.spinner-dot.dot-1 {
  background-color: var(--color-pink);
  animation-delay: -0.36s;
}
.spinner-dot.dot-2 {
  background-color: var(--color-yellow);
  animation-delay: -0.24s;
}
.spinner-dot.dot-3 {
  background-color: var(--color-green);
  animation-delay: -0.12s;
}
.spinner-dot.dot-4 {
  background-color: var(--color-cyan);
  animation-delay: 0s;
}

@keyframes loaderBounce {
  0%,
  80%,
  100% {
    transform: scale(0.4);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/* Ensure Program Detail Page Images Never Crop Kids' Heads/Faces */
.program-img-wrapper img {
  object-fit: cover !important;
  object-position: top center !important;
}
