/* ===== SUNSHINE SPROUTS PRESCHOOL — Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;600;700;800&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --pink: #FFB3C6;
  --pink-dark: #FF6B9D;
  --yellow: #FFE566;
  --yellow-dark: #F5C400;
  --mint: #B5EAD7;
  --mint-dark: #2ECC71;
  --lavender: #C7CEEA;
  --lavender-dark: #7C83D1;
  --peach: #FFDAC1;
  --peach-dark: #FF9A5C;
  --sky: #B5D8F7;
  --sky-dark: #3A9BDC;
  --white: #fff;
  --off-white: #FFF9F0;
  --text-dark: #3D2B1F;
  --text-mid: #6B4F3A;
  --text-light: #9B7B6A;
  --shadow: 0 8px 32px rgba(61, 43, 31, .12);
  --shadow-lg: 0 16px 48px rgba(61, 43, 31, .18);
  --r: 20px;
  --r-lg: 32px;
  --fh: 'Baloo 2', cursive;
  --fb: 'Nunito', sans-serif;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--fb);
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7
}

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

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

ul {
  list-style: none
}

.page-section {
  display: none
}

.page-section.active {
  display: block
}

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(61, 43, 31, .08)
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fh);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pink-dark)
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--pink), var(--yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px
}

.nav-links a {
  font-weight: 600;
  font-size: .82rem;
  padding: 7px 11px;
  border-radius: 50px;
  color: var(--text-mid);
  transition: all .25s;
  white-space: nowrap;
  cursor: pointer;
  display: block
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--pink);
  color: var(--text-dark)
}

.nav-cta {
  background: linear-gradient(135deg, var(--pink-dark), #e91e8c) !important;
  color: #fff !important;
  padding: 9px 16px !important
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 157, .4)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all .3s
}

/* ---- HERO ---- */
#home-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FFF0F5 0%, #FFFDE7 50%, #F0FFF4 100%);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: .4;
  animation: float 6s ease-in-out infinite
}

.b1 {
  width: 180px;
  height: 180px;
  background: var(--pink);
  top: 10%;
  left: 5%;
  animation-delay: 0s
}

.b2 {
  width: 120px;
  height: 120px;
  background: var(--yellow);
  top: 60%;
  left: 2%;
  animation-delay: 1s
}

.b3 {
  width: 200px;
  height: 200px;
  background: var(--mint);
  top: 15%;
  right: 5%;
  animation-delay: 2s
}

.b4 {
  width: 100px;
  height: 100px;
  background: var(--lavender);
  bottom: 15%;
  right: 10%;
  animation-delay: .5s
}

.b5 {
  width: 150px;
  height: 150px;
  background: var(--peach);
  bottom: 10%;
  left: 35%;
  animation-delay: 1.5s
}

@keyframes float {

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

  50% {
    transform: translateY(-20px) rotate(5deg)
  }
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2
}

.hero-text h1 {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px
}

.highlight {
  color: var(--pink-dark);
  position: relative
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--yellow);
  border-radius: 3px
}

.hero-text p {
  font-size: 1.02rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  max-width: 450px
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-dark), #e91e8c);
  color: #fff;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: .93rem;
  border: none;
  cursor: pointer;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 107, 157, .45)
}

.btn-secondary {
  background: #fff;
  color: var(--pink-dark);
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--fb);
  font-weight: 700;
  font-size: .93rem;
  border: 2px solid var(--pink);
  cursor: pointer;
  transition: all .3s
}

.btn-secondary:hover {
  background: var(--pink);
  color: var(--text-dark);
  transform: translateY(-3px)
}

.hero-stats {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap
}

.stat-pill {
  background: #fff;
  border-radius: 50px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: var(--shadow)
}

.stat-pill .sicon {
  font-size: 1.2rem
}

.stat-pill strong {
  font-family: var(--fh);
  font-size: 1.15rem;
  color: var(--text-dark);
  display: block;
  line-height: 1
}

.stat-pill span {
  font-size: .74rem;
  color: var(--text-light)
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.hero-card {
  background: #fff;
  border-radius: var(--r);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .3s
}

.hero-card:hover {
  transform: translateY(-6px)
}

.hero-card:nth-child(1) {
  background: var(--pink)
}

.hero-card:nth-child(2) {
  background: var(--yellow);
  margin-top: 22px
}

.hero-card:nth-child(3) {
  background: var(--mint);
  margin-top: -22px
}

.hero-card:nth-child(4) {
  background: var(--lavender)
}

.hero-card .cemoji {
  font-size: 2.2rem;
  margin-bottom: 6px
}

.hero-card h3 {
  font-family: var(--fh);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark)
}

