:root {
  --yellow: #fff167;
  --pink: #e5007f;
  --deep-purple: #2b116f;
  --dark-purple: #260c61;
  --violet: #3b00b9;
  --magenta-text: #ff1499;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}
button:focus{outline: none;}
html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  overflow-x: hidden;
  /* background: var(--deep-purple); */
  /* color: var(--white); */
  font-family: "Quicksand", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bakbak One", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  transition: all 0.2s ease;
}

.program-anchor-target,
.program-scroll-anchor {
  scroll-margin-top: 115px;
}

.program-scroll-anchor {
  display: block;
  width: 0;
  height: 0;
}

/* Gallery page */
.moments-gallery {
  padding: 68px 0 78px;
  background: #ffffff;
}

.moments-gallery-inner {
  max-width: 1060px;
}

.moments-gallery-heading h2 {
  margin: 0 0 12px;
  color: var(--violet);
  font-size: 37px;
  line-height: 1.2;
}

.moments-gallery-heading p {
  margin: 0;
  color: #4c4a4e;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.moments-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-width: 900px;
  margin: 38px auto 24px;
}

.moments-filter {
  flex: 0 1 106px;
  min-height: 48px;
  border: 0;
  border-radius: 0;
  background: #4b00a8;
  color: #fff167;
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.moments-filter:hover,
.moments-filter:focus-visible {
  background: #6500c2;
}

.moments-filter.is-active {
  background: #d70808;
}

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

.moments-gallery-item {
  margin: 0;
  overflow: hidden;
  background: #f1eef6;
  cursor: pointer;
  border-radius: 4px;
}

.moments-gallery-item:focus-visible {
  outline: 4px solid var(--pink);
  outline-offset: 3px;
}

.moments-gallery-item[hidden] {
  display: none;
}

.moments-event-cover {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.moments-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.moments-gallery-item:hover img {
  transform: scale(1.035);
}

.moments-gallery-item h3 {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 12px;
  background: #1d4f8c;
  color: #ffffff;
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.moments-gallery-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.moments-gallery-more {
  min-width: 155px;
  min-height: 48px;
  padding: 10px 26px;
  border: 0;
  border-radius: 4px;
  background: var(--violet);
  color: var(--yellow);
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color .2s ease, transform .2s ease;
}

.moments-gallery-more:hover,
.moments-gallery-more:focus-visible {
  background: var(--pink);
  color: #ffffff;
  transform: translateY(-2px);
}

.moments-gallery-more[hidden] {
  display: none;
}

.video-gallery-section {
  padding: 68px 0 82px;
  background: #ffffff;
}

.video-gallery-inner {
  max-width: 1120px;
}

.video-gallery-heading h2 {
  margin: 0 0 18px;
  color: var(--violet);
  font-size: 39px;
  line-height: 1.2;
}

.video-gallery-heading p {
  margin: 0;
  color: #343238;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.video-gallery-player {
  aspect-ratio: 22 / 9;
  margin-top: 48px;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
}

.video-gallery-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.video-gallery-thumb {
  position: relative;
  aspect-ratio: 12 / 7;
  padding: 0;
  overflow: hidden;
  border: 4px solid transparent;
  border-radius: 16px;
  background: #ffffff;
  cursor: pointer;
}

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

.video-gallery-thumb:hover img {
  transform: scale(1.04);
}

.video-gallery-thumb.is-active {
  border-color: var(--pink);
}

.video-gallery-thumb.is-active img {
  filter: brightness(.72);
}

.video-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--pink);
  font-size: 17px;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 18px rgba(0, 0, 0, .2);
}

.gallery-celebration-section {
  padding: 26px 0 82px;
  background: #ffffff;
}

.gallery-celebration-box {
  max-width: 1080px;
  padding: 58px 70px 66px;
  border-radius: 10px;
  background: #2d0b7d;
  color: #ffffff;
}

.gallery-celebration-box h2 {
  margin: 0 0 22px;
  color: var(--yellow);
  font-size: 35px;
  line-height: 1.2;
}

.gallery-celebration-box > p {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.gallery-instagram-title {
  --follow-x: 0px;
  --follow-y: 0px;
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  margin-top: 42px;
  padding: 0 22px;
  border-radius: 28px;
  background: linear-gradient(105deg, #8f2bb9 0%, #df256f 48%, #ff9138 100%);
  color: #ffffff;
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transform: translate(var(--follow-x), var(--follow-y));
  box-shadow: 0 8px 20px rgba(39, 8, 105, .2);
  transition: filter .2s ease, box-shadow .2s ease, transform .16s ease-out;
  will-change: transform;
}

.gallery-instagram-title > span {
  position: relative;
  z-index: 1;
}

.gallery-instagram-title:hover,
.gallery-instagram-title:focus-visible {
  color: #ffffff;
  filter: brightness(1.08);
  box-shadow: 0 11px 24px rgba(39, 8, 105, .28);
  text-decoration: none;
}

.instagram-follow-icon {
  display: flex;
  min-height: 27px;
  align-items: center;
  margin: 0 12px;
  padding: 0 11px;
  border-right: 1px solid rgba(255, 255, 255, .8);
  border-left: 1px solid rgba(255, 255, 255, .8);
}

.gallery-instagram-title .instagram-follow-icon i {
  margin: 0;
  font-size: 23px;
}

.instagram-follow-word {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .gallery-instagram-title {
    transform: none;
  }
}

.gallery-instagram-previews {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 38px;
}

.gallery-instagram-previews a {
  aspect-ratio: 11 / 9;
  display: block;
  overflow: hidden;
  border: 4px solid #ffffff;
  border-radius: 17px;
  background: #ffffff;
}

.gallery-instagram-previews img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .3s ease;
}

.gallery-instagram-previews a:hover img {
  transform: scale(1.06);
}

.activity-gallery-section {
  padding: 70px 0 84px;
  background: #ffffff;
}

.activity-gallery-inner {
  max-width: 1000px;
}

.activity-gallery-heading h2 {
  margin: 0 0 16px;
  color: var(--violet);
  font-size: 38px;
  line-height: 1.2;
}

.activity-gallery-heading p {
  margin: 0;
  color: #4c4a4e;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.activity-gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 108px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.activity-gallery-card {
  grid-row: span 2;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #efedf2;
}

.activity-gallery-card.activity-card-tall {
  grid-row: span 3;
}

.activity-gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.activity-gallery-card:hover img {
  transform: scale(1.035);
}

.container {
  max-width: 1390px;
}

.site-header {
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
  transition: all 0.3s ease;
}

.top-strip {
  background: var(--yellow);
  color: var(--violet);
  font-weight: 700;
}

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

.top-strip .header-container {
  min-height: 62px;
  gap: 24px;
}

.follow-wrap,
.contact-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
}

.follow-wrap a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--violet);
  color: var(--yellow);
  font-size: 12px;
  text-decoration: none;
}

.school-quote {
  margin: 0;
  color: var(--violet);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.contact-wrap a {
  color: var(--violet);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.contact-wrap i {
  margin-right: 6px;
}

.main-nav {
  position: relative;
  min-height: 115px;
  overflow: hidden;
  background: transparent;
  padding: 16px 0 28px;
}

.main-nav::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image: url("../images/navbar-shape.svg");
  background-repeat: repeat-x;
  background-position: 0 100%;
  background-size: 1920px 125px;
  animation: navbarWave 18s linear infinite;
  pointer-events: none;
  will-change: background-position;
}

.main-nav > .container {
  position: relative;
  z-index: 1;
}

@keyframes navbarWave {
  from {
    background-position: 0 100%;
  }

  to {
    background-position: -1920px 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav::before {
    animation: none;
  }
}

.navbar-brand {
  width: 370px;
  max-width: 42vw;
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  display: block;
 width: 100%;
  height: auto;
}

.navbar-nav {
  gap: 17px;
}

.main-nav .nav-link {
  position: relative;
  padding: 8px 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  transition: color .25s ease, transform .25s ease, text-shadow .25s ease;
}

.main-nav .nav-link::before {
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 0;
  height: 3px;
  border-radius: 3px;
  content: "";
  background: var(--yellow);
  transform: translateX(-50%);
  transition: width .28s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus,
.main-nav .active .nav-link {
  color: var(--white);
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus-visible {
  color: var(--yellow);
  text-shadow: 0 4px 12px rgba(31, 8, 73, .28);
  transform: translateY(-2px);
}

.main-nav .nav-link:hover::before,
.main-nav .nav-link:focus-visible::before {
  width: 100%;
}

.main-nav .active .nav-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--yellow);
}

.custom-toggler,
.menu-round {
  border: 0;
  padding: 0;
  background: var(--white);
}

.custom-toggler {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.custom-toggler span,
.menu-round span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  border-radius: 10px;
  background: var(--pink);
}

.menu-round {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
}

.menu-round span {
  margin: 3px auto;
}

.site-overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(520px 320px at 86% 20%, rgba(255, 241, 103, 0.16), transparent 70%),
    radial-gradient(520px 360px at 12% 80%, rgba(59, 0, 185, 0.5), transparent 72%),
    var(--pink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.35s ease;
}

.site-overlay-menu::before,
.site-overlay-menu::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: rgba(43, 17, 111, 0.22);
}

.site-overlay-menu::before {
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
}

.site-overlay-menu::after {
  bottom: -180px;
  left: -160px;
  width: 520px;
  height: 520px;
}

body.menu-open .site-overlay-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.overlay-inner {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 40px));
  text-align: center;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.45s ease 0.25s, opacity 0.45s ease 0.25s;
}

body.menu-open .overlay-inner {
  opacity: 1;
  transform: translateY(0);
}

.overlay-brand {
  display: flex;
  justify-content: start;
  margin-bottom: 34px;
}

.overlay-brand img {
  width: min(470px, 82vw);
  height: auto;
}

.overlay-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.overlay-nav a {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(43, 17, 111, 0.24);
  color: var(--white);
  font-family: "Bakbak One", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  text-decoration: none;
}

.overlay-nav a:hover,
.overlay-nav a:focus {
  border-color: var(--yellow);
  background: var(--deep-purple);
  color: var(--yellow);
  transform: translateY(-4px);
}

.overlay-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  margin-top: 34px;
}

.overlay-contact a {
  color: var(--yellow);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.overlay-contact i {
  margin-right: 8px;
}

.overlay-close {
  position: absolute;
  top: 36px;
  right: 42px;
  z-index: 3;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
}

.overlay-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 3px;
  border-radius: 8px;
  background: var(--pink);
}

.overlay-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.overlay-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 177px);
  overflow: hidden;
  padding: 246px 0 150px;
  background: var(--white) url("../images/hero-background.png") center bottom / cover no-repeat;
}

.hero-section::before {
  display: none;
}

.hero-section::after {
  display: none;
}

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

.hero-copy {
  position: relative;
  padding-top: 6px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  border-radius: 12px;
  padding: 13px 20px;
  background: var(--violet);
  color: var(--yellow);
  font-size: 29px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(50px, 4.6vw, 76px);
  line-height: 1.08;
}

.hero-copy h1 span {
  color: #ffdc32;
}

.hero-copy h1 strong {
  color: var(--magenta-text);
  font-weight: inherit;
}

.title-line {
  width: 430px;
  max-width: 100%;
  height: 3px;
  margin: 34px 0 28px;
  background: var(--yellow);
}

.hero-copy p {
  max-width: 790px;
  margin: 0 0 37px;
  color: var(--white);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.45;
}

.start-btn {
  display: inline-flex;
  min-width: 289px;
  height: 60px;
  align-items: center;
  justify-content: space-between;
  border-radius: 13px;
  padding: 0 10px 0 20px;
  background: var(--pink);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.start-btn:hover,
.start-btn:focus {
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

.start-btn span {
  display: inline-flex;
  width: 68px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--white);
  color: var(--violet);
}

.start-btn i {
  transform: rotate(18deg);
}

.hero-art-wrap {
  position: relative;
  min-height: 625px;
}

.floating-social {
  position: fixed;
  top: 50%;
  right: 35px;
  z-index: 20;
  display: grid;
  gap: 12px;
  border-radius: 34px;
  padding: 10px 8px;
  background: #ffed9a;
  transform: translateY(-10%);
}

.floating-social a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 3px solid #181818;
  border-radius: 50%;
  color: var(--white);
  font-size: 25px;
  text-decoration: none;
}

.floating-social .facebook {
  background: #2d6ec9;
}

.floating-social .whatsapp {
  background: #26c55f;
}

.floating-social .youtube {
  background: #ff3535;
}

.floating-social .instagram {
  background: linear-gradient(135deg, #7738ff, #ff2c97, #ffd43b);
}

.welcome-section {
  position: relative;
  overflow: hidden;
  min-height: 676px;
  padding: 122px 0 52px;
  background: #ffffff;
  color: #333333;
}

.welcome-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.035;
  background-image:
    url("data:image/svg+xml,%3Csvg width='330' height='245' viewBox='0 0 330 245' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%233b00b9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M31 50c22-34 69-12 56 23-8 22-34 23-47 9-11-12-14-24-9-32z'/%3E%3Cpath d='M132 30c25 5 31 31 10 45-14 9-23 17-23 39M120 138h.5'/%3E%3Cpath d='M236 35h50v34h-50zM244 44h34M244 56h22'/%3E%3Cpath d='M60 178c18-33 59-25 70 3 8 21-7 39-31 35-18-3-36-18-39-38z'/%3E%3Cpath d='M246 174l28-70 17 7-29 70-20 16z'/%3E%3Cpath d='M168 188l38 19M187 178l1 43'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center top;
  background-size: 430px 320px;
}

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

.welcome-copy h2 {
  margin: 0 0 28px;
  color: var(--violet);
  font-size: 45px;
  line-height: 1.33;
}

.welcome-copy p {
  max-width: 610px;
  margin: 0 0 14px;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}

.welcome-clock {
  position: absolute;
    top: 122px;
    left: 94px;
    z-index: 2;
    width: 99px;
}

.welcome-hourglass {
  position: absolute;
  top: 22px;
  right: 115px;
  z-index: 2;
  width: 90px;
}

.welcome-pencil {
  position: absolute;
  right: 44px;
  bottom: 104px;
  z-index: 2;
  width: 95px;
}

.welcome-star {
  position: absolute;
  top: 398px;
  left: 0;
  z-index: 2;
  width: 64px;
}

.welcome-visual {
  position: relative;
  min-height: 490px;
}

.welcome-kids {
  position: absolute;
  top: -28px;
  right: -75px;
  z-index: 2;
  width: 650px;
  max-width: none;
}

.explore-btn {
  position: absolute;
  right: 145px;
  bottom: 18px;
  z-index: 4;
  display: inline-flex;
  min-width: 270px;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  border-radius: 13px;
  padding: 0 10px 0 22px;
  background: var(--pink);
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.explore-btn:hover,
.explore-btn:focus {
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

.explore-btn span {
  display: inline-flex;
  width: 68px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--white);
  color: var(--violet);
}

.explore-btn i {
  transform: rotate(18deg);
}

.why-admission-section {
  position: relative;
  overflow: hidden;
  min-height: 1690px;
  padding: 132px 0 90px;
  background: #ffffff;
  color: #333333;
}

.why-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  background-image:
    url("data:image/svg+xml,%3Csvg width='330' height='245' viewBox='0 0 330 245' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%233b00b9' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M31 50c22-34 69-12 56 23-8 22-34 23-47 9-11-12-14-24-9-32z'/%3E%3Cpath d='M132 30c25 5 31 31 10 45-14 9-23 17-23 39M120 138h.5'/%3E%3Cpath d='M236 35h50v34h-50zM244 44h34M244 56h22'/%3E%3Cpath d='M60 178c18-33 59-25 70 3 8 21-7 39-31 35-18-3-36-18-39-38z'/%3E%3Cpath d='M246 174l28-70 17 7-29 70-20 16z'/%3E%3Cpath d='M168 188l38 19M187 178l1 43'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center top;
  background-size: 420px 312px;
}

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

.section-title h2 {
  margin: 0;
  color: var(--pink);
  font-size: 43px;
  line-height: 1.36;
}

.why-music-note {
  position: absolute;
  top: 0;
  left: 188px;
  z-index: 1;
  width: 170px;
}

.why-slide {
  position: absolute;
  top: 610px;
  left: -120px;
  z-index: 1;
  width: 1230px;
  height: 520px;
  opacity: 0.88;
  pointer-events: none;
}

.why-slide::before,
.why-slide::after {
  position: absolute;
  content: "";
  filter: saturate(1.15);
}

/* .why-slide::before {
  top: 80px;
  left: -80px;
  width: 820px;
  background-image: url('../images/why-choose-pipe.png');
  background-size: cover;
  background-repeat: no-repeat;
  

} */
 .why-choose-pipe{
  position: absolute;
    bottom: 280px;
  left: 0px;
  height: 100vh;
 }

/* .why-slide::after {
  display: none;
  top: 20px;
  right: 70px;
  width: 260px;
  height: 720px;
  border-radius: 130px;
  background:
    linear-gradient(100deg, rgba(224, 108, 255, 0.58), rgba(114, 169, 255, 0.85) 43%, rgba(255, 255, 255, 0.42) 55%, rgba(80, 116, 224, 0.74));
  box-shadow: inset 22px 0 24px rgba(255, 255, 255, 0.22), inset -18px 0 28px rgba(66, 27, 154, 0.28);
  transform: rotate(-25deg);
} */

.why-card-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0px;
  max-width: 1360px;
  margin: 60px auto 0;
}

.why-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  padding: 58px 36px 44px;
  background: transparent;
  text-align: center;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card-shape {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape-fill {
  stroke: none;
}

.shape-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-dasharray: 10 5;
  stroke-linecap: round;
  animation: cardOutlineMove 5s linear infinite;
}

.why-card::after {
  position: absolute;
  top: -40%;
  left: -85%;
  z-index: 3;
  width: 55%;
  height: 180%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  opacity: 0;
  transform: rotate(18deg);
  pointer-events: none;
}

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-7px);
  box-shadow: 0 20px 42px rgba(43, 17, 111, 0.12);
}

.why-card:hover::after,
.why-card:focus-within::after {
  animation: cardFlashCross 0.85s ease forwards;
}

.why-card img {
  position: relative;
  z-index: 2;
  width: 104px;
  height: 104px;
  margin-bottom: 24px;
  border-radius: 50%;
}

.why-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.why-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

@keyframes cardOutlineMove {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -60;
  }
}

@keyframes cardFlashCross {
  0% {
    left: -85%;
    opacity: 0;
  }

  22% {
    opacity: 0.85;
  }

  100% {
    left: 130%;
    opacity: 0;
  }
}

.card-purple {
  color: #8b49ff;
}

.card-purple .shape-fill {
  fill: rgba(204, 183, 255, 0.72);
}

.card-purple h3 {
  color: #7e18d8;
}

.card-cream {
  color: #ffbf8e;
}

.card-cream .shape-fill {
  fill: rgba(255, 234, 196, 0.78);
}

.card-cream h3 {
  color: #ff7900;
}

.card-pink {
  color: #ff8df5;
}

.card-pink .shape-fill {
  fill: rgba(255, 199, 247, 0.72);
}

.card-pink h3 {
  color: #8b18d8;
}

.card-mint {
  color: #49dec4;
}

.card-mint .shape-fill {
  fill: rgba(197, 247, 226, 0.78);
}

.card-mint h3 {
  color: #009b6f;
}

.admission-block {
  position: relative;
  z-index: 3;
  margin-top: 250px;
}

.admission-copy {
  padding-left: 70px;
  padding-bottom: 76px;
}

.admission-label {
  display: inline-block;
  margin-bottom: 33px;
  border-radius: 5px;
  padding: 12px 16px;
  background: #eee1ff;
  color: var(--violet);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.admission-copy h2 {
  margin: 0 0 24px;
  color: #2f2f2f;
  font-size: 43px;
  line-height: 1.34;
}

.admission-copy p {
  max-width: 600px;
  margin: 0 0 45px;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}

.admission-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  max-width: 710px;
  margin-bottom: 50px;
}