/* ---- SECTION COMMONS ---- */
.section-header {
  text-align: center;
  margin-bottom: 48px
}

.section-tag {
  display: inline-block;
  background: var(--pink);
  color: var(--pink-dark);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 50px;
  margin-bottom: 10px
}

.section-title {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px
}

.section-sub {
  font-size: .93rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px
}

.sec-pad {
  padding: 76px 0
}

.bg-white {
  background: #fff
}

.bg-grad1 {
  background: linear-gradient(135deg, #FFF5F8 0%, #F8FFFB 100%)
}

.bg-grad2 {
  background: linear-gradient(135deg, #FFF0F5, #F5F0FF)
}

.bg-grad3 {
  background: linear-gradient(135deg, #FFF5F8 0%, #F5FFFA 100%)
}

/* ---- FEATURE CARDS ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px
}

.feature-card {
  background: #fff;
  border-radius: var(--r);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  border-bottom: 4px solid transparent
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg)
}

.feature-card:nth-child(1) {
  border-color: var(--pink-dark)
}

.feature-card:nth-child(2) {
  border-color: var(--yellow-dark)
}

.feature-card:nth-child(3) {
  border-color: var(--mint-dark)
}

.feature-card:nth-child(4) {
  border-color: var(--lavender-dark)
}

.feature-card:nth-child(5) {
  border-color: var(--peach-dark)
}

.feature-card:nth-child(6) {
  border-color: var(--sky-dark)
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem
}

.feature-card:nth-child(1) .feature-icon {
  background: var(--pink)
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--yellow)
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--mint)
}

.feature-card:nth-child(4) .feature-icon {
  background: var(--lavender)
}

.feature-card:nth-child(5) .feature-icon {
  background: var(--peach)
}

.feature-card:nth-child(6) .feature-icon {
  background: var(--sky)
}

.feature-card h3 {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 7px
}

.feature-card p {
  font-size: .84rem;
  color: var(--text-mid)
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center
}

.about-img-wrap {
  position: relative
}

.about-img-main {
  background: linear-gradient(135deg, var(--pink), var(--peach));
  border-radius: var(--r-lg);
  height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem
}

.about-img-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--yellow);
  border-radius: var(--r);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow)
}

.about-img-badge strong {
  font-family: var(--fh);
  font-size: 1.7rem;
  display: block;
  color: var(--text-dark)
}

.about-img-badge span {
  font-size: .8rem;
  color: var(--text-mid);
  font-weight: 600
}

.about-text h2 {
  font-family: var(--fh);
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 14px
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 12px;
  font-size: .93rem
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: var(--off-white);
  padding: 12px;
  border-radius: 14px
}

.value-icon {
  font-size: 1.2rem
}

.value-item h4 {
  font-weight: 700;
  font-size: .86rem
}

.value-item p {
  font-size: .78rem;
  color: var(--text-light);
  margin: 0
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 22px;
  margin-top: 16px
}

.team-card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .3s
}

.team-card:hover {
  transform: translateY(-6px)
}

.team-avatar {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem
}

.ta1 {
  background: linear-gradient(135deg, var(--pink), var(--lavender))
}

.ta2 {
  background: linear-gradient(135deg, var(--mint), var(--sky))
}

.ta3 {
  background: linear-gradient(135deg, var(--yellow), var(--peach))
}

.ta4 {
  background: linear-gradient(135deg, var(--lavender), var(--pink))
}

.team-info {
  padding: 16px
}

.team-info h3 {
  font-family: var(--fh);
  font-size: .97rem;
  font-weight: 700
}

.team-info p {
  font-size: .8rem;
  color: var(--text-light)
}

.team-tag {
  display: inline-block;
  margin-top: 5px;
  padding: 3px 11px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 600;
  background: var(--mint);
  color: var(--mint-dark)
}

/* ---- PROGRAMS ---- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px
}

.program-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg)
}

.program-header {
  padding: 28px 22px 18px;
  text-align: center
}

.pc1 .program-header {
  background: linear-gradient(135deg, var(--pink), #FFD6E5)
}

.pc2 .program-header {
  background: linear-gradient(135deg, var(--mint), #CCFAEB)
}

.pc3 .program-header {
  background: linear-gradient(135deg, var(--yellow), #FFF3B0)
}

.pc4 .program-header {
  background: linear-gradient(135deg, var(--lavender), #E0E3FF)
}

.program-emoji {
  font-size: 2.8rem;
  margin-bottom: 8px
}

.program-header h3 {
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark)
}

.age-tag {
  display: inline-block;
  margin-top: 5px;
  background: rgba(255, 255, 255, .7);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-dark)
}

.program-body {
  padding: 18px 22px
}

.program-body p {
  font-size: .86rem;
  color: var(--text-mid);
  margin-bottom: 12px
}

.pf-list {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .83rem;
  color: var(--text-mid)
}

.pf-item::before {
  content: '✓';
  width: 17px;
  height: 17px;
  background: var(--mint);
  color: var(--mint-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .62rem;
  flex-shrink: 0
}

.program-footer {
  padding: 0 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.program-price {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark)
}

.program-price span {
  font-size: .76rem;
  color: var(--text-light);
  font-family: var(--fb)
}

/* ---- DAYCARE ---- */
.daycare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.daycare-schedule {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 28px
}

.daycare-schedule h3 {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 18px
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #E8D5CC
}

.schedule-item:last-child {
  border-bottom: none
}

.schedule-time {
  background: #fff;
  border-radius: 9px;
  padding: 6px 9px;
  font-weight: 700;
  font-size: .76rem;
  color: var(--pink-dark);
  white-space: nowrap;
  min-width: 86px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06)
}

.schedule-activity {
  font-weight: 600;
  color: var(--text-dark);
  font-size: .88rem
}

.schedule-icon {
  font-size: 1.05rem;
  margin-left: auto
}

.dc-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.dc-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--off-white);
  border-radius: var(--r);
  padding: 16px
}

.dc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0
}

.dci-pink {
  background: var(--pink)
}

.dci-yellow {
  background: var(--yellow)
}

.dci-mint {
  background: var(--mint)
}

.dci-lavender {
  background: var(--lavender)
}

.dci-peach {
  background: var(--peach)
}

.dc-text h4 {
  font-family: var(--fh);
  font-weight: 700;
  margin-bottom: 2px;
  font-size: .95rem
}

.dc-text p {
  font-size: .83rem;
  color: var(--text-mid)
}

/* ---- GALLERY ---- */
.gallery-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap
}

.filter-btn {
  background: #fff;
  border: 2px solid #E8D5CC;
  color: var(--text-mid);
  padding: 7px 18px;
  border-radius: 50px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: .83rem;
  cursor: pointer;
  transition: all .25s
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  color: #fff
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px
}

.gallery-item {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .3s
}

.gallery-item:hover {
  transform: scale(1.03)
}

.gallery-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem
}

.gt1 {
  background: linear-gradient(135deg, var(--pink), var(--lavender))
}

.gt2 {
  background: linear-gradient(135deg, var(--yellow), var(--peach))
}

.gt3 {
  background: linear-gradient(135deg, var(--mint), var(--sky))
}

.gt4 {
  background: linear-gradient(135deg, var(--lavender), var(--pink))
}

.gt5 {
  background: linear-gradient(135deg, var(--peach), var(--yellow))
}

.gt6 {
  background: linear-gradient(135deg, var(--sky), var(--mint))
}

.gt7 {
  background: linear-gradient(135deg, var(--pink), var(--peach))
}

.gt8 {
  background: linear-gradient(135deg, var(--mint), var(--lavender))
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61, 43, 31, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  font-size: 1.8rem;
  color: #fff
}

.gallery-item:hover .gallery-overlay {
  opacity: 1
}

.gallery-caption {
  padding: 10px 12px;
  background: #fff;
  font-weight: 600;
  font-size: .82rem;
  color: var(--text-dark)
}

/* ---- EVENTS/BLOGS ---- */
.events-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  justify-content: center
}

.events-tab {
  background: var(--off-white);
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--fb);
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  color: var(--text-mid);
  font-size: .9rem
}

.events-tab.active {
  background: var(--pink-dark);
  color: #fff
}

.tab-content {
  display: none
}

.tab-content.active {
  display: block
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px
}

.event-card {
  background: #fff;
  border: 2px solid #F0E8E0;
  border-radius: var(--r);
  overflow: hidden;
  transition: all .3s;
  box-shadow: var(--shadow)
}

.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink)
}

.event-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px
}

.event-date-box {
  text-align: center;
  background: var(--pink);
  border-radius: 11px;
  padding: 8px 11px;
  min-width: 50px;
  flex-shrink: 0
}

.event-date-box .day {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1
}

.event-date-box .month {
  font-size: .65rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase
}

.event-title h3 {
  font-family: var(--fh);
  font-size: .97rem;
  font-weight: 700
}

.event-title p {
  font-size: .78rem;
  color: var(--text-light)
}

.event-body {
  padding: 0 20px 16px;
  font-size: .86rem;
  color: var(--text-mid)
}

.event-footer {
  padding: 0 20px 16px;
  display: flex;
  gap: 9px;
  align-items: center
}

.event-lbl {
  padding: 3px 11px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  background: var(--mint);
  color: var(--mint-dark)
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px
}

.blog-card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s
}

.blog-card:hover {
  transform: translateY(-6px)
}

.blog-thumb {
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.3rem
}

.blt1 {
  background: linear-gradient(135deg, var(--pink), var(--peach))
}

.blt2 {
  background: linear-gradient(135deg, var(--mint), var(--sky))
}

.blt3 {
  background: linear-gradient(135deg, var(--yellow), var(--lavender))
}

.blog-body {
  padding: 16px 20px 20px
}

.blog-meta {
  font-size: .74rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 6px
}

.blog-body h3 {
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px
}

.blog-body p {
  font-size: .84rem;
  color: var(--text-mid)
}

.read-more {
  display: inline-block;
  margin-top: 9px;
  color: var(--pink-dark);
  font-weight: 700;
  font-size: .83rem;
  cursor: pointer
}

/* ---- ADMISSIONS ---- */
.admission-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start
}

.step-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-dark), #e91e8c);
  color: #fff;
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.step-text h4 {
  font-family: var(--fh);
  font-weight: 700;
  margin-bottom: 2px
}

.step-text p {
  font-size: .84rem;
  color: var(--text-mid)
}

.enquiry-form {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg)
}

.enquiry-form h3 {
  font-family: var(--fh);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 22px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.form-group {
  margin-bottom: 14px
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .83rem;
  color: var(--text-mid);
  margin-bottom: 4px
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 2px solid #F0E8E0;
  border-radius: 11px;
  font-family: var(--fb);
  font-size: .88rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color .25s;
  outline: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-dark);
  background: #fff
}

.form-group textarea {
  resize: vertical;
  min-height: 85px
}

.form-success {
  display: none;
  background: var(--mint);
  border-radius: var(--r);
  padding: 16px;
  text-align: center;
  color: var(--mint-dark);
  font-weight: 700;
  margin-top: 10px
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.contact-card {
  background: var(--off-white);
  border-radius: var(--r);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.cci {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0
}

.cci1 {
  background: var(--pink)
}

.cci2 {
  background: var(--yellow)
}

.cci3 {
  background: var(--mint)
}

.cci4 {
  background: var(--lavender)
}

.contact-card-text h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: .92rem
}

.contact-card-text p {
  font-size: .83rem;
  color: var(--text-mid)
}

.map-ph {
  background: linear-gradient(135deg, var(--sky), var(--mint));
  border-radius: var(--r-lg);
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  margin-top: 14px
}
.map-ph iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

.contact-form-box {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 34px
}

.contact-form-box h3 {
  font-family: var(--fh);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 18px
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px
}

.testimonial-card {
  background: #fff;
  border-radius: var(--r);
  padding: 26px;
  box-shadow: var(--shadow)
}

.quote-mark {
  font-size: 3.2rem;
  color: var(--pink);
  line-height: .8;
  margin-bottom: 12px;
  font-family: Georgia, serif
}

.testimonial-card p {
  font-size: .9rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 16px
}

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

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem
}

.ra1 {
  background: var(--pink)
}

.ra2 {
  background: var(--mint)
}

.ra3 {
  background: var(--yellow)
}

.reviewer-name {
  font-weight: 700;
  font-size: .88rem
}

.reviewer-role {
  font-size: .76rem;
  color: var(--text-light)
}

.stars {
  color: var(--yellow-dark);
  font-size: .8rem;
  letter-spacing: 2px;
  margin-bottom: 1px
}

/* ---- ADMIN ---- */
.admin-login-wrap {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: #F8F9FF
}

.admin-login-box {
  max-width: 400px;
  width: 100%;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 42px;
  box-shadow: var(--shadow-lg);
  text-align: center
}

.admin-login-box .lock-icon {
  font-size: 3rem;
  margin-bottom: 12px
}

.admin-login-box h2 {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 5px
}

.admin-login-box .subtitle {
  font-size: .86rem;
  color: var(--text-light);
  margin-bottom: 26px
}

.admin-error {
  color: #e74c3c;
  font-size: .83rem;
  margin-top: 8px;
  display: none
}

.admin-dashboard {
  display: none;
  padding: 80px 0;
  background: #F8F9FF;
  min-height: 100vh
}

.admin-header {
  background: linear-gradient(135deg, var(--pink-dark), #e91e8c);
  color: #fff;
  padding: 20px 26px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px
}

.admin-header h2 {
  font-family: var(--fh);
  font-size: 1.4rem
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  margin-bottom: 24px
}

.admin-stat-card {
  background: #fff;
  border-radius: var(--r);
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: center
}

.stat-num {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 800
}

.stat-lbl {
  font-size: .8rem;
  color: var(--text-light);
  font-weight: 600
}

.asc1 .stat-num {
  color: var(--pink-dark)
}

.asc2 .stat-num {
  color: var(--mint-dark)
}

.asc3 .stat-num {
  color: var(--lavender-dark)
}

.asc4 .stat-num {
  color: var(--peach-dark)
}

.admin-table-wrap {
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: 24px
}

.admin-table-header {
  padding: 16px 20px;
  border-bottom: 1px solid #F0E8E0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px
}

.admin-table-header h3 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 1.05rem
}

.admin-tabs {
  display: flex;
  gap: 6px
}

.admin-tab {
  background: var(--off-white);
  border: none;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--fb);
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  color: var(--text-mid);
  font-size: .8rem
}

.admin-tab.active {
  background: var(--pink-dark);
  color: #fff
}

table {
  width: 100%;
  border-collapse: collapse
}

th {
  background: var(--off-white);
  padding: 10px 13px;
  text-align: left;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-light)
}

td {
  padding: 11px 13px;
  border-bottom: 1px solid #F8F0EB;
  font-size: .85rem
}

tr:last-child td {
  border-bottom: none
}

tr:hover td {
  background: #fffaf7
}

.sb {
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700
}

.sb-new {
  background: var(--yellow);
  color: #a07c00
}

.sb-contacted {
  background: var(--mint);
  color: var(--mint-dark)
}

.sb-admitted {
  background: var(--lavender);
  color: var(--lavender-dark)
}

.btn-logout {
  background: rgba(255, 255, 255, .2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .4);
  padding: 7px 16px;
  border-radius: 50px;
  font-family: var(--fb);
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  font-size: .86rem
}

.btn-logout:hover {
  background: rgba(255, 255, 255, .35)
}

.action-btn {
  background: none;
  border: 1px solid #E8D5CC;
  border-radius: 7px;
  padding: 3px 9px;
  font-size: .76rem;
  font-family: var(--fb);
  cursor: pointer;
  color: var(--text-mid);
  transition: all .2s
}

.action-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--text-dark)
}

/* ---- FOOTER ---- */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, .8);
  padding: 56px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 32px;
  margin-bottom: 40px
}

.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: 12px
}

.footer-brand p {
  font-size: .84rem;
  color: rgba(255, 255, 255, .52)
}

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

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  cursor: pointer;
  transition: background .25s
}

.social-btn:hover {
  background: var(--pink-dark)
}

.footer-col h4 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
  margin-bottom: 12px
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-col ul li {
  font-size: .83rem;
  color: rgba(255, 255, 255, .52);
  cursor: pointer;
  transition: color .25s
}

.footer-col ul li:hover {
  color: var(--pink)
}

.footer-newsletter input {
  width: 100%;
  padding: 10px 13px;
  border-radius: 9px;
  border: none;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-family: var(--fb);
  margin-bottom: 9px;
  outline: none;
  font-size: .86rem
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, .33)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255, 255, 255, .36)
}

/*---------------------- Additional CSS --------------------------*/

.common {display: flex;justify-content: center;}
.common-even {display: flex;justify-content: space-evenly;}
.common-bet {display: flex;justify-content: space-between;}
.common-around {display: flex;justify-content: space-around;}
.align {align-items: center;}
.flex-col {flex-direction: column;}
.flex-row {flex-direction: row;}
.col-10 {width: 10%;}
.col-15 {width: 15%;}
.col-20 {width: 20%;}
.col-25 {width: 25%;}
.col-30 {width: 30%;}
.col-35 {width: 35%;}
.col-40 {width: 40%;}
.col-45 {width: 45%;}
.col-50 {width: 50%;}
.col-55 {width: 55%;}
.col-60 {width: 60%;}
.col-65 {width: 65%;}
.col-70 {width: 70%;}
.col-75 {width: 75%;}
.col-80 {width: 80%;}
.col-85 {width: 85%;}
.col-90 {width: 90%;}
.col-95 {width: 95%;}.col-100 {width: 100%;}

/* For reference */
:root {
  --pink: #FFB3C6;
  --pink-dark: #FF6B9D;
  --yellow: #FFE566;
  --yellow-dark: #F5C400;
  --mint: #B5EAD7;
  --mint-dark: #2ECC71;
  --lavender: #C7CEEA;
  --lavender-dark: #7C83D1;
  --peach: #FFDAC1;
  --peach-dark: #FF9A5C;
  --sky: #B5D8F7;
  --sky-dark: #3A9BDC;
  --white: #fff;
  --off-white: #FFF9F0;
  --text-dark: #3D2B1F;
  --text-mid: #6B4F3A;
  --text-light: #9B7B6A;
  --shadow: 0 8px 32px rgba(61, 43, 31, .12);
  --shadow-lg: 0 16px 48px rgba(61, 43, 31, .18);
  --r: 20px;
  --r-lg: 32px;
  --fh: 'Baloo 2', cursive;
  --fb: 'Nunito', sans-serif;
}
.float-whatsapp {
  position: fixed;
  z-index: 20;
  bottom: 30px;
  right: 30px;
}
.float-whatsapp a:nth-child(2) {
  background: green;
  padding: 10px 20px;
  border-radius: 50%;
  font-size: 2pc;
}
.float-whatsapp p {
  color: black;
  font-size: 14px;
  margin-right: 10px;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--mint);
}
.nav-logo img {
  width: 170px;
}
.sticky-contact {
  height: 40px;
  font-size: 14px;
  /* letter-spacing: .4px; */
  /* z-index: 100; */
  background: var(--mint);
}
.sticky-contact a {
  font-weight: 600;
}
.sticky-contact i {
  margin-right: 5px;
  color: var(--peach-dark);
}
#top-social i {
  margin: 0 10px;
}
.sticky-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.sticky-btn {
  background: var(--pink-dark);
  border: 1px solid #fff;
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
  cursor: pointer;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.sticky-btn:nth-child(2) {
  background: var(--yellow-dark);
}
.request-form {
  position: fixed;
  height: 100vh;
  top: 0;
  z-index: 1101;
  display: none;
  background: rgba(0, 0, 0, 0.619);
}
.request-form-box {
  position: relative;
  top: 1pc;
  z-index: 1102;
  width: 400px;
  padding: 3pc 2pc;
  border-radius: 10px;
  background: var(--lavender);
}
.close-btn p {
  position: absolute;
  right: 2pc;
  top: 1pc;
  font-size: 19px;
  cursor: pointer;
}

/* ---- RESPONSIVE ---- */
@media(max-width:1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 18px;
    box-shadow: var(--shadow);
    gap: 3px;
    z-index: 100
  }

  .nav-links.open {
    display: flex
  }

  .hamburger {
    display: flex
  }

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

  .hero-text p {
    margin: 0 auto 28px
  }

  .hero-btns {
    justify-content: center
  }

  .hero-stats {
    justify-content: center
  }

  .hero-visual {
    display: none
  }

  .about-grid,
  .daycare-grid,
  .contact-grid,
  .admission-grid {
    grid-template-columns: 1fr
  }

  .about-img-badge {
    right: 0
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }

  table {
    font-size: .76rem
  }

  th,
  td {
    padding: 8px 10px
  }
  /* custom CSS */
  .request-form-box {
    width: 100%;
  }
  .sticky-contact,
  .stc-details,
  .stc-timings {
    height: auto;
    width: 100%;
  }
  .sticky-contact,
  .stc-details,
  .stc-timings {
    flex-direction: column;
    align-items: center;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

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

.fade-in {
  animation: fadeInUp .55s ease forwards
}