.admission-points span {
  color: var(--violet);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.admission-points i {
  margin-right: 12px;
  color: var(--pink);
}

.enroll-btn {
  display: inline-flex;
  min-width: 298px;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  border-radius: 13px;
  padding: 0 10px 0 20px;
  background: var(--pink);
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.enroll-btn:hover,
.enroll-btn:focus {
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

.enroll-btn span {
  display: inline-flex;
  width: 68px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--white);
  color: var(--violet);
}

.enroll-btn i {
  transform: rotate(18deg);
}

.admission-visual {
  position: relative;
  min-height: 620px;
}

.admission-visual img {
  position: absolute;
  right: -145px;
  bottom: -12px;
  width: 910px;
  max-width: none;
}

.programs-section {
  position: relative;
  overflow: hidden;
      padding: 139px 0 146px;
  background: white url("../images/program-background.png") center center / 100% 100% no-repeat;
  color: var(--white);
      background-size: cover;
}

.programs-container {
  position: relative;
  z-index: 3;
}

.program-title {
  max-width: 860px;
  margin: 0 auto 46px;
}

.program-title h2 {
  margin: 0 0 18px;
  color: #ffde28;
  font-size: 47px;
  line-height: 1.1;
}

.program-title p {
  margin: 0 auto;
  max-width: 800px;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 0px;
  max-width: 1360px;
  margin: 0 auto;
}

.program-card {
  position: relative;
  isolation: isolate;
  color: #333333;
}

.program-shape {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 130%;
  fill: #fffdf8;
  pointer-events: none;
}

.program-card-small {
  min-height: 598px;
  padding: 60px 44px 40px;
  text-align: center;
}

.program-card-small img {
  width: 126px;
  height: 118px;
  object-fit: contain;
  margin-bottom: 16px;
}

.program-card h3 {
  margin: 0 0 12px;
  color: var(--pink);
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.program-card h4 {
  margin: 0 0 20px;
  color: var(--violet);
  font-family: "Bakbak One", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.program-card p {
  margin: 0 0 18px;
  color: #555555;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.program-card a {
  color: var(--violet);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.program-card a i {
  margin-left: 10px;
}

.program-card-wide {
  grid-column: span 2;
  display: flex;
  min-height: 450px;
  align-items: center;
  justify-content: space-between;
  padding: 58px 74px 50px;
  margin-top: -118px;
}

.program-card-wide .wide-copy {
  max-width: 330px;
}

.program-card-wide img {
  width: 191px;
  max-height: 175px;
  object-fit: contain;
}

.program-action {
  margin-top: 25px;
}

.program-main-btn {
  display: inline-flex;
  min-width: 315px;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  border-radius: 13px;
  padding: 0 10px 0 20px;
  background: var(--pink);
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.program-main-btn:hover,
.program-main-btn:focus {
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

.program-main-btn span {
  display: inline-flex;
  width: 68px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--white);
  color: var(--violet);
}

.program-main-btn i {
  transform: rotate(18deg);
}

.program-image-mob{display:flex;align-items: center;justify-content:center}

.abacus-section {
  position: relative;
  padding: 40px 0 106px;
  background: #fdf1e4;
}

.abacus-card {
  position: relative;
  overflow: visible;
  border-radius: 40px;
  padding: 70px 60px;
  background: #ffffff;
  color: #333333;
}

.abacus-giraffe {
  position: absolute;
  bottom: -30px;
  left: -95px;
  z-index: 2;
  width: 230px;
  pointer-events: none;
}

.abacus-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  padding: 10px 18px;
  background: #eee1ff;
  color: var(--violet);
  font-size: 16px;
  font-weight: 700;
}

.abacus-badge-sparkle {
  position: absolute;
  top: -14px;
  right: -20px;
}

.abacus-copy h2 {
  margin: 0 0 18px;
  font-size: 38px;
  line-height: 1.28;
}

.abacus-copy h2 .text-orange {
  color: #ff7900;
}

.abacus-copy h2 .text-purple {
  color: var(--dark-purple);
}

.abacus-tagline {
  max-width: 460px;
  margin: 0 0 22px;
  color: var(--violet);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
}

.abacus-divider {
  max-width: 460px;
  height: 1px;
  margin: 0 0 22px;
  background: rgba(59, 0, 185, 0.18);
}

.abacus-desc {
  max-width: 500px;
  margin: 0 0 36px;
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.abacus-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abacus-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.abacus-feature-icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
}

.icon-orange {
  background: #ffe2cf;
  color: #ff7900;
}

.icon-green {
  background: #d7f7ec;
  color: #17a97a;
}

.icon-blue {
  background: #dbe6ff;
  color: #3b62d8;
}

.abacus-feature-copy h3 {
  margin: 0 0 4px;
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.abacus-feature:nth-child(1) .abacus-feature-copy h3 {
  color: #ff7900;
}

.abacus-feature:nth-child(2) .abacus-feature-copy h3 {
  color: #17a97a;
}

.abacus-feature:nth-child(3) .abacus-feature-copy h3 {
  color: #3b62d8;
}

.abacus-feature-copy p {
  margin: 0;
  color: #555555;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.abacus-visual {
  position: relative;
  min-height: 480px;
}

.abacus-blob {
  position: absolute;
  top: 8%;
  right: 6%;
  width: 68%;
  height: 84%;
  
}

.abacus-balloon {
  position: absolute;
  top: -36px;
  right: 6%;
  z-index: 1;
  width: 110px;
}

.abacus-globe {
  position: absolute;
  top: 14%;
  left: 8%;
  z-index: 2;
  width: 66px;
}

.abacus-hourglass {
  position: absolute;
  top: 46%;
  right: 4%;
  z-index: 2;
  width: 46px;
}

.abacus-pencil {
  position: absolute;
  right: 10%;
  bottom: 14%;
  z-index: 3;
  width: 40px;
}

.abacus-books {
  position: absolute;
  right: 4%;
  bottom: 4%;
  z-index: 2;
  width: 150px;
}

.abacus-boy {
  position: relative;
  z-index: 3;
  display: block;
  width: 92%;
  margin: 0 auto;
}

.abacus-callout {
  position: absolute;
  left: 0;
  bottom: 6%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  padding: 14px 20px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(43, 17, 111, 0.14);
}

.abacus-callout img {
  width: 40px;
  height: 40px;
}

.abacus-callout span {
  color: var(--violet);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.program-grid-mobile{display:none}
.abacus-feature-line{width:2px;height:50px;background-color:#3b62d8;opacity:.4;}
.improves-focus-line{width:2px;height:50px;background-color:#ff7900;opacity:.4;}
.boosts-memory-line{width:2px;height:50px;background-color:#17a97a;opacity:.4;}
.abacus-section{position:relative;}
.abacus-giraffe-float{position:absolute;bottom:0px;left:-70px;z-index:2;
      width: 330px;}
.abacus-badge{position:relative;}
.jp-quotes{position:absolute;top:-30px;right:-30px;height:40px;width:40px;}
.home_gall_bg{background-image: url("../images/home-gall-bg.jpg");background-size: cover;
  background-position: center center;background-repeat: no-repeat;
  position: relative;}
.home_gall_ttle_bg{position: relative}
.home_gall_ttle{position: absolute;top: 50%;left: 50%;
                transform: translate(-50%, -50%);background-color: white;border:solid 1px pink;
                border-radius: 10px;padding: 10px 20px;box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
              }
.home_gall_ttle label{color:#400c92;text-align: center;display: block;
                      font-weight: 600;}
.home_gall_ttle h2{color:#e10688;text-align: center;}
.kids-activities-gallery-home{width:100%;height:auto}
.home_gall__paper_plane{position: absolute;top: 10px;left: 10px;z-index:9}

/* ========= */
body.lightbox-open {
  overflow: hidden;
}

.gallery-section {
  position: relative;
  min-height: 0;
  aspect-ratio: 1920 / 1335;
  overflow: hidden;
  background: #fff7bf;
}

.home-activities-gallery { padding: 38px 0 52px; background: #fffdf8; }
.home-activities-gallery-inner { position: relative; max-width: 1040px; }
.home-gallery-collage { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); grid-template-rows: repeat(3, 145px); gap: 12px; }
.home-gallery-photo { margin: 0; overflow: hidden; border: 5px solid #ff68a2; border-radius: 26px; background: #f5eef3; cursor: zoom-in; }
.home-gallery-photo:focus-visible { outline: 4px solid var(--violet); outline-offset: 3px; }
.home-gallery-photo img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.home-gallery-photo:hover img { transform: scale(1.055); }
.home-gallery-photo-1 { grid-column: 1; grid-row: 1; }
.home-gallery-photo-2 { grid-column: 2; grid-row: 1 / span 2; }
.home-gallery-photo-3 { grid-column: 3; grid-row: 1; }
.home-gallery-photo-4 { grid-column: 4; grid-row: 1; }
.home-gallery-photo-5 { grid-column: 5; grid-row: 1 / span 2; }
.home-gallery-photo-6 { grid-column: 1; grid-row: 2 / span 2; }
.home-gallery-photo-7 { grid-column: 2; grid-row: 3; }
.home-gallery-photo-8 { grid-column: 3; grid-row: 2 / span 2; }
.home-gallery-photo-9 { grid-column: 4; grid-row: 2 / span 2; }
.home-gallery-photo-10 { grid-column: 5; grid-row: 3; }
.home-gallery-heading { position: absolute; top: 31%; left: 50%; z-index: 3; min-width: 350px; padding: 16px 22px; border-radius: 7px; background: #fff; box-shadow: 0 7px 18px rgba(43,17,111,.2); text-align: center; transform: translateX(-50%); }
.home-gallery-heading span { color: var(--violet); font-size: 15px; font-weight: 800; }
.home-gallery-heading h2 { margin: 4px 0 0; color: var(--pink); font-size: 30px; line-height: 1.1; }
.home-gallery-action { display: flex; justify-content: center; margin-top: 42px; }
.home-gallery-action a { display: inline-flex; min-height: 50px; align-items: center; gap: 15px; padding: 8px 10px 8px 22px; border-radius: 8px; background: var(--pink); color: #fff; font-size: 16px; font-weight: 800; text-decoration: none; box-shadow: 0 7px 17px rgba(229,0,127,.22); }
.home-gallery-action a:hover { background: var(--violet); color: #fff; text-decoration: none; transform: translateY(-2px); }
.home-gallery-action i { display: inline-flex; width: 40px; height: 34px; align-items: center; justify-content: center; border-radius: 7px; background: #fff; color: var(--violet); }

.gallery-scene {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-scene img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.gallery-accessible {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.gallery-cta {
  position: absolute;
  z-index: 3;
  display: block;
  border-radius: 14px;
}

.gallery-cta-desktop {
  left: 48.45%;
  top: 63.55%;
  width: 14.75%;
  height: 4.7%;
}

.gallery-cta-mobile,
.gallery-mobile-arrow {
  display: none;
}

.gallery-hotspot {
  position: absolute;
  z-index: 4;
  display: block;
  border: 0;
  padding: 0;
  border-radius: 28px;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-hotspot:focus,
.gallery-mobile-slide:focus {
 
  outline-offset: 4px;
}

.gallery-hotspot::before {
  position: absolute;
  inset: 0;
  content: "";
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.25s ease, transform 0.45s ease;
}

/* .gallery-hotspot:hover::before,
.gallery-hotspot:focus::before {
  opacity: 1;
  transform: scale(1.1);
} */



.gallery-shot-1 {
  left: 19.25%;
  top: 16.5%;
  width: 13.1%;
  height: 13.6%;
}

.gallery-shot-1::before {
  background-image: url("../images/gallery-01.png");
}

.gallery-shot-2 {
  left: 33.4%;
  top: 14.25%;
  width: 12.1%;
  height: 28.8%;
}

.gallery-shot-2::before {
  background-image: url("../images/gallery-02.png");
}

.gallery-shot-3 {
  left: 46.55%;
  top: 14.25%;
  width: 9.5%;
  height: 16.3%;
}

.gallery-shot-3::before {
  background-image: url("../images/gallery-03.png");
}

.gallery-shot-4 {
  left: 57.2%;
  top: 15.85%;
  width: 12%;
  height: 12.7%;
}

.gallery-shot-4::before {
  background-image: url("../images/gallery-04.png");
}

.gallery-shot-5 {
  left: 69.65%;
  top: 15.9%;
  width: 11.5%;
  height: 25.1%;
}

.gallery-shot-5::before {
  background-image: url("../images/gallery-05.png");
}

.gallery-shot-6 {
  left: 19.55%;
  top: 31.9%;
  width: 12.2%;
  height: 24%;
}

.gallery-shot-6::before {
  background-image: url("../images/gallery-06.png");
}

.gallery-shot-7 {
  left: 32%;
  top: 45.6%;
  width: 13.6%;
  height: 13.4%;
}

.gallery-shot-7::before {
  background-image: url("../images/gallery-07.png");
}

.gallery-shot-8 {
  left: 45.85%;
  top: 41.2%;
  width: 10.7%;
  height: 15.9%;
}

.gallery-shot-8::before {
  background-image: url("../images/gallery-08.png");
}

.gallery-shot-9 {
  left: 57.1%;
  top: 31.4%;
  width: 12.2%;
  height: 24.3%;
}

.gallery-shot-9::before {
  background-image: url("../images/gallery-09.png");
}

.gallery-shot-10 {
  left: 68.9%;
  top: 43.7%;
  width: 12.6%;
  height: 12.5%;
}

.gallery-shot-10::before {
  background-image: url("../images/gallery-10.png");
}

.gallery-mobile-slide {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 92px;
  background: rgba(43, 17, 111, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox figure {
  max-width: min(980px, 86vw);
  max-height: 82vh;
  margin: 0;
  border: 8px solid var(--pink);
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.gallery-lightbox img {
  display: block;
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
}

.gallery-lightbox figcaption {
  padding: 12px 18px;
  background: #ffffff;
  color: var(--deep-purple);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.gallery-lightbox-close,
.gallery-lightbox-arrow {
  position: absolute;
  z-index: 2;
  border: 0;
  color: var(--white);
}

.gallery-lightbox-close {
  top: 28px;
  right: 34px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--pink);
  font-size: 38px;
  line-height: 1;
}

.gallery-lightbox-arrow {
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--pink);
  font-size: 22px;
  transform: translateY(-50%);
}

.gallery-lightbox-prev {
  left: 28px;
}

.gallery-lightbox-next {
  right: 28px;
}



.testimonials-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #2f2f35;
  min-height: 908px;
  padding: 0px 0 64px;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 300px;
  height: 490px;
  background: #fffdf2;
  z-index: 0;
}

.testimonials-head,
.testimonials-band,
.testimonial-mobile-button {
  position: relative;
  z-index: 2;
}

.testimonials-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
      margin-top: 20px;
}

.testimonials-title {
  padding-left: 18px;
  padding-top: 70px;
}

.testimonials-title span {
  display: block;
  color: #2f00ad;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
}

.testimonials-title h2 {
  color: #ffb400;
  font-size: 46px;
  line-height: 1.05;
  margin: 0;
}

.testimonials-google {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 20px;
}

.testimonials-google img {
    width: auto;
    height: auto;
    display: block;
    margin-bottom: 8px;
    max-width: 100%;
}

.testimonial-review-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 330px;
  height: 61px;
  padding: 0 8px 0 24px;
  border-radius: 14px;
  background: #e5007f;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
}

.testimonial-review-btn:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

.testimonial-review-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 50px;
  border-radius: 14px;
  background: #ffffff;
  color: #3b00a8;
  font-size: 28px;
}

.testimonials-band {
  margin-top: 72px;
}

.testimonials-layout {
  max-width: 1390px;
  position: relative;
}

.testimonials-window {
  overflow: hidden;
  padding: 10px 0 8px;
}

.testimonials-track {
  display: flex;
  gap: 68px;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 136px) / 3);
  min-width: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial-bubble {
  position: relative;
      min-height: 310px;
  padding: 70px 32px 34px 32px;
  background: #ffe2a4;
  border-radius: 42px 28px 45px 28px;
  transform: rotate(-2.3deg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

.testimonial-bubble::after {
  content: "";
  position: absolute;
  left: 72px;
  bottom: -34px;
  width: 0;
  height: 0;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-top: 42px solid #ffe2a4;
}

.testimonial-bubble p {
  margin: 0;
  color: #2f2f35;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  transform: rotate(2.3deg);
}

.testimonial-quote {
  position: absolute;
  top: 7px;
  left: 19px;
  color: #3300a4;
  font-family: "Bakbak One", Arial, sans-serif;
  font-size: 110px;
  line-height: 1;
  transform: rotate(2.3deg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 55px;
  padding-left: 7px;
}

.testimonial-author img {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.testimonial-author h3 {
  color: #2f00ad;
  font-size: 31px;
  line-height: 1;
  margin: 0 0 10px;
}

.testimonial-author p {
  color: #333333;
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}

.testimonial-arrow {
  position: absolute;
  left: 50%;
  bottom:-124px;
  z-index: 4;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: #fff167;
  color: #ff4aa2;
  font-size: 29px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.testimonial-arrow:hover {
  transform: translateY(-2px);
}

.testimonial-prev {
  transform: translateX(-66px);
}

.testimonial-next {
  transform: translateX(14px);
}

.testimonial-prev:hover {
  transform: translateX(-66px) translateY(-2px);
}

.testimonial-next:hover {
  transform: translateX(14px) translateY(-2px);
}

.testimonial-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-pencil-cup {
  width: 125px;
  left: 145px;
  top: 205px;
}

.testimonial-paperclips {
  width: 170px;
  right: 45px;
  top: 270px;
}

.testimonial-books {
  width: 185px;
  right: 28px;
  top: 505px;
}

.testimonial-mobile-button {
  display: none;
}
.faq-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #2f2f35;
  padding: 84px 0 110px;
}

.faq-container {
  max-width: 1500px;
}

.faq-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 328px;
  height: 62px;
  margin-bottom: 44px;
  border-radius: 13px;
  background: #dd1b7d;
  color: #ffffff;
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.faq-heading h2 {
  margin: 0 0 22px;
  color: #7d55d8;
  font-size: 47px;
  line-height: 1.08;
}

.faq-heading h2 strong {
  color: #ff65a6;
  font-weight: inherit;
}

.faq-heading p {
  margin: 0;
  color: #2f2f35;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
}

.faq-heading p em {
  color: #3300a4;
  font-style: normal;
}

.faq-main-row {
  margin-top: 62px;
}

.faq-visual-col {
  text-align: center;
}

.faq-kids-img {
  width: 625px;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.faq-accordion-col {
  padding-left: 26px;
}

.faq-accordion {
  max-width: 735px;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 15px;
  border: 2px solid;
  border-radius: 14px;
  background: #ffffff;
}

.faq-question {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 0;
  background: transparent;
  padding: 21px 30px 20px 36px;
  color: #2f2f35;
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.faq-question:focus {
  outline: none;
}

.faq-question i {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 21px;
}

.faq-answer {
  padding: 0 96px 25px 36px;
  color: #454545;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.faq-item-one {
  border-color: #ffc516;
  background: #fff4dc;
}

.faq-item-one .faq-question i {
  background: #ffc516;
}

.faq-item-two {
  border-color: #4b00a8;
  background: #ded1ff;
}

.faq-item-two .faq-question i {
  background: #4b00a8;
}

.faq-item-three {
  border-color: #16aee8;
  background: #dff4ff;
}

.faq-item-three .faq-question i {
  background: #16aee8;
}

.faq-item-four {
  border-color: #e5007f;
  background: #ffd1e6;
}

.faq-item-four .faq-question i {
  background: #e5007f;
}

.faq-item-five {
  border-color: #00bd24;
  background: #e2ffe1;
}

.faq-item-five .faq-question i {
  background: #00bd24;
}

.faq-item-six {
  border-color: #ff8500;
  background: #fff0df;
}

.faq-item-six .faq-question i {
  background: #ff8500;
}

.faq-question[aria-expanded="true"] i::before {
  content: "\f068";
}

.faq-question[aria-expanded="false"] i::before {
  content: "\f067";
}

.faq-help-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  max-width: 1185px;
  min-height: 151px;
  margin: 94px auto 0;
  padding: 22px 48px;
  border: 3px dashed #1db4ef;
  border-radius: 14px;
  background: #e4f6ff;
}

.faq-help-box img {
  width: 100px;
  height: auto;
}

.faq-help-copy h3 {
  margin: 0 0 8px;
  color: #0b2da8;
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.1;
}

.faq-help-copy p {
  margin: 0;
  color: #202020;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.faq-help-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  min-width: 430px;
  height: 80px;
  border-radius: 40px;
  background: #082db8;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.faq-help-btn:hover {
  background: #e5007f;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

.faq-help-btn i {
  position: relative;
  z-index: 2;
  font-size: 39px;
}

.faq-help-btn::before {
  position: absolute;
  top: -45%;
  left: -85%;
  z-index: 1;
  width: 55%;
  height: 190%;
  content: "";
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.2) 35%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.2) 65%, transparent 100%);
  transform: skewX(-22deg);
  pointer-events: none;
}

.faq-help-btn:hover::before {
  animation: faqCtaFlash 0.72s ease;
}

@keyframes faqCtaFlash {
  0% {
    left: -85%;
  }

  100% {
    left: 130%;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: #2d2d34;
}

.footer-contact {
  position: relative;
  padding:  0 0;
  background: #ffffff;
}

.footer-contact-head {
  position: relative;
  z-index: 3;
}

.footer-contact-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 322px;
  height: 57px;
  margin-bottom: 24px;
  border-radius: 10px;
  background: #eee4ff;
  color: #7d55d8;
  font-size: 21px;
  font-weight: 800;
}

.footer-contact-head h2 {
  margin: 0;
  color: #082db8;
  font-size: 47px;
  line-height: 1.08;
}

.footer-contact-head h2 strong {
  color: #e5007f;
  font-weight: inherit;
}

/* .footer-space-band {
  position: absolute;
  left: 0;
  right: 0;
  top: 272px;
  height: 100%;
  background-image:url('../images/form-bg.jpg');
  background-size: cover;
  background-position: center;

} */
.footer-contact{
    background-image:url('../images/form-bg.jpg');
  background-size: cover;
  background-position: center;
}
.footer-space-band::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 115px;
  content: "";
  background:
    radial-gradient(ellipse at 8% 100%, #ffffff 0 46%, transparent 47%),
    radial-gradient(ellipse at 0% 92%, #ffffff 0 28%, transparent 29%),
    radial-gradient(ellipse at 90% 100%, #ffffff 0 45%, transparent 46%),
    radial-gradient(ellipse at 100% 94%, #ffffff 0 30%, transparent 31%);
}

.footer-form-card {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 35% 65%;
  max-width: 1165px;
  min-height: 735px;
  margin-top: 30px;
  /* overflow: hidden; */
  border: 2px solid #f66aa6;
  border-radius: 40px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(38, 12, 97, 0.18);
}

.footer-form-copy {
  position: relative;
  padding: 118px 44px 0 50px;
}

.footer-form-copy h3 {
  margin: 0 0 24px;
  color: #082db8;
  font-size: 46px;
  line-height: 0.98;
  text-transform: uppercase;
}

.footer-form-copy h3 span {
  display: block;
}

.footer-form-copy h3 {
  color: #e5007f;
}

.footer-form-copy h3 span {
  color: #082db8;
}

.footer-form-copy p {
  max-width: 285px;
  margin: 0 0 27px;
  color: #454545;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.footer-copy-line {
  width: 245px;
  height: 3px;
  background: #bdbdbd;
}

/* .footer-form-copy img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 500px;
  max-width: none;
} */

.admission-form {
  position: relative;
  padding: 98px 48px 16px 30px;
}

.admission-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 27px;
  margin: 0;
}

.admission-form .form-group {
  margin-bottom: 25px;
  max-width: none;
  padding: 0;
}

.admission-form .form-group.col-12 {
  grid-column: 1 / -1;
}

.admission-form .form-control {
  height: 72px;
  border: 2px solid #f66aa6;
  border-radius: 13px;
  padding: 0 27px;
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  box-shadow: none;
}

.admission-form select.form-control {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #4d4d4d 50%), linear-gradient(135deg, #4d4d4d 50%, transparent 50%);
  background-position: calc(100% - 33px) 32px, calc(100% - 24px) 32px;
  background-size: 10px 10px, 10px 10px;
  background-repeat: no-repeat;
}

.admission-form textarea.form-control {
  height: 178px;
  padding-top: 30px;
  resize: none;
}

.footer-consent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -4px 0 0 80px;
  color: #616161;
  font-size: 15px;
  font-weight: 700;
}

.footer-consent input {
  width: 25px;
  height: 25px;
  accent-color: #1f74c9;
}

.footer-submit-btn,
.footer-map-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border: 0;
  background: #e5007f;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.footer-submit-btn {
  position: absolute;
  right: 118px;
  bottom: -25px;
  min-width: 260px;
  height: 61px;
  padding: 0 8px 0 24px;
  border-radius: 12px;
  font-size: 22px;
}
.footer-form-copy{overflow:hidden;border-bottom-left-radius:40px;margin-left:-15px}
.footer-train-bg{display:flex;align-items:end;justify-content:end;}
.footer-form-img{display:block;}
.footer-submit-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 49px;
  border-radius: 13px;
  background: #ffffff;
  color: #3b00a8;
  font-size: 27px;
}

.footer-submit-btn i {
  transform: rotate(50deg);
}

.footer-submit-btn:hover,
.footer-submit-btn:focus,
.footer-map-btn:hover,
.footer-map-btn:focus {
  background: #ffb400;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

.footer-submit-btn::before,
.footer-map-btn::before {
  position: absolute;
  top: -45%;
  left: -85%;
  z-index: 1;
  width: 55%;
  height: 190%;
  content: "";
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.2) 35%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.2) 65%, transparent 100%);
  transform: skewX(-22deg);
}

.footer-submit-btn:hover::before,
.footer-submit-btn:focus::before,
.footer-map-btn:hover::before,
.footer-map-btn:focus::before {
  animation: footerCtaFlash 0.72s ease;
}

.footer-submit-btn > *,
.footer-map-btn > * {
  position: relative;
  z-index: 2;
}

@keyframes footerCtaFlash {
  0% { left: -85%; }
  100% { left: 130%; }
}

.footer-info {
  position: relative;
  overflow: hidden;
  margin-top: 0px;
  padding: 0px 0 185px;
  background-image: url('../images/footer-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-info-container {
  position: relative;
  z-index: 2;
  max-width: 1390px;
}

.footer-tagline {
  margin: 75px 0 72px;
  color: #e5007f;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 31% 1fr;
  gap: 75px;
}

.footer-logo {
  width: auto;
  height: auto;
  margin: 0 0 22px;
  max-width: 100%;
}

.footer-brand p {
  max-width: 390px;
  margin: 0 0 27px;
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.footer-contact-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: #333333;
  font-size: 17px;
  font-weight: 800;
}

.footer-contact-list i,
.footer-mobile-contact i {
  color: #4b00c9;
}

.footer-social span {
  display: block;
  margin-bottom: 12px;
  color: #333333;
  font-size: 15px;
  font-weight: 700;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-right: 8px;
  border-radius: 50%;
  background: #4b00c9;
  color: #ffffff;
  font-size: 23px;
  text-decoration: none;
}

.footer-accordion-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1.65fr;
  gap: 58px;
}

.footer-link-col h4 {
  margin: 0 0 26px;
  color: #4b00c9;
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.footer-link-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link-col li,
.footer-link-col p {
  margin: 0 0 14px;
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.footer-link-col a {
  color: #333333;
  text-decoration: none;
  font-size: 18px;
}

.footer-link-col li::before {
  content: "-";
  margin-right: 16px;
}
.footer-map-btn{color:white !important;}
.footer-map-btn {
  width: 270px;
  height: 60px;
  margin-top: 21px;
  padding: 0 24px;
  border-radius: 7px;
  background: #4b00c9;
  font-size: 16px;
  justify-content: center;
  gap: 18px;
}

.footer-bottom {
        font-size: 18px;
    line-height: 1.7;
  font-weight: 600;
}
.footer-bottom p {
  text-align: center;
      font-size: 18px;
    line-height: 1.7;
}
.footer-bottom p a:hover{
  text-decoration: none;
}

.footer-mobile-toggle {
  display: none;
}

.footer-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.footer-rainbow {
  left: 40px;
  top: 185px;
  width: 170px;
}

.footer-balloon {
  right: 100px;
  top: 100px;
  width: 140px;
}

.footer-treehouse {
  left: 0;
  bottom: 60px;
  width: 260px;
}

.footer-trees {
  right: 82px;
  bottom: 65px;
  width: 280px;
}

.footer-sign {
  left: 57%;
  bottom: 35px;
  width: 320px;
}

.footer-back-top {
  position: absolute;
  right: 6px;
  bottom: -110px;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 50%;
  background: #e5007f;
  color: #ffffff;
  font-size: 27px;
  box-shadow: 0 8px 18px rgba(38, 12, 97, 0.18);
}

.footer-back-top span {
  display: block;
  font-size: 10px;
  font-weight: 800;
}
.footer-train-mob{display:none}
.footer-info-container{position:relative;}
.rainbow{position:absolute;left:-190px;top:100px;}
.air-baloon{position:absolute;right:-250px;top:100px;}
.footer-bg-mob{display:none;width:100%;height:auto}
.footer-social-mob{display:none}
.footer-social-mob span{margin-top:40px} 

.back-to-top{position:fixed;bottom:50px;right:70px;z-index:9999;opacity:0;visibility:hidden;cursor:pointer;transition:opacity .3s ease,visibility .3s ease;}
.back-to-top.is-visible{opacity:1;visibility:visible;}

.footer-social-float-mob{display:none}
.footer-contact-list li a {color:rgb(55, 55, 55)}
.footer-contact-list li a:hover{text-decoration:none}
.comp_field{display:none}
.about_banner{position:relative;    padding-top: 163px;}
.banner_content{position:absolute;top:50%;left:0px;transform:translateY(-50%);width:100%;}
.banner_content div{max-width: 1300px;margin: 0 auto;padding: 0 20px}
.banner_content div h2{color:#ff0097;font-size:50px;font-weight:700;text-align:left}
.about_banner img{width:100%;height:auto} 
.bread-crumb-bg{display:flex;align-items:center;justify-content:center; margin-top:20px;gap:10px}
.bread-crumb-active{color:#ff0097 !important;font-weight:700 !important}
.bread-crumb-bg a{font-size:16px;font-weight:600;text-decoration:none}

/* Contact page information cards */
.contact-info-cards{padding:45px 0 75px;background:#fff;}
.contact-info-row{justify-content:center;align-items:flex-end;}
.contact-info-row>[class*="col-"]{padding-left:7px;padding-right:7px;}
.contact-info-card{position:relative;max-width:363px;margin:0 auto;padding-top:13px;text-align:center;}
.contact-card-mascot{position:absolute;z-index:2;top:0;left:50%;width:220px;height:185px;transform:translateX(-50%);background-image:url('../images/contact-animal-mascots.png');background-repeat:no-repeat;background-size:660px 220px;}
.contact-card-tiger{background-position:left top;}
.contact-card-crocodile{background-position:center top;}
.contact-card-bird{background-position:right top;}
.contact-card-body{position:relative;min-height:275px;padding:43px 22px 20px;border:10px solid #ffb90d;border-radius:22px 22px 28px 28px;
  background:#fff4c6;
  /* clip-path:polygon(5% 0,95% 0,100% 8%,100% 94%,92% 98%,50% 100%,8% 98%,0 94%,0 8%); */
}
.cont-loc{height: 50px;width: 50px;}
.contact-card-icon{position:absolute;z-index:3;top:-52px;left:50%;display:flex;align-items:center;justify-content:center;width:100px;height:100px;transform:translateX(-50%);border:5px solid #f0a400;border-radius:50%;background:#fff1b5;box-shadow:0 4px 6px rgba(50,50,50,.2);color:#ff8b0a;font-size:37px;}
.contact-info-card h2{margin:20px  0 9px;color:#ff6716;font-family:"Quicksand",Arial,sans-serif;font-size:24px;font-weight:800;line-height:1.25;}
.contact-info-card address,.contact-card-main-link{display:block;margin:0;color:#333;font-size:16px;font-weight:700;font-style:normal;line-height:1.35;}
.contact-info-card p{margin:8px 0 0;color:#555;font-size:14px;font-weight:500;line-height:1.35;}
.contact-card-main-link:hover{text-decoration:none;}
.contact-info-phone .contact-card-body{border-color:#62bf54;background:#e6f9df;}
.contact-info-phone .contact-card-icon{border-color:#43a73e;background:#cdf3c6;color:#199f2e;}
.contact-info-phone h2{color:#14922a;}
.contact-info-email .contact-card-body{border-color:#8761df;background:#ece5ff;}
.contact-info-email .contact-card-icon{border-color:#7454d3;background:#d8ceff;color:#6752db;}
.contact-info-email h2{color:#502e9f;}
.contact-card-email-link{font-size:18px;font-weight:600;}

.abks{background-image: url('../images/about-us-bg.jpg');  
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.about-title{font-size: 40px;font-weight:700;color:#3f3f3f;text-align:left;margin-bottom:30px;line-height:1.4}
.about-title span{color:#ff0097;}
.about-wlpbs{font-size: 18px;font-weight:500;color:#3900b8;text-align:left;line-height:1.8}
.about-desc{font-size: 18px;font-weight:500;color:#313131;text-align:left;line-height:1.8}

.trust-section {
  padding: 9px 0 15px;
  background: #fff;
}

.trust-section .doodle-bg {
  opacity: .2;
}

.trust-title {
  max-width: 700px;
  margin: 0 0 17px;
  color: #2d2c35;
  font-size: 32px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0;
}

.trust-title span {
  color: #4d23d8;
}

.stat-row {
  margin-left: -5px;
  margin-right: -5px;
}

.stat-row > [class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.stat-card {
  min-height: 160px;
  border-radius: 36px;
  padding: 16px 18px 20px;
  text-align: center;
  color: #fff;
}

.stat-yellow {
  background: #ffc20f;
}

.stat-orange {
  background: #ff7116;
}

.stat-green {
  background: #69bd62;
}

.stat-purple {
  background: #8964df;
}

.stat-number-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 140px;
  margin: 24px auto 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .38);
}

.stat-number {
  min-width: 82px;
  color: #fff;
  font-size: 68px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow:
    0 2px 0 rgba(255, 116, 0, .75),
    0 3px 5px rgba(82, 45, 145, .18);
}

.stat-green .stat-number {
  text-shadow:
    0 2px 0 rgba(10, 143, 53, .8),
    0 3px 5px rgba(16, 91, 30, .18);
}

.stat-purple .stat-number {
  text-shadow:
    0 2px 0 rgba(73, 40, 204, .85),
    0 3px 5px rgba(30, 18, 92, .18);
}

.stat-card p {
  margin: 30px 0  ;
  color: #fff;
  font-size: 26px;
  line-height: 1.08;
  font-weight: 800;
}
.abks{position:relative}
.pencil-img{position:absolute;left:-200px;top:0px;max-width:40%}
.about-start-img{position:absolute;right:40px;top:100px;max-width:40%}

.trust-section{background-size: cover;background-image: url('../images/about-us-bg.jpg');  
    background-position: center;
    background-repeat: no-repeat;    padding-bottom: 159px;
    }
.trusted-pre-school-shape{position:absolute;left:0px;top:0px;}
.doodle{position:absolute;right:-60px;top:150px;}

.founder-love-bg{background-image: url('../images/founder-love-bg.jpg');  
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position:relative;
    overflow:hidden;
    padding:36px 0 54px;
}
.founder-love-content{position:relative;z-index:2;max-width:560px;margin-left:auto;}
.founder-love-content h2{color:#ff0097;font-size:38px;font-weight:800;line-height:1.24;margin:0 0 18px;}
.founder-love-content h3{color:#3900b8;font-size:34px;font-weight:700;line-height:1.15;margin:0 0 18px;}
.founder-desc{color:#424242;font-size:17px;font-weight:500;line-height:1.58;margin:0 0 18px;}
.founder-love-content .founder-quote{color:#3900b8;font-size:17px;font-weight:800;line-height:1.55;margin-bottom:0;}
.founder-love-visual{position:relative;}
.founder-pink-shape{position:absolute;right:22px;top:-75px;width:495px;height:535px;background:#d86d75;border-radius:50% 48% 48% 49%;transform:rotate(17deg);z-index:1;}

.founder-name{font-size: 30px ; color:#3900b8 ;font-weight: 700;}

.school-advisory-bg{background-image: url('../images/school-advisory-bg.jpg');  
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding:58px 0 50px;}
.school-advisory-heading h2{color:#8062d9;font-size:38px;font-weight:800;line-height:1.18;margin:0 0 14px;}
.school-advisory-heading h2 span{color:#ff6da0;}
.school-advisory-heading p{color:#424242;font-size:16px;font-weight:500;line-height:1.75;margin:0 auto;max-width:760px;}
.advisory-card-row{margin-top:48px;}
.advisory-card{text-align:center;margin-bottom:8px;}
.advisory-card img{display:block;width:100%;max-width:270px;margin:0 auto 18px;border-radius:18px;}
.advisory-card h3{color:#3b3b3b;font-size:20px;font-weight:800;line-height:1.2;margin:0;}

.need-help-section{background:#fff;padding:24px 0 26px;}
.need-help-box{position:relative;background:#8460db;border-radius:14px;padding:68px 55px 46px;}
.need-help-label{position:absolute;left:50%;top:-24px;transform:translateX(-50%);min-width:304px;padding:13px 24px;border:1px solid #9e7fe9;border-radius:15px;background:#f2eaff;color:#8766dd;text-align:center;font-size:22px;font-weight:800;line-height:1.1;}
.need-help-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;background:#e3f6ff;border:3px dashed #10b8ff;border-radius:14px;padding:28px 39px 29px 48px;}
.need-help-copy{display:flex;align-items:center;gap:28px;}
.need-help-star{width:88px;min-width:88px;}
.need-help-copy h2{color:#07289d;font-size:31px;font-weight:800;line-height:1.1;margin:0 0 8px;}
.need-help-copy p{color:#303030;font-size:20px;font-weight:800;line-height:1.15;margin:0;}
.need-help-btn{display:inline-flex;align-items:center;justify-content:center;gap:15px;min-width:402px;padding:20px 28px;border-radius:42px;background:#092aa8;color:#fff;font-size:23px;font-weight:800;line-height:1;text-decoration:none;}
.need-help-btn:hover,.need-help-btn:focus{background:#06228e;color:#fff;text-decoration:none;}
.need-help-btn i{font-size:38px;line-height:1;}

.vision-mission-section{position:relative;padding:120px 0 120px;
  background-image: url('../images/mission-visson-bg.jpg');  
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.vision-mission-section:before{content:"";position:absolute;inset:0;background:linear-gradient(115deg,transparent 0 44%,rgba(255,255,255,.07) 44% 48%,transparent 48% 100%);}
.space-ribbon{position:absolute;left:-65px;bottom:22px;width:255px;height:60px;background:linear-gradient(90deg,#ffd23c,#fff0a6 48%,#f4b509);border-radius:70% 40% 58% 34%;transform:rotate(13deg);box-shadow:0 9px 20px rgba(255,207,40,.3);}
.space-ribbon-tail{position:absolute;left:16px;bottom:35px;width:240px;height:44px;border:28px solid #ffd32b;border-left:0;border-top-color:transparent;border-bottom-color:transparent;border-radius:50%;transform:rotate(-18deg);}
.vision-copy{margin-bottom:28px;padding-left:12px;}
.vision-copy h2{font-size:29px;font-weight:800;line-height:1.14;margin:0 0 16px;color:#fff;}
.vision-copy h2 span{color:#ffe800;}
.vision-copy p{font-size:18px;font-weight:500;line-height:1.4;margin:0;color:rgba(255,255,255,.76);}
.vision-card{display:flex;align-items:center;gap:25px;background:#fff;border:2px dashed #a984ff;border-radius:22px;padding:28px 30px;box-shadow:0 0 0 8px rgba(255,255,255,.88);color:#333;}
.vision-icon,.mission-icon{display:flex;align-items:center;justify-content:center;width:78px;height:78px;min-width:78px;border-radius:50%;background:#8b62dc;color:#fff;border:2px dashed rgba(255,255,255,.85);font-size:38px;}
.vision-card h3{color:#8b62dc;font-size:28px;font-weight:800;line-height:1;margin:0 0 10px;}
.vision-card p{color:#2c2c2c;font-size:16px;font-weight:800;line-height:1.55;margin:0;}
.mission-card{position:relative;background:#fff;border:2px dashed #ff78a6;border-radius:22px;padding:29px 22px 23px;box-shadow:0 0 0 9px rgba(255,255,255,.9);color:#333;}
.mission-heading{display:flex;align-items:center;gap:25px;margin-bottom:24px;}
.mission-icon{background:#ff78a6;font-size:36px;}
.mission-heading h3{color:#ff6da0;font-size:30px;font-weight:800;line-height:1;margin:0;}
.mission-list{list-style:none;padding:0;margin:0;}
.mission-list li{display:flex;align-items:center;gap:15px;margin-bottom:10px;padding:12px 16px;
  border-radius:4px;background:#865fdb;color:#fff;font-size: 16px;
    font-weight: 600;line-height:1.25;
  box-shadow:0 3px 8px rgba(60,33,120,.17);}
.mission-list li:last-child{margin-bottom:0;}
.mission-list i{color:#ffea1c;font-size:19px;}
.rocket-scene{position:absolute;right:0px;bottom:0px;z-index:2;}
.about-tail{position:absolute;left:-170px;bottom:-38px;z-index:2;}
.rocket-body{position:absolute;right:22px;bottom:38px;width:55px;height:105px;background:#f5fbff;border:3px solid #112c8c;border-radius:50% 50% 42% 42%;transform:rotate(28deg);}
.rocket-body:before{content:"";position:absolute;left:14px;top:-13px;width:23px;height:23px;background:#ffdf24;border:3px solid #112c8c;border-radius:50% 50% 10% 10%;clip-path:polygon(50% 0,100% 100%,0 100%);}
.rocket-window{position:absolute;left:15px;top:22px;width:23px;height:23px;border-radius:50%;
  background:#83dffc;border:3px solid #112c8c;box-shadow:inset 0 0 0 4px #bdf2ff;}
.rocket-fin{position:absolute;bottom:8px;width:20px;height:30px;background:#ff651b;border:3px solid #112c8c;}
.rocket-fin-left{left:-16px;border-radius:16px 0 0 8px;}
.rocket-fin-right{right:-16px;border-radius:0 16px 8px 0;}
.rocket-flame{position:absolute;left:17px;bottom:-28px;width:18px;height:34px;background:#ffde21;border-radius:50% 50% 45% 45%;box-shadow:0 7px 0 #ff651b;}
.rocket-cloud{position:absolute;bottom:0;background:#d8f2ff;border:3px solid #2b4b9b;border-radius:50%;}
.cloud-one{left:10px;width:60px;height:34px;}
.cloud-two{left:48px;width:76px;height:40px;}
.cloud-three{left:84px;width:54px;height:32px;}

.safety-facilities-bg{position:relative;overflow:hidden;background:#fff url('../images/school-advisory-bg.jpg') center/cover no-repeat;padding:100px 0 18px;}
.safety-heading span{display:inline-block;margin-bottom:18px;padding:13px 42px;border-radius:8px;background:#ff6fa5;color:#fff;font-size:13px;font-weight:800;text-transform:uppercase;line-height:1;}
.safety-heading h2{color:#8062d9;font-size:40px;font-weight:800;line-height:1.1;margin:0 0 12px;}
.safety-heading p{color:#5e5e5e;font-size:18px;font-weight:700;margin:0;}

.safety-trust-visual{position:relative;min-height:420px;}
.safety-photo-wrap{position:absolute;left:0;top:2px;width:390px;height:312px;border:7px solid #fff;border-radius:52% 48% 50% 45%;box-shadow:0 4px 16px rgba(71,123,201,.16);overflow:hidden;}
.safety-photo-wrap img{width:100%;height:100%;object-fit:cover;object-position:left bottom;}
.safety-shield{position:absolute;right:56px;top:155px;width:158px;height:182px;background:#fff;border:8px solid #1673dc;border-radius:48% 48% 42% 42% / 28% 28% 60% 60%;box-shadow:0 8px 22px rgba(27,84,155,.18);display:flex;align-items:center;justify-content:center;color:#1673dc;font-size:54px;clip-path:polygon(50% 0,96% 18%,88% 72%,50% 100%,12% 72%,4% 18%);}
.safety-trust-note{position:absolute;left:114px;bottom:4px;background:#fff;border-radius:18px;padding:18px 30px 19px;box-shadow:0 5px 18px rgba(70,70,70,.14);text-align:center;}
.safety-trust-note strong{color:#0c2f88;font-size:18px;font-weight:800;line-height:1.16;}
.safety-trust-note span{color:#ff3d87;}
.safety-star{position:absolute;width:68px;}
.safety-star-left{left:-5px;bottom:57px;}
.safety-card-grid>[class*="col-"]{padding-left:8px;padding-right:8px;margin-bottom:16px;}
.safety-card{position:relative;min-height:293px;;border-radius:8px;padding:20px 24px 20px;background:#eef5ff;box-shadow:0 5px 0 #3685ef;color:#404040;}
.safety-card-pink{background:#ffdce4;box-shadow:0 5px 0 #ff4290;}
.safety-card-green{background:#e6fae9;box-shadow:0 5px 0 #47b95b;}
.safety-card-yellow{background:#fff7d9;box-shadow:0 5px 0 #f5b31d;}
.safety-number{position:absolute;left:24px;top:24px;width:46px;height:46px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#2f7be2;color:#fff;font-size:24px;font-weight:800;}
.safety-card-pink .safety-number{background:#ff0c71;}
.safety-card-green .safety-number{background:#00ab2c;}
.safety-card-yellow .safety-number{background:#ff8a00;}
.safety-card-icon{position:absolute;right:25px;top:24px;font-size:52px;color:#2f7be2;text-shadow:0 5px 10px rgba(0,0,0,.14);}
.safety-card-pink .safety-card-icon{color:#ff1975;}
.safety-card-green .safety-card-icon{color:#45c94e;}
.safety-card-yellow .safety-card-icon{color:#f59b17;}
.safety-card h3{margin:0px 0 14px;color:#1f5fbf;font-size:22px;font-weight:800;
    font-family: "Quicksand", Arial, sans-serif;
    line-height: 1.4;}
.safety-card-pink h3{color:#ff1975;}
.safety-card-green h3{color:#0aa839;}
.safety-card-yellow h3{color:#ff8a00;}
.safety-card p{margin:0;color:#636363;font-size:16px;font-weight:600;line-height:1.55;}
.safety-promise-bar{position:relative;margin-top:2px;border-radius:5px;background:#4d1ec0;color:#fff;
  padding:16px 55px;text-align:center;font-size:16px;font-weight:800;line-height:1.35;max-width:880px;margin-right: 20px;}
.safety-promise-bar i{position:absolute;left:14px;top:-24px;width:62px;height:74px;display:flex;align-items:center;justify-content:center;color:#ff8a00;background:#ffd07d;border:3px solid #ff8a00;border-radius:50% 50% 42% 42% / 28% 28% 55% 55%;font-size:34px;clip-path:polygon(50% 0,96% 18%,88% 72%,50% 100%,12% 72%,4% 18%);}
.safety-star-right{right:0px;bottom:-6px;width:55px;}
.safety-pencil{position:absolute;right:48px;top:220px;width:48px;height:276px;background:linear-gradient(90deg,#ffe28a 0 34%,#fff4c5 34% 62%,#ffd760 62%);border-radius:0 0 4px 4px;}
.safety-pencil:before{content:"";position:absolute;left:0;top:-42px;width:48px;height:42px;border-radius:24px 24px 0 0;background:linear-gradient(#ff646f 0 50%,#6d77ff 50%);}
.safety-pencil-tip{position:absolute;left:0;bottom:-50px;width:0;height:0;border-left:24px solid transparent;border-right:24px solid transparent;border-top:50px solid #f3dfb5;}
.safety-pencil-tip:after{content:"";position:absolute;left:-8px;top:-12px;width:0;height:0;border-left:8px solid transparent;border-right:8px solid transparent;border-top:17px solid #4b3b28;}
.safety-paper-plane{position:absolute;left:196px;top:112px;width:64px;height:28px;background:#ecd9c8;clip-path:polygon(0 45%,100% 0,72% 55%,100% 100%);}
.vision-icon img{height: 52px;}
.mission-icon img{height: 48px;}

.safety-facilities-bg{  background-image: url('../images/school-advisory-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
.container-safety{width:100%}
.safety-card-grid{    max-width: 900px;padding: 0 20px;}
.safety-promise-badge-img{position: absolute;left:-30px;top: 0;;}
.safety-promise-badge-img{height: 80px;}
.safety-number-bg{display: flex;justify-content: end;}
.safety-pencil{display: none;}
.s-pencil-img{position: absolute;right: -100px;transform: rotate(-42deg);height: 350px;top:400px}

/* About page recognition */
.recognition-section{padding:76px 0 90px;background:#fff;}
.recognition-heading h2{margin:0 0 16px;color:#0868d8;
  /* font-family:"Quicksand",Arial,sans-serif; */
  font-size: 42px;
    font-weight: 500;line-height:1.2;}
.recognition-heading p{margin:0;color:#4f4f4f;font-size:18px;font-weight:500;line-height:1.55;}
.recognition-panel{max-width: 900px;margin:34px auto 0;padding:31px 40px;border-radius:11px;background:#102bab;}
.recognition-card{display:flex;align-items:center;justify-content:space-between;gap:28px;min-height:99px;padding:18px 0 18px 18px;border:2px dashed #149bea;border-radius:12px;background:#dff3ff;overflow:hidden;}
.recognition-rating-copy{display:flex;align-items:center;gap:18px;flex:1 1 310px;}
.recognition-rating-copy img{width:62px;height:auto;flex:0 0 auto;}
.recognition-rating-copy strong{color:#092da8;font-family:"Quicksand",Arial,sans-serif;font-size:21px;font-weight:800;line-height:1.35;}
.recognition-google{flex:0 0 auto;text-align:center;line-height:1;}
.google-wordmark{font-family:Arial,sans-serif;font-size:48px;font-weight:500;letter-spacing:-5px;}
.google-wordmark span:nth-child(1),.google-wordmark span:nth-child(4){color:#4285f4;}
.google-wordmark span:nth-child(2),.google-wordmark span:nth-child(6){color:#ea4335;}
.google-wordmark span:nth-child(3){color:#fbbc05;}
.google-wordmark span:nth-child(5){color:#34a853;}
.google-review-line{margin-top:2px;color:#777;font-size:15px;font-weight:700;letter-spacing:.1px;}
.google-review-line b{color:#ffad17;font-size:14px;letter-spacing:-1px;}
.recognition-review-btn{display:flex;align-items:center;justify-content:center;
  min-width:207px;margin:-18px 0 -18px 0;border-radius:38px 0 0 38px;background:#102bab;
  color:#fff!important;font-family:"Quicksand",Arial,sans-serif;font-size:20px;font-weight:800;
  text-decoration:none!important;transition:background-color .2s ease,transform .2s ease;    padding: 10px 0;}
.recognition-review-btn:hover,.recognition-review-btn:focus{background:#071d8d;transform:translateX(-3px);}
.acad-frm{margin-top: 50px !important;}

.learning-play-bg{
  background-image: url('../images/about-us-bg.jpg');
  background-position: center;background-size: cover;background-repeat: no-repeat;
  position:relative;
  overflow:hidden;
  padding:48px 0 34px;
}
.learning-play-content{position:relative;z-index:2;}
.learning-play-content h1{color:#2f3035;font-size:40px;font-weight:600;line-height:1.3;margin:0 0 16px;}
.learning-play-content h1 span{color:#ff0097;}
.learning-play-subtitle{color:#3900b8;font-size:18px;font-weight:800;line-height:1.4;margin:0 0 18px;}
.learning-play-desc{max-width:455px;color:#414141;font-size:16px;font-weight:500;line-height:1.65;margin:0 0 22px;}
.learning-play-btn{display:inline-flex;align-items:center;}
.learning-play-visual{position:relative;min-height:420px;}
.learning-pink-shape{position:absolute;left:60px;top:95px;width:420px;height:286px;border-radius:50% 46% 48% 52%;background:#ff84b8;transform:rotate(-18deg);z-index:1;}
.learning-purple-shape{position:absolute;right:90px;top:60px;width:265px;height:225px;border-radius:51% 49% 47% 53%;background:#9d32a9;transform:rotate(-10deg);z-index:1;}
.learning-orange-shape{position:absolute;right:73px;top:35px;width:112px;height:43px;border-radius:35px;background:linear-gradient(90deg,#ff6874,#ffc274);transform:rotate(14deg);z-index:3;}
.learning-play-img{position:absolute;right:0;top:-34px;max-width:620px;width:100%;z-index:4;}
.learning-dot{position:absolute;width:32px;height:32px;border-radius:50%;background:linear-gradient(135deg,#ff5f72,#ffb871);}
.learning-dot-one{right:38px;top:196px;}
.learning-dot-two{right:12px;top:210px;width:18px;height:18px;opacity:.45;}
.acad-guitar{position: absolute; top: 0;left: 0px;}
.acad-node{position: absolute; top: 30px;right: 0px;}
.acad-node2{position: absolute; top: 50px;right: 50%;}
.learning-play-bg{position: relative;padding-top: 160px;padding-bottom: 70px;}

.how-we-teach-section{background:#fff url('../images/about-us-bg.jpg') center/cover no-repeat;padding:26px 0 28px;}
.how-teach-heading h2{color:#4b18d1;font-size:40px;font-weight:600;line-height:1.12;margin:0 0 14px;}
.how-teach-heading p{max-width:860px;margin:0 auto;color:#303036;font-size:20px;font-weight:500;line-height:1.35;}
.how-teach-row{margin-top:46px;}
.teach-item{text-align:center;margin-bottom:10px;}
.teach-icon{display:flex;align-items:center;justify-content:center;width:164px;height:164px;margin:0 auto ;
  /* border:8px solid #8a5ede; */
  border-radius:50%;
  /* background:#fff7ee; */
}
.teach-icon img{display:block;width:112px;height:112px;object-fit:contain;}
.teach-item h3{color:#3e3e42;font-size:18px;font-weight:800;line-height:1.35;margin:0;
  font-family: "Quicksand", Arial, sans-serif !important;}

.montessori-approach-section{position:relative;overflow:hidden;background:#fff url('../images/about-us-bg.jpg') center/cover no-repeat;padding:52px 0 42px;}
.montessori-copy{position:relative;z-index:2;}
.montessori-copy h2{color:#0d62be;font-size:40px;font-weight:800;line-height:1.16;margin:0 0 24px;}
.montessori-copy h2 span{color:#0fc04d;}
.montessori-copy p{max-width:440px;color:#4b4b4b;font-size:15px;font-weight:500;line-height:1.65;margin:0;}
.montessori-visual{position:relative;}
/* .montessori-photo-frame{position:absolute;right:15px;top:0;width:485px;max-width:100%;padding:11px;border-radius:24px;background:#0871c5;transform:rotate(-2deg);box-shadow:0 10px 20px rgba(13,87,173,.14);z-index:3;} */
.montessori-photo-frame img{display:block;width:100%;border-radius:17px;transform:rotate(2deg);}
.montessori-block{position:absolute;bottom:14px;border-radius:7px;background:#2d66c3;box-shadow:inset 0 0 0 2px rgba(0,0,0,.07);z-index:2;}
.montessori-block:before{content:"";position:absolute;left:12px;top:12px;width:13px;height:13px;border-radius:50%;background:rgba(255,255,255,.28);box-shadow:27px 0 rgba(255,255,255,.28),0 28px rgba(255,255,255,.28),27px 28px rgba(255,255,255,.28);}
.block-blue{left:54px;width:58px;height:104px;background:#2a66c7;}
.block-green{left:10px;width:50px;height:73px;background:#77ce22;}
.montessori-cylinder{position:absolute;left:20px;bottom:0;width:78px;height:32px;border-radius:50%;background:#ffd21f;z-index:3;}
.montessori-cylinder:after{content:"";position:absolute;inset:10px 0 0;border-radius:0 0 50% 50%;background:#f3bd1e;}
.acad-train{position: absolute;bottom: 0;left: 0;}
.curriculum-covers-section{position:relative;overflow:hidden;background:#fff url('../images/about-us-bg.jpg') center/cover no-repeat;    padding: 76px 0 74px;}
.curriculum-heading h2{color:#ff4f91;font-size:40px;font-weight:800;line-height:1.15;margin:0 0 15px;}
.curriculum-heading p{max-width:680px;margin:0 auto;color:#4a4a4a;font-size:17px;font-weight:600;line-height:1.45;}
.curriculum-card-row{margin-top:46px;}
.curriculum-card{min-height:271px;border:2px solid #ffc728;border-radius:24px;background:#ffefb9;text-align:center;padding:32px 22px 26px;margin-bottom:22px;}
.curriculum-card img{display:block;height:78px;width:auto;max-width:145px;object-fit:contain;margin:0 auto 22px;}
.curriculum-card h3{font-family:"Quicksand",Arial,sans-serif !important;font-size:21px;font-weight:800;line-height:1.15;margin:0 0 27px;color:#ff8a00;}
.curriculum-card p{margin:0;color:#4f4f4f;font-size:14px;font-weight:700;line-height:1.3;}
.curriculum-years-card{background:#dcf8dc;border-color:#82d76a;}
.curriculum-years-card h3{color:#28a95d;margin-bottom:20px;}
.curriculum-creativity-card{background:#ffdbe8;border-color:#ff4f91;}
.curriculum-creativity-card h3{color:#ff0f71;}
.curriculum-physical-card{background:#d7e8ff;border-color:#4c92ff;}
.curriculum-physical-card h3{color:#23376b;margin-bottom:17px;}
.bs-bg{width: 90%;background-color: #ffe3ea;margin: 160px auto;height: 450px;padding: 0 20px;border-radius: 30px;}
.getting-ready-title{font-size: 36px;color:#501fc5;text-align: left;}
.getting-ready-desc{font-size: 18px;color: #474747;font-weight: 500;line-height: 1.6;}
.getting-ready-desc2{font-size: 22px;color: #ff5492;font-weight: 600;}
.bs-img-bg{display: flex;align-items: center;justify-content: space-between;}
.getting-ready-bg{margin-left: 80px;}

.getting-ready-bgs-bg{display: flex;align-items: center;justify-content: space-between;}

.school-girl-with-bag{    transform: translateY(-146px);}
.getting-ready-bgs-bg {    margin-bottom: 150px;
}
.rocket{margin-bottom: 150px;}
.bs-bg-mob{display: none;}

/* ========= */

.why-program-section {
  overflow: hidden;
  padding: 75px 0 45px;
  background-image: url('../images/why-choose-our-academic-program-bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.why-program-container {
  max-width: 1450px;
  padding: 0 75px;
}

.why-program-section h2 {
  margin-bottom: 45px;
  color: #ffd400;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
}

.why-program-slider .slick-list {
  padding: 40px 0 55px;
}

.why-program-slider .slick-track {
  display: flex;
  align-items: center;
}

.program-slide {
  height: auto;
  padding: 0 12px;
}

.program-card {
  position: relative;
  min-height: 355px;
  padding: 15px 12px 24px;
  border: 3px solid transparent;
  border-radius: 65px;
  text-align: center;
  transition: .4s ease;
}

.program-card > img:first-child {
  width: 100%;
  height: 215px;
  object-fit: cover;
  border: 4px solid #fff;
  border-radius: 52px;
  box-shadow: 0 8px 18px rgba(0,0,0,.2);
  transition: .4s ease;
}

.program-card h3 {
  margin: 25px 0 0;
  color: #ffd400;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.25;
}

.program-card p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: #252525;
  font-weight: 600;
  opacity: 0;
  transition: .35s ease;
}

/* Expanded active slide */
.program-slide.is-featured .program-card {
  min-height: 500px;
  padding: 20px 18px 60px;
  border-color: #fff;
  background: #ffd400;
  transform: translateY(-22px);
}

.program-slide.is-featured .program-card > img:first-child {
  height: 260px;
}

.program-slide.is-featured .program-card h3 {
  margin-top: 22px;
  color: #07306a;
  font-size: 28px;
}

.program-slide.is-featured .program-card p {
  max-height: 100px;
  margin-top: 14px;
  opacity: 1;
}

.why-program-slider .program-slide .program-star {
  position: absolute;
  bottom: -13px;
  left: 50%;
  display: none !important;
  width: 70px;
  transform: translateX(-50%);
}

.why-program-slider .program-slide.is-featured .program-star {
  display: block !important;
}

.why-program-arrow {
  position: absolute;
  top: 48%;
  z-index: 5;
  border: 0;
  background: transparent;
  color: #ffd400;
  font-size: 30px;
  cursor: pointer;
  transform: translateY(-50%);
}

.why-program-prev { left: -55px; }
.why-program-next { right: -55px; }

.why-program-arrow i + i {
  margin-left: -12px;
}

.why-program-slider .slick-dots {
  bottom: 0;
}

.why-program-slider .slick-dots li button::before {
  color: #fff;
  font-size: 10px;
  opacity: .55;
}

.why-program-slider .slick-dots li.slick-active button::before {
  color: #ffd400;
  opacity: 1;
}
.building-the-whole-child {
  min-height: 630px;
  padding: 165px 0 210px;
  background-image: url('../images/building-the-whole-child.jpg');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.whole-child-container {
  max-width: 833px;
}

.whole-child-heading h2 {
  margin: 0 0 5px;
    color: #ffdc3e;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1px;
}

.whole-child-heading p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.whole-child-table-wrap {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 7px 18px rgba(0, 0, 0, .25);
  z-index: 7;
  position: relative;
}

.whole-child-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  background: #fff6cf;
  color: #3e3e3e;
}

.whole-child-table th,
.whole-child-table td {
  padding: 20px 24px;
  border-right: 2px dotted #927f43;
  border-bottom: 2px dotted #927f43;
  font-size: 18px;
  font-weight: 700;
}

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

.whole-child-table tbody tr:last-child th,
.whole-child-table tbody tr:last-child td {
  border-bottom: 0;
}

.whole-child-table thead th {
  padding-top: 22px;
  padding-bottom: 22px;
  background: #ffdc3e;
  color: #123d7a;
  font-size: 20px;
  font-weight: 800;
}

.whole-child-table thead th:first-child,
.whole-child-table tbody th {
  width: 36%;
  text-align: center;
}
.whole-child-container{position: relative;}
.table-stick1{position: absolute;height: 549px;
    top: 51px;
    left: 30px;}
.table-stick2{position: absolute;height: 549px;
    top: 51px;
    right: 30px;}

  .program-card-small{min-height: 345px;padding-top: 30px;}
  .program-card-title{ font-family: "Bakbak One", Arial, sans-serif !important;color: #e10687 !important;
  margin-bottom: 18px !important;}
  .safety-heading {margin-bottom: 20px;}
  .about-form{margin-top: 100px;}

  .testimonials-bg {
    padding: 72px 0 84px;
    background-image: url(../images/about-us-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .parent-testimonials-container {
    max-width: 1440px;
  }

  .parent-testimonials-intro {
    max-width: 1150px;
    margin: 0 auto 46px;
    text-align: center;
  }

  .parent-testimonials-intro h2 {
    margin: 0 0 24px;
    color: #202020;
    font-family: "Bakbak One", Arial, sans-serif;
    font-size: 38px;
    line-height: 1.08;
    font-weight: 400;
  }

  .parent-testimonials-intro h2 span {
    color: #f20a85;
  }

  .parent-testimonials-intro p {
    max-width: 1130px;
    margin: 0 auto;
    color: #373737;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 600;
  }

  .parent-testimonials-mobile-break {
    display: none;
  }

  .parent-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .parent-review-card {
    display: flex;
    min-height: 405px;
    flex-direction: column;
    padding: 24px 42px 24px 46px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  }

  .parent-review-top {
    display: flex;
    min-height: 42px;
    align-items: flex-start;
    justify-content: space-between;
  }

  .parent-review-opening,
  .parent-review-closing {
    color: #ff8739;
    font-family: Georgia, serif;
    font-weight: 700;
    line-height: 1;
  }

  .parent-review-opening {
    height: 29px;
    font-size: 78px;
  }

  .parent-review-google {
    width: 100px;
    height: auto;
    margin-top: 2px;
  }

  .parent-review-stars {
    margin: -2px 0 18px;
    color: #ffb313;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 1px;
  }

  .parent-review-card > p {
    margin: 0;
    color: #575757;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
  }

  .parent-review-footer {
    display: flex;
    min-height: 53px;
    margin-top: auto;
    padding-top: 20px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
  }

  .parent-review-footer strong {
    color: #393939;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
  }

  .parent-review-closing {
    height: 46px;
    font-size: 99px;
    font-weight: 400;
    transform: translateY(10px);
  }

  .parent-values-section {
    padding: 54px 0 62px;
    background: #fff;
  }

  .parent-values-container {
    max-width: 1390px;
  }

  .parent-values-section h2 {
    margin: 0 0 40px;
    color: #202020;
    font-family: "Bakbak One", Arial, sans-serif;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 400;
    text-align: center;
  }

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

  .parent-value-card {
    position: relative;
    min-height: 244px;
    padding: 28px 16px 62px;
    overflow: hidden;
    border: 2px dashed #ff6c5c;
    border-radius: 9px;
    background: #fff;
    text-align: center;
  }

  .parent-value-number {
    margin-bottom: 6px;
    color: #ff721f;
    font-family: "Bakbak One", Arial, sans-serif;
    font-size: 42px;
    line-height: 1;
  }

  .parent-value-card h3 {
    margin: 0;
    color: #252525;
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 21px;
    line-height: 1.28;
    font-weight: 700;
  }

  .parent-value-garden {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  

    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 36px, 100% 33px, 100% 11px;
  }

  .value-flower {
    position: absolute;
    bottom: 25px;
    z-index: 2;
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffd43b;
    color: #ff9eb9;
  }

  .value-flower::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 -8px 0 currentColor, 0 8px 0 currentColor, -8px 0 0 currentColor, 8px 0 0 currentColor;
    content: "";
    z-index: -1;
  }

  .value-flower::after {
    position: absolute;
    top: 10px;
    left: 4px;
    z-index: -2;
    width: 3px;
    height: 27px;
    background: #56b923;
    content: "";
  }

  .value-flower:nth-child(1) { left: 10%; }
  .value-flower:nth-child(2) { left: 34%; bottom: 21px; }
  .value-flower:nth-child(3) { left: 50%; bottom: 16px; }
  .value-flower:nth-child(4) { left: 65%; }
  .value-flower:nth-child(5) { left: 87%; bottom: 20px; }

  .value-flower-yellow {
    background: #ff922a;
    color: #ffd400;
  }

  .value-flower-small {
    width: 6px;
    height: 6px;
    background: #ffb21d;
    color: #ae168e;
    transform: scale(.72);
  }

  .testimonial-faq-section {
    padding: 54px 0 70px;
    background: #fff;
  }

  .testimonial-faq-container {
    max-width: 1210px;
  }

  .testimonial-faq-section h2 {
    margin: 0 0 48px;
    color: #202020;
    font-family: "Bakbak One", Arial, sans-serif;
    font-size: 38px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
  }

  .testimonial-faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .testimonial-faq-item {
    margin: 0;
  }

  .testimonial-faq-question {
    display: flex;
    width: 100%;
    min-height: 66px;
    padding: 17px 23px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 2px solid #ffc75b;
    border-radius: 8px;
    background: #f5f5f5;
    color: #333;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    transition: border-color .2s ease, background-color .2s ease;
  }

  /* .testimonial-faq-question-text {
    flex: unset;
  } */
.testimonial-faq-question-text{text-align: left;}
  .testimonial-faq-icon {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .testimonial-faq-icon::before,
  .testimonial-faq-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: #333;
    content: "";
    transform-origin: center;
    transition: transform .25s ease, opacity .25s ease;
  }

  .testimonial-faq-icon::before {
    transform: translate(-50%, -50%);
  }

  .testimonial-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .testimonial-faq-item.is-open .testimonial-faq-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .testimonial-faq-item.is-open .testimonial-faq-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .testimonial-faq-question:hover,
  .testimonial-faq-question:focus-visible {
    border-color: #ffad22;
    background: #fafafa;
  }

  .testimonial-faq-item.is-open .testimonial-faq-question {
    border-color: #ffad22;
    background: #fafafa;
  }

  .testimonial-faq-question:focus-visible {
    outline: 3px solid rgba(255, 173, 34, .24);
    outline-offset: 2px;
  }

  .testimonial-faq-answer {
    max-height: 0;
    padding: 0 30px;
    overflow: hidden;
    will-change: max-height;
    transition:
      max-height .4s ease,
      padding-top .4s ease,
      padding-bottom .4s ease;
  }

  .testimonial-faq-item.is-open .testimonial-faq-answer {
    padding-top: 14px;
    padding-bottom: 2px;
  }

  .testimonial-faq-answer p {
    margin: 0;
    color: #383838;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 600;
  }
  .testimonials-bg{position: relative;}
.test-guitar{position: absolute;top: 0;left: 0;}
.test-node2{position: absolute;top: 0;right: 0;}

.testimonial-butterfly1{position: absolute;bottom: 0;right: 0;}
.parent-values-section{position: relative;}
.parent-values-butterfly{position: absolute;top: 100px;left: 0;}
  @media (prefers-reduced-motion: reduce) {
    .testimonial-faq-answer,
    .testimonial-faq-icon::before,
    .testimonial-faq-icon::after {
      transition: none;
    }
  }
.preschool-programs-in-adambakkam {
  overflow: hidden;
  padding: 72px 0 84px;
  background-image: url(../images/about-us-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.preschool-programs-container {
  max-width: 1380px;
}

.preschool-programs-row {
  min-height: 510px;
}

.preschool-programs-copy {
  padding-right: 45px;
}

.preschool-programs-copy h2 {
  margin: 0 0 28px;
  color: #ff0b7c;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.35;
      letter-spacing: 1px;
}

.preschool-programs-copy p {
  max-width: 620px;
  margin: 0 0 34px;
  color: #494949;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.preschool-enrollment-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 6px 7px 6px 24px;
  border-radius: 13px;
  background: #df0873;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.preschool-enrollment-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(223, 8, 115, .25);
}

.preschool-enrollment-icon {
  display: grid;
  width: 48px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  color: #501fc5;
  font-size: 19px;
}

.preschool-programs-collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 25px;
  max-width: 630px;
  margin-left: auto;
}

.preschool-collage-cross {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 215px;
  height: 215px;
  border: 25px solid #ffd400;
  border-radius: 42px;
  transform: translate(-50%, -50%);
}

.preschool-collage-image {
  position: relative;
  z-index: 1;
  height: 245px;
  overflow: hidden;
  background: #e8e8e8;
}

.preschool-collage-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preschool-collage-one,
.preschool-collage-three {
  border-radius: 55px 0 55px 55px;
}

.preschool-collage-two,
.preschool-collage-four {
  border-radius: 55px 55px 55px 0;
}


.class-timings-bg{  overflow: hidden;
  padding: 72px 0 84px;
  background-image: url(../images/galaxy-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.session-time-bg {
  max-width: 1110px;
  padding: 20px;
  border-radius: 190px 0 190px 190px;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.session-time-bg-border {
  width: 100%;
  padding: 55px 45px 50px;
  border: 2px dashed #460094;
  border-radius: 190px 0 190px 190px;
}

.session-times-content {
  max-width: 1040px;
  margin: 0 auto;
}

.session-times-heading h2 {
  margin: 0 0 12px;
  color: #7714e8;
  font-size: 47px;
  font-weight: 800;
  line-height: 1.15;
}

.session-times-heading p {
  margin: 0;
  color: #333;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.session-times-table-wrap {
  margin-top: 42px;
}

.session-times-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 16px;
  color: #fff;
  text-align: center;
}

.session-times-table th,
.session-times-table td {
  width: 50%;
  padding: 25px 22px;
  border: 0;
  background: #4f08a5;
  font-size: 20px;
  font-weight: 600;
}

.session-times-table th {
  color: #f2ff00;
  font-size: 25px;
  font-weight: 800;
  text-transform: uppercase;
}

.session-times-table th + th,
.session-times-table td + td {
  border-left: 2px dotted rgba(255, 255, 255, .85);
}

.session-times-table tr > :first-child {
  border-radius: 45px 0 0 45px;
}

.session-times-table tr > :last-child {
  border-radius: 0 45px 45px 0;
}

.early-stage-programs {
  padding: 65px 0 78px;
  background: #fffbd0;
  margin-bottom: 100px;
}

.early-stage-container {
  max-width: 1320px;
}

.early-stage-heading h2 {
  margin: 0 0 20px;
  color: #4c00a8;
  font-size: 45px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1px;
}

.early-stage-heading p {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.early-stage-feature {
  margin-top: 82px;
}

.early-stage-visual {
  position: relative;
  max-width: 550px;
  margin: 0 auto;
}

/* .early-stage-visual > img {
  display: block;
  width: 100%;
  height: 455px;
  object-fit: cover;
  border-radius: 65px 25px 65px 25px;
} */

.early-stage-age-badge {
  position: absolute;
  top: 43%;
  right: -56px;
  display: flex;
  width: 205px;
  min-height: 190px;
  padding: 25px 22px;
  flex-direction: column;
  justify-content: center;
  border-radius: 55px;
  background: #183db9;
  color: #fff;
}

.early-stage-age-badge span {
  font-size: 24px;
  font-weight: 800;
}

.early-stage-age-badge strong {
  margin-top: 4px;
  color: #ffe500;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
      text-align: center;
}

.early-stage-copy {
  padding-left: 65px;
}

.early-stage-copy > h3 {
  margin: 0 0 12px;
  color: #183db9;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1px;
}

.early-stage-copy > p {
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

.early-stage-card-row {
  margin-top: 27px;
}

.early-stage-card {
  min-height: 235px;
  height: 100%;
  padding: 26px 27px;
  border-radius: 4px;
  background: #183db9;
  color: #fff;
}

.early-stage-card h4 {
  margin: 0 0 18px;
  color: #ffe500;
    font-size: 20px;
    font-weight: 500;
}

.early-stage-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.early-stage-card li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 19px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 1px;
}

.early-stage-card li::before {
  position: absolute;
  left: 0;
  content: "-";
}

.early-stage-feature + .early-stage-feature {
  margin-top: 115px;
}

.early-stage-copy-left {
  padding-right: 65px;
  padding-left: 15px;
}

.early-stage-visual-right .early-stage-age-badge {
  right: auto;
  left: -56px;
}

.early-stage-feature-prekg .early-stage-copy > h3 {
  color: #ff7300;
}

.early-stage-feature-prekg .early-stage-card,
.early-stage-feature-prekg .early-stage-age-badge {
  background: #db4d07;
}

.early-stage-feature-lkg .early-stage-copy > h3 {
  color: #319c0d;
}

.early-stage-feature-lkg .early-stage-card,
.early-stage-feature-lkg .early-stage-age-badge {
  background: #319c0d;
}

.early-stage-feature-prekg .early-stage-visual > img {
  border-radius: 25px 65px 25px 65px;
}

.early-stage-feature-ukg .early-stage-copy > h3 {
  color: #c40058;
}

.early-stage-feature-ukg .early-stage-card,
.early-stage-feature-ukg .early-stage-age-badge {
  background: #c40058;
}

.early-stage-feature-ukg .early-stage-visual > img {
  border-radius: 25px 65px 25px 65px;
}

.early-stage-feature-abacus .early-stage-copy > h3 {
  color: #5200a5;
}

.early-stage-feature-abacus .early-stage-card,
.early-stage-feature-abacus .early-stage-age-badge {
  background: #5200a5;
}

.early-stage-feature-abacus .early-stage-visual > img {
  object-position: center 18%;
}

.early-stage-feature-training .early-stage-copy > h3 {
  color: #e50068;
}

.early-stage-feature-training .early-stage-card,
.early-stage-feature-training .early-stage-age-badge {
  background: #e50068;
}

.early-stage-feature-training .early-stage-visual > img {
  border-radius: 25px 65px 25px 65px;
  object-position: center;
}
.art-board{position: absolute;right: 50px;top: 50px;    height: 78px;}
.session-star{position: absolute;right: 50%;bottom: -30px;    transform: translateX(50%);}
.early-stage-age-badge{text-align: center;}

.preschool-programs-in-adambakkam{position: relative;}
.preschool-programs-doodle{position: absolute;left: 0;top: 100px;}
.preschool-programs-shape{position: absolute;right: 0;top: 100px;}
.class-timings-title{font-size: 40px; text-align: center;color: #ffd800;}
.class-timings-desc{font-size: 18px; text-align: center;color: #ffffff;margin-bottom: 18px;margin-bottom: 30px;
max-width: 800px;margin-left: auto;margin-right: auto;line-height: 1.6;}

.early-stage-programs{position: relative;}
.programs-welcome-hourglass{position: absolute;top: 100px;right: 200px;}
.program-background-plane{position: absolute;top: 60px;left:0px;}
.program-pencil-glass-bg{position: relative}
.program-pencil-glass{position: absolute;top: -100px;right:0px;}

.air-baloon-program-bg{position: relative;}
.air-baloon-program{position: absolute;right:50%;top: -100px;}

.pencil-programm{position: absolute;top: 100px;left: -200px;}
.pencil-programm-bg{position: relative;}

.activity-gall-bg{display: grid;grid-template-columns: repeat(3, 1fr);}

.green-cloud-bg{position: relative;}
.green-cloud{position: absolute;left: 100px;top: 0;}
.blue-kite{position: absolute;right: 0px;top: 0;}

.gallery-hand-bg{position: relative;}
.gallery-hand{position: absolute;top:-30px;right:-30px;}
.standing-sunflower{position: absolute;bottom:0px;left:-50px;}

.footer-submit-btn{position: absolute !important;}

.kag_title_bg{display: flex;justify-content: center;}
.kag_title{background-color: white;border: solid 1px var(--pink);padding: 10px 24px;border-radius: 10px;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;}
.kag_title_h{color: var(--magenta-text);}
.kag_title_p{color: var(--violet);font-weight: 700;font-size: 18px;}
.kag_bg{background-image: url('../images/kag-bg.jpg');  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;padding-top: 80px;padding-bottom: 0px;position: relative;}
  .kag_grid{display: flex;align-items: center;justify-content: center;gap: 18px;    z-index: 6;
    position: relative;}
  .kag_grid a.kag-gallery-link{position:relative;display:block;overflow:hidden;border-radius:22px;cursor:zoom-in;transition:transform .25s ease,box-shadow .25s ease;}
  .kag_grid a.kag-gallery-link::before,.kag_mob_slider a.kag-gallery-link::before{position:absolute;top:-45%;left:-85%;z-index:2;width:55%;height:190%;content:"";pointer-events:none;background:linear-gradient(115deg,transparent 0%,rgba(255,255,255,.2) 35%,rgba(255,255,255,.9) 50%,rgba(255,255,255,.2) 65%,transparent 100%);transform:skewX(-22deg);}
  .kag_grid a.kag-gallery-link:hover,.kag_grid a.kag-gallery-link:focus-visible{transform:translateY(-2px);}
  .kag_grid a.kag-gallery-link:hover::before,.kag_grid a.kag-gallery-link:focus-visible::before,.kag_mob_slider a.kag-gallery-link:hover::before,.kag_mob_slider a.kag-gallery-link:focus-visible::before{animation:footerCtaFlash .72s ease;}
  .kag_grid a.kag-gallery-link:focus-visible{outline:4px solid var(--violet);outline-offset:3px;}
  .kag_mob_slider a.kag-gallery-link{position:relative;display:block;overflow:hidden;border-radius:22px;cursor:zoom-in;transition:transform .25s ease,box-shadow .25s ease;}
  .kag_mob_slider a.kag-gallery-link:focus-visible{outline:4px solid var(--violet);outline-offset:-4px;}
  .kag-action{margin-top: 50px;position: relative;}
  .kag-btn-bg{display: flex;align-items: center;justify-content: center;}
  .ropeL{position: absolute;left: 0;    top: -120px;z-index: 1;}
  .kag-btn{z-index: 6;position: relative;}
  .ropeR{position: absolute;    right: 55px;
    bottom: 40px;z-index: 1;}
  .kag_mob_bg{position:absolute;left:0;width:100%;visibility:hidden;pointer-events:none;}
  .kag_mob_slider{position:relative;padding:0 42px;}
  .kag_mob_slider .slick-slide{padding:0 5px;}
  .kag_mob_slider .slick-slide img{width:100%;border-radius:22px;}
  .kag-mob-arrow{position:absolute;top:50%;z-index:8;width:38px;height:38px;padding:0;border:0;border-radius:50%;background:var(--violet);color:#fff;font-size:15px;transform:translateY(-50%);}
  .kag-mob-prev{left:-10px;}
  .kag-mob-next{right:-10px;}
  .kag-mob-arrow:hover{background:var(--pink);}

.kag-leaf{position: absolute;top:100px;left: 100px;}
.kag-badge{position: absolute;top:500px;right: 100px;}
.ruuber-wave{width:100%;height:auto;margin-top: 40px;}
.mascot{display: flex;align-items: center;justify-content: center;margin-bottom: -35px;}

.contact-card-main-link{font-size: 20px;}

.contact-info-cards{position: relative;}
.purple-moon{position: absolute;top: -44px;    width: 100%;}
.csh_ttle{font-size: 38px;text-align: center;margin-top: 30px;margin-bottom: 10px;color: #ffea00;z-index: 9;position: relative;}
.csh_desc{font-size: 18px;text-align: center;margin-bottom: 30px;color: white;z-index: 9;position: relative;max-width: 600px;margin-left: auto;
margin-right: auto;}
.bread-crumb-bg-cont{position: relative;z-index: 9;}
.bread-crumb-active-cont{color: white !important;}
.bread-crumb-bg-cont a, .bread-crumb-bg-cont span{color: white !important;}

.vos_ttle{font-size: 38px;color: #3e3e3e;margin-top: 100px;text-align: center;line-height: 1.4;max-width: 900px;margin-left: auto;
margin-right: auto;}
.vos_ttle span{color: #4d26a1;}
.banner_content_cont{color: white !important;}
.banner_content_contact{top: auto;bottom: 0px;}
.admissions-intro-section {
  padding: 82px 0 105px;
  background: #fff;
  overflow: hidden;
}

.admissions-intro-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: 64px;
  max-width: 1180px;
}

.admissions-intro-copy h1 {
  margin: 0 0 25px;
  color: #f0087f;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.28;
  
    letter-spacing: 1px;
}

.admissions-intro-copy p {
  max-width: 475px;
  margin: 0 0 37px;
  color: #555;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
}

.admissions-start-btn {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  min-height: 50px;
  border: 3px solid #f0087f;
  border-radius: 12px;
  padding: 3px 5px 3px 18px;
  background: #f0087f;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.admissions-start-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(240, 8, 127, .2);
}

.admissions-start-icon {
  display: grid;
  width: 40px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  background: #fff;
  color: #7026c7;
  font-size: 19px;
}

.admissions-intro-visual {
  position: relative;
  min-height: 390px;
}

.admissions-intro-visual img {
  position: absolute;
  display: block;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 4px 17px rgba(26, 20, 31, .22);
}

.admissions-intro-main-img {
  top: 0;
  left: 0;
  width: 72%;
  height: 320px;
}

.admissions-intro-small-img {
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 48%;
  height: 205px;
}

.admission-steps-section {
  padding: 78px 0 100px;
  background: #fff;
}

.admission-steps-container {
  max-width: 1050px;
}

.admission-steps-heading h2 {
  margin: 0;
  color: #4b14c4;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.admission-steps-heading span {
  display: block;
  margin-top: 15px;
  color: #ff358b;
  font-size: 17px;
  font-weight: 700;
}

.admission-steps-heading p {
  max-width: 900px;
  margin: 18px auto 54px;
  color: #4f4f4f;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.admission-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 42px;
}

.admission-step-card {
  min-height: 365px;
  overflow: hidden;
  border-radius: 27px;
  color: #fff;
  text-align: center;
}

.admission-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 204px;
  margin: 14px 14px 0;
  border-radius: 25px;
  background: #fff7f0;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
  font-size: 72px;
  line-height: 1;
}

.admission-step-card p {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 145px;
  margin: 0;
  padding: 18px 25px 25px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.admission-step-pink { background: #e90873; }
.admission-step-green { background: #3eb52b; }
.admission-step-orange { background: #ffad20; }
.admission-step-purple { background: #7b50e6; }
.admission-step-blue { background: #2080d3; }
.admission-step-red { background: #e80035; }

.learning-enrollment-section {
  padding: 0px 0 70px;
  background: #fff;
}

.learning-enrollment-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 75px;
  max-width: 1040px;
}

.learning-enrollment-wrap h2 {
  margin: 0;
  color: #202020;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 1px;
}

.learning-highlight {
  display: inline-block;
  padding: 0 4px 2px;
  color: #fff;
  line-height: 1.05;
}

.learning-highlight-pink {
  background: #ed087a;
}

.learning-highlight-yellow {
  background: #ffe119;
  color: #ed087a;
}

.learning-enrollment-copy p {
  max-width: 575px;
  margin: 0 0 23px;
  color: #404040;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.learning-enrollment-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 45px;
  border: 3px solid #ed087a;
  border-radius: 11px;
  padding: 2px 4px 2px 17px;
  background: #ed087a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.learning-enrollment-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(237, 8, 122, .2);
}

.learning-enrollment-icon {
  display: grid;
  width: 35px;
  height: 33px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: #7026c7;
  font-size: 16px;
}

.activities-enrollment-section {
  padding: 82px 0 86px;
  background: #fff;
}

.activities-enrollment-container {
  max-width: 880px;
}

.activities-enrollment-container h1 {
  margin: 0;
  color: #f2087f;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
}

.activities-enrollment-container h2 {
  margin: 22px 0 20px;
  color: #5420b8;
  font-family: "Quicksand", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.activities-enrollment-container p {
  max-width: 760px;
  margin: 0 auto 31px;
  color: #555;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

.activities-enrollment-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 51px;
  border: 3px solid #ed087a;
  border-radius: 12px;
  padding: 3px 5px 3px 20px;
  background: #ed087a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.activities-enrollment-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(237, 8, 122, .2);
}

.activities-enrollment-icon {
  display: grid;
  width: 40px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  background: #fff;
  color: #7026c7;
  font-size: 18px;
}

.admissions-intro-section{    background-image: url(../images/about-us-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;}
.banner_content_admission h2{color: white !important;font-weight: 500;}
.ltp-img-bg img{width: 100%;height: auto;}
.ltp-box-bg{padding: 60px 16px;border-radius: 30px;min-height: 400px;width: 90%;margin-left:auto;margin-right:auto
  ;margin-top: -40px;
          z-index: 9;position: relative;}
.ltp-box-purp{background-color: #8649c8;}
.ltp-box-shape{width: 90%;margin-left:auto;margin-right:auto;margin-top: -30px;}
.ltp-box-shape img{width: 100%;}
.ltp-cnt{font-size: 18px;color: white;line-height: 1.7;}
.ltp-box-bg{position: relative;}
.ltp-ttle{background-color: #e10671;padding: 10px 18px;position: absolute;top: -40px;left: 50%;transform: translateX(-50%);
      rotate: -5deg;    width: 200px;}
.ltp-ttle p{font-size: 28px;color: white;margin: 0;    font-family: "Bakbak One", Arial, sans-serif !important;text-align: center;}
.ltp-box-green{background-color: #087825;}
.ltp-box-blue{background-color: #00189b;}
.ltp-li li{color: white;}
.admissions-intro-section{position: relative;}
.admission-stars{position: absolute;top: 0;left: 100px;    height: 100px;}
.admission-firecrackers{position: absolute;top: 80px;right: 100px;}

.admission-steps-section{position: relative;}
.admission-yellow-tube{position: absolute;top: 20%;left: -40px;}
.admission-purple-tube{position: absolute;top: 50%;right: -40px;}

.health-hygiene-bg{padding:90px 0 105px;background-image: url('../images/health-hygience-bg.jpg');    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;}
.health-hygiene-wrap{display:grid;grid-template-columns:minmax(0,.82fr) minmax(480px,1.18fr);align-items:center;
  gap:78px;max-width:1120px}.health-hygiene-copy h2{margin:0 0 8px;color:#ffdb00;font-size:40px;font-weight:600}
  .health-hygiene-copy h3{margin:0 0 27px;color:white;font-family:"Quicksand",Arial,sans-serif;font-size:18px;font-weight:600}
  .health-hygiene-copy>p{max-width:440px;margin:0 0 37px;color:white;font-size:18px;font-weight:500;line-height:1.75}
  .health-hygiene-list{max-width:360px;margin:0;padding:0;list-style:none}
  .health-hygiene-list li{display:flex;align-items:center;gap:17px;min-height:51px;margin-top:10px;border-radius:6px
    ;padding:8px 18px;background:#7145d2;color:#fff;box-shadow:0 3px 7px rgba(40,21,70,.2);font-size:15px;font-weight:700}
    .health-hygiene-list i{color:#ffe000;font-size:19px}
    .health-hygiene-visual{}

        .health-photo{position:absolute;z-index:2;border:4px solid #fff;object-fit:cover;box-shadow:0 4px 12px rgba(20,8,48,.28)}
        .health-photo-main{top:120px;left:50%;width:215px;height:250px;border-radius:48%;transform:translateX(-50%)}
        .health-photo-one{top:135px;left:20px;width:160px;height:140px;border-radius:50%}
        .health-photo-two{bottom:18px;left:40px;width:165px;height:150px;border-radius:50%}
        .health-photo-three{right:25px;bottom:25px;width:190px;height:170px;border-radius:50%}
        .health-collage-star{position:absolute;top:-4px;left:50%;z-index:4;font-size:55px;transform:translateX(-50%)}
.health-collage-plane{position:absolute;top:53px;left:60px;z-index:3;color:#ffd90a;font-size:35px;transform:rotate(-20deg)}

.field-trips-section{padding:76px 0 0px;background:#fff}
.field-trips-container{max-width:900px}
.field-trips-container>h2{margin:0;color:#ffa600;font-size:40px;font-weight:600;line-height:1.25;letter-spacing: 1px;}
.field-trips-container>h3{margin:21px 0 20px;color:#5420b8;font-family:"Quicksand",Arial,sans-serif;
  font-size:17px;font-weight:600}
  .field-trips-container>p{margin:0;color:#555;font-size:18px;font-weight:500;line-height:1.55}
  .field-trips-grid{display:flex;align-items:flex-start;justify-content:center;gap:78px;margin-top:42px}
  .field-trip-item{width:175px}
  .field-trip-icon{display:flex;align-items:center;justify-content:center;width:145px;height:145px;
    margin:0 auto 18px;border:7px solid currentColor;border-radius:50%;
    font-family:"Segoe UI Emoji","Apple Color Emoji",sans-serif;font-size:72px;line-height:1;
    box-shadow:0 4px 2px rgba(35,20,55,.25)}
    .field-trip-item h4{margin:0;font-family:"Quicksand",Arial,sans-serif;font-size:18px;font-weight:600;line-height:1.15}
    .field-trip-purple{color:#6333cc}
    .field-trip-purple .field-trip-icon{background:#e5d6ff}
    .field-trip-orange{color:#ff9800}
    .field-trip-orange .field-trip-icon{background:#ffe294}
    .field-trip-green{color:#4e9414}
    .field-trip-green .field-trip-icon{background:#dfedce}

.theme-days-section{padding:72px 0 94px;background:#fff}

.theme-days-head{display:flex;align-items:center;justify-content:space-between;gap:35px;margin-bottom:48px}
.theme-days-head h2{margin:0 0 13px;color:#4b13c2;font-size:40px;font-weight:600;letter-spacing: 1px;}
.theme-days-head p{margin:0;color:#444;font-size:18px;font-weight:600;line-height:1.5}
.theme-days-count{min-width:240px;border:1px solid #9a70e5;border-radius:12px;padding:10px 24px;
  background:#f0eaff;color:#4b13c2;font-size:18px;font-weight:600;text-align:center}
.theme-days-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px 9px}
.theme-day-card{min-width:0;overflow:hidden;border-radius:26px;padding:13px 13px 20px;box-shadow:0 4px 0 rgba(42,23,57,.2)}
.theme-day-card img{    display: block;
    width: 100%;
    /* height: 182px; */
    /* border: 4px solid #fff; */
    border-radius: 36px;
    /* background: #fff8ed; */
    object-fit: cover;}
    .theme-day-card h3{display:flex;align-items:center;justify-content:center;min-height:48px;margin:19px 0 0;
      border-radius:8px;padding:7px 8px;background:#fff;font-size:18px;
      font-weight:500;line-height:1.05;text-align:center}
    .theme-violet{background:#865ae1}
    .theme-violet h3{color:#7542d2}
    .theme-pink{background:#f20b52}
    .theme-pink h3{color:#e8094d}
    .theme-orange{background:#ffb719}
    .theme-orange h3{color:#f07d00}
    .theme-green{background:#6c9307}
    .theme-green h3{color:#5f8600}
.field-trip-banner{width: 100%;height: auto;}

.field-trips-grid, .field-trips-container{position: relative;}
.trip_air_baloon{position: absolute;left: 100px;}
.trip_gall_1{position: absolute;right: 100px;}
.trip_gall_2{position: absolute;    left: -340px;
    top: 260px;}

.after-school-section{padding:86px 0 105px;background-image: url('../images/after-school-section.jpg');background-size: cover;
    background-position: center;
    background-repeat: no-repeat;}
.after-school-container{max-width:1000px}
.after-school-container>h2{margin:0;color:#ff9f0a;font-size:40px;font-weight:600;line-height:1.25;letter-spacing: 1px;}
.after-school-subtitle{margin:14px 0 55px;color:#333;font-size:19px;font-weight:700}
.after-school-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:20px 17px}
.after-school-card{flex:0 1 300px;min-height:331px;border:4px solid #ffb300;border-radius:31px;padding:33px  15px 18px;background:#fff}
.after-school-icon{display:flex;align-items:center;justify-content:center;height:96px;font-family:"Segoe UI Emoji","Apple Color Emoji",sans-serif;font-size:66px;line-height:1}
.after-school-card h3{margin:32px 0 10px;color:#7943dc;font-family:"Quicksand",Arial,sans-serif;font-size:22px;font-weight:800;line-height:1.2}
.after-school-card p{margin:0;color:#4d4d4d;font-size:18px;font-weight:500;line-height:1.6}
.after-school-card div img{margin-bottom: 10px;}

.celebrate-together-section{padding:76px 0 96px;background:#fff}
.celebrate-together-container{max-width:1090px}
.celebrate-together-container>h2{margin:0 0 12px;color:#ec2929;font-size:40px;font-weight:600;letter-spacing: 1px;}
.celebrate-together-container>p{margin:0;color:#3e3e3e;font-size:18px;font-weight:700;line-height:1.45}
.celebrate-together-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:13px;margin-top:98px}
.celebration-card{border-radius:24px;padding:12px 12px 0;background:#8a5bdf;
  box-shadow:0 4px 2px rgba(42,23,57,.22)}
.celebration-icon{display:flex;align-items:self-end;justify-content:center;height:210px;border-radius:21px;
  background:#fff;font-family:"Segoe UI Emoji","Apple Color Emoji",sans-serif;font-size:64px;line-height:1;    padding: 10px;}
.celebration-card h3{display:flex;align-items:center;justify-content:center;min-height:61px;margin:0;
      color:#fff;font-size:20px;font-weight:400;line-height:1.15}

.activities-enrollment-section{position: relative;}
.preschool-activities-pencil{position: absolute;top: 0;left: 0;}
.preschool_activities_star{position: absolute;top: 100px;right: 90px;}
.preschool_activities_star2{position: absolute;top: 0;right: 200px;}

.after-school-section{position: relative;}
.scholl-yellow-tube{position: absolute;left: 0;}
.scholl-purple-tube{position: absolute;right: 0;top: 200px;}

.footer-social-float-mob a{color: #6a5000;
    font-weight: 600;}

.addmission_form_bg{margin-top:65px;margin-bottom:75px;border-radius:30px;padding:48px 55px;background:#ffffff;
  box-shadow:0 10px 30px rgba(64,20,126,.1)}
  .addmission-form-heading h2{margin:0;color:var(--pink);font-size:40px;letter-spacing: 1px;}
  .addmission-form-heading p{margin:10px 0 32px;color:#4d4d4d;font-size:16px;font-weight:600}
  .addmission-page-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
  .addmission-field label{display:block;margin:0 0 8px;color:var(--violet);font-size:15px;font-weight:600}
  .addmission-field input,.addmission-field select{width:100%;border:2px solid #d4b9f4;border-radius:12px;background:#fff;color:#333;font-family:"Quicksand",Arial,sans-serif;font-size:15px;font-weight:600;outline:none}
  .addmission-field input,.addmission-field select{height:58px;padding:0 18px}
  .addmission-field input:focus,.addmission-field select:focus{border-color:var(--pink);box-shadow:0 0 0 3px rgba(229,0,127,.1)}
  .addmission-captcha-wrap{display:flex;align-items:center;gap:12px}.addmission-captcha-question{display:flex;align-items:center;justify-content:center;flex:0 0 105px;height:58px;border-radius:12px;background:var(--violet);color:#fff;font-size:20px;font-weight:800}.addmission-captcha-wrap input{min-width:0}
  .addmission-captcha-error{min-height:20px;margin:7px 0 0;color:#d80032;font-size:13px;font-weight:700}.addmission-captcha-wrap input.is-invalid{border-color:#d80032;box-shadow:0 0 0 3px rgba(216,0,50,.1)}
  .addmission-page-submit{display:flex;align-items:center;gap:15px;min-height:50px;margin:32px auto 0;border:0;
    border-radius:12px;padding:5px 6px 5px 22px;background:var(--pink);color:#fff;font-family:"Quicksand",Arial,sans-serif;font-size:16px;font-weight:600   ;cursor:pointer}
.addmission-page-submit span{display:grid;width:38px;height:38px;place-items:center;border-radius:9px;background:#fff;color:var(--violet)}

.child-name-photo-row{position:relative}
.child-name-photo-row>.col-md-3{position:absolute;top:0;right:0;z-index:2}
.health-hygiene-list li span{font-size: 18px;}
.mob_menu_lst{display: none !important;}
.banner_mob{display: none;}