/* =========================================================
   Dr. Md Abid Ali — Child Development center
   Playful "kids" theme — layered on top of Bootstrap 5
   ========================================================= */

:root {
  --sun: #16a4a3;
  /* --sun: #FFC93C; */
  --sun-dark: #F3A712;
  --sky: #3EC1D3;
  --sky-dark: #1FA2B8;
  --coral: #16a4a3;
  /* --coral: #FF6B6B; */
  --coral-dark: #1FA2B8;
  --grass: #1FA2B8;
  --grass-dark: #1FA2B8;
  --grape: #1FA2B8;
  --grape-dark: #7C3AED;
  --cream: #FFFCF5;
  --cream-dark: #FFF3DC;
  --ink: #019ca0c7;
  /* --ink: #2B2440; */
  --ink-soft: #5C5570;
  --white: #ffffff;
  --shadow-soft: 0 18px 40px -18px rgba(43, 36, 64, 0.28);
  --shadow-pop: 0 14px 0 0 rgba(43, 36, 64, 0.12);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --ease: cubic-bezier(.16, .8, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Baloo 2', cursive;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  color: var(--ink-soft);
  line-height: 1.75;
  font-weight: 500;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

::selection {
  background: var(--sun);
  color: var(--ink);
}

.text-sky {
  color: var(--sky) !important;
}

.text-coral {
  color: var(--coral) !important;
}

.text-grass {
  color: var(--grass) !important;
}

.text-grape {
  color: var(--grape) !important;
}

.text-sun {
  color: var(--sun-dark) !important;
}

/* ---------- eyebrow / pill label ---------- */
.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .02em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--coral-dark);
  border: 2px dashed var(--coral);
  border-radius: 100px;
  padding: 6px 18px;
}

.pill-label i {
  font-size: 15px;
}

.pill-label.on-dark {
  background: rgba(255, 255, 255, .12);
  color: var(--sun);
  border-color: rgba(255, 201, 60, .6);
}

/* ---------- decorative floating shapes ---------- */
.shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .9;
}

.float-a {
  animation: floatY 6s ease-in-out infinite;
}

.float-b {
  animation: floatY 7.5s ease-in-out infinite .6s;
}

.float-c {
  animation: floatY 5.2s ease-in-out infinite 1.1s;
}

.spin-slow {
  animation: spin 18s linear infinite;
}

@keyframes floatY {

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

  50% {
    transform: translateY(-16px) rotate(6deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes wiggle {

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

  25% {
    transform: rotate(-8deg);
  }

  75% {
    transform: rotate(8deg);
  }
}

@keyframes pop {
  0% {
    transform: scale(.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bob {

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

  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {

  .float-a,
  .float-b,
  .float-c,
  .spin-slow {
    animation: none;
  }
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.98);
  transition: opacity .7s var(--ease-bounce), transform .7s var(--ease-bounce);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- buttons ---------- */
.btn {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  letter-spacing: .01em;
}

.btn-jelly {
  background: var(--coral);
  border: none;
  color: var(--white);
  box-shadow: var(--shadow-pop);
  transition: transform .18s var(--ease-bounce), box-shadow .18s var(--ease-bounce);
}

.btn-jelly:hover {
  background: var(--coral-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 17px 0 0 rgba(43, 36, 64, .12);
}

.btn-jelly:active {
  transform: translateY(2px);
  box-shadow: 0 8px 0 0 rgba(43, 36, 64, .12);
}

.btn-sun {
  background: var(--sun);
  border: none;
  color: var(--ink);
  box-shadow: 0 14px 0 0 rgba(255, 255, 255, 35%);
  transition: transform .18s var(--ease-bounce), box-shadow .18s var(--ease-bounce);
}

.btn-sun:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 17px 0 0 rgba(243, 167, 18, .35);
}

.btn-sun:active {
  transform: translateY(2px);
  box-shadow: 0 8px 0 0 rgba(243, 167, 18, .35);
}

.btn-outline-jelly {
  background: var(--white);
  border: 2.5px solid var(--ink);
  color: var(--ink);
  transition: transform .18s var(--ease-bounce), background .2s ease;
}

.btn-outline-jelly:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-sky {
  background: var(--sky);
  border: none;
  color: #fff;
  box-shadow: 0 14px 0 0 rgba(31, 162, 184, .3);
  transition: transform .18s var(--ease-bounce);
}

.btn-sky:hover {
  background: var(--sky-dark);
  color: #fff;
  transform: translateY(-3px);
}

.learn-link {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 15px;
  color: var(--coral-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.learn-link i {
  transition: transform .25s var(--ease-bounce);
}

.learn-link:hover {
  color: var(--grape);
}

.learn-link:hover i {
  transform: translate(3px, -3px) rotate(8deg);
}

/* ---------- nav ---------- */
.site-nav {
  background: rgba(255, 252, 245, .92);
  backdrop-filter: blur(14px);
  border-bottom: 3px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
  z-index: 1040;
}

.site-nav.scrolled {
  border-color: var(--cream-dark);
  box-shadow: 0 10px 30px -18px rgba(43, 36, 64, .35);
}

.brand-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  padding: 4px;
}

.brand-text .name {
  font-family: 'Baloo 2', cursive;
  font-size: 18px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.15;
}

.brand-text .role {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--coral-dark);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: var(--ink);
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 15.5px;
  position: relative;
  padding: 8px 16px !important;
  border-radius: 100px;
  transition: background .25s ease, color .25s ease;
}

.navbar-nav .nav-link:hover {
  background: var(--cream-dark);
  color: var(--coral-dark);
}

.navbar-nav .nav-link.active {
  background: #16a4a3;
  color: var(--ink);
}

.navbar-toggler {
  border: 2px solid var(--ink);
  border-radius: 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 107, 107, .3);
}

/* ---------- HERO SLIDER ---------- */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  min-height: 640px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 150px 0 70px;
}

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

.slide-speech {
  background: linear-gradient(135deg, #FFF3DC 0%, #FFE1B8 55%, #FFD3B0 100%);
}

.slide-play {
  background: linear-gradient(135deg, #E4F9F5 0%, #CFF3EC 55%, #BDEFE0 100%);
}

.slide-aba {
  background: linear-gradient(135deg, #F1E9FF 0%, #E4D4FC 55%, #D9C6F8 100%);
}

.slide-family {
  background: linear-gradient(135deg, #E3F6FD 0%, #CDEFFA 55%, #BFE9F6 100%);
}

.hero-slide h1 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  color: var(--ink);
}

.hero-slide .lead-text {
  font-size: 18px;
  max-width: 480px;
  color: var(--ink-soft);
  font-weight: 600;
}

.hero-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-mini-badge {
  background: #fff;
  border-radius: 100px;
  padding: 8px 16px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.hero-illustration svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 30px rgba(43, 36, 64, .16));
}

.carousel-indicators {
  bottom: 22px;
}

.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  opacity: .65;
  border: 2px solid var(--ink);
  margin: 0 6px;
}

.carousel-indicators .active {
  background: var(--coral);
  opacity: 1;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 64px;
  opacity: 1;
  z-index: 5;
}

.hero-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 20px;
  transition: transform .25s var(--ease-bounce);
}

.hero-carousel .carousel-control-prev:hover .hero-arrow,
.hero-carousel .carousel-control-next:hover .hero-arrow {
  transform: scale(1.1);
  background: var(--sun);
}

/* wave divider */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  position: relative;
  z-index: 2;
  margin-top: -2px;
}

.wave-divider svg {
  width: 100%;
  height: 70px;
  display: block;
}

/* ---------- trust strip ---------- */
.trust-strip {
  background: var(--ink);
  padding: 34px 0;
  position: relative;
}

.trust-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 22px;
  color: #fff;
  transform: rotate(-6deg);
}

.trust-badge.c1 {
  background: var(--sun);
}

.trust-badge.c2 {
  background: var(--coral);
  color: #fff;
}

.trust-badge.c3 {
  background: var(--grass);
  color: #fff;
}

.trust-badge.c4 {
  background: var(--sky);
  color: #fff;
}

.trust-num {
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.trust-lbl {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .62);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-top: 2px;
}

/* ---------- section basics ---------- */
.section-pad {
  padding: 100px 0;
  position: relative;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
}

.section-head p {
  font-size: 16.5px;
}

.bg-cream-dark {
  background: var(--cream-dark);
}

.bg-ink {
  background: var(--ink);
  color: #fff;
}

.bg-ink p {
  color: rgba(255, 255, 255, .7);
}

.bg-ink h2,
.bg-ink h3 {
  color: #fff;
}

/* ---------- doctor / about frame ---------- */
.doctor-frame {
  position: relative;
  border-radius: 36px;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--sky) 0%, var(--grass) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.doctor-frame svg {
  width: 78%;
}

.doctor-frame .seal-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 96px;
  height: 96px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 4px solid var(--sun);
}

.doctor-frame .seal-badge img {
  border-radius: 50%;
}

.credentials-grid>div {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}

.credentials-grid i {
  color: var(--grass-dark);
  font-size: 18px;
  flex: none;
}

/* ---------- value / service cards ---------- */
.sticker-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px 26px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border: 3px solid transparent;
  transition: transform .3s var(--ease-bounce), border-color .3s ease, box-shadow .3s ease;
  position: relative;
}

.sticker-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: var(--sun);
}

.sticker-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  transform: rotate(-4deg);
  transition: transform .3s var(--ease-bounce);
}

.sticker-card:hover .sticker-icon {
  transform: rotate(4deg) scale(1.08);
}

.sticker-icon.c1 {
  background: #FFEFC7;
  color: var(--sun-dark);
}

.sticker-icon.c2 {
  background: #FFE0DE;
  color: var(--coral-dark);
}

.sticker-icon.c3 {
  background: #D8F7EE;
  color: var(--grass-dark);
}

.sticker-icon.c4 {
  background: #DDEFF8;
  color: var(--sky-dark);
}

.sticker-icon.c5 {
  background: #EAE0FB;
  color: var(--grape-dark);
}

.sticker-card h3 {
  font-size: 19.5px;
}

.sticker-card p {
  font-size: 14.5px;
  margin-top: 8px;
}

.sticker-card .tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--coral);
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  box-shadow: 0 6px 14px -6px rgba(255, 107, 107, .6);
  transform: rotate(4deg);
}

.sticker-card.featured {
  background: var(--ink);
}

.sticker-card.featured h3,
.sticker-card.featured p {
  color: #fff;
}

.sticker-card.featured p {
  color: rgba(255, 255, 255, .7);
}

/* value cards (about) */
.value-card {
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  text-align: center;
}

.value-card .sticker-icon {
  margin: 0 auto 16px;
}

.value-card h3 {
  font-size: 19px;
}

.value-card p {
  font-size: 14.5px;
  margin-top: 8px;
}

/* ---------- journey ---------- */
.journey-row {
  position: relative;
}

.journey-step {
  text-align: center;
}

.journey-step .step-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', cursive;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--shadow-soft);
  border: 4px solid #fff;
}

.journey-step:nth-child(5n+1) .step-badge {
  background: var(--coral);
}

.journey-step:nth-child(5n+2) .step-badge {
  background: var(--sky);
}

.journey-step:nth-child(5n+3) .step-badge {
  background: var(--grass);
}

.journey-step:nth-child(5n+4) .step-badge {
  background: var(--grape);
}

.journey-step:nth-child(5n+5) .step-badge {
  background: var(--sun-dark);
}

.journey-step h4 {
  font-size: 16.5px;
}

.journey-step p {
  margin-top: 6px;
  font-size: 13.5px;
}

/* ---------- stats ---------- */
.stats-band {
  padding: 80px 0;
}

.stat-num {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(38px, 4.4vw, 56px);
  color: var(--ink);
  font-weight: 800;
}

.stat-num span {
  color: var(--coral);
}

.stat-lbl {
  margin-top: 4px;
  font-family: 'Baloo 2', cursive;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--ink-soft);
}

/* ---------- testimonials ---------- */
.test-card {
  background: #fff;
  border-radius: 26px;
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
  height: 100%;
  position: relative;
}

.test-card .quote-mark {
  font-family: 'Baloo 2', cursive;
  font-size: 56px;
  color: var(--sun);
  line-height: .4;
  height: 40px;
  display: block;
}

.test-msg {
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 600;
}

.test-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  color: #fff;
  font-size: 16px;
}

.test-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}

.test-role {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 700;
}

/* ---------- gallery ---------- */
.gallery-tile {
  aspect-ratio: 1/1;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease-bounce);
  cursor: pointer;
}

.gallery-tile:hover {
  transform: translateY(-6px) rotate(-1deg);
}

.gallery-tile.g1 {
  background: #FFEFC7;
  color: var(--sun-dark);
}

.gallery-tile.g2 {
  background: #FFE0DE;
  color: var(--coral-dark);
}

.gallery-tile.g3 {
  background: #D8F7EE;
  color: var(--grass-dark);
}

.gallery-tile.g4 {
  background: #DDEFF8;
  color: var(--sky-dark);
}

.gallery-tile.g5 {
  background: #EAE0FB;
  color: var(--grape-dark);
}

.gallery-caption {
  font-family: 'Baloo 2', cursive;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 0 8px;
  color: var(--ink);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
}

.filter-btn {
  border: 2.5px solid var(--ink);
  background: #fff;
  border-radius: 100px;
  padding: 8px 20px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  transition: all .25s var(--ease-bounce);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  transform: translateY(-2px);
}

.gallery-item {
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-item.hide {
  display: none;
}

/* ---------- blog ---------- */
.blog-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease-bounce);
  height: 100%;
}

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

.blog-thumb {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
}

.blog-thumb.g1 {
  background: linear-gradient(135deg, #FFE9BE, #FFD3B0);
  color: var(--sun-dark);
}

.blog-thumb.g2 {
  background: linear-gradient(135deg, #D8F7EE, #BDEFE0);
  color: var(--grass-dark);
}

.blog-thumb.g3 {
  background: linear-gradient(135deg, #EAE0FB, #D9C6F8);
  color: var(--grape-dark);
}

.blog-thumb.g4 {
  background: linear-gradient(135deg, #DDEFF8, #BFE9F6);
  color: var(--sky-dark);
}

.blog-thumb.g5 {
  background: linear-gradient(135deg, #FFE0DE, #FFC9C6);
  color: var(--coral-dark);
}

.blog-card-body {
  padding: 26px;
}

.blog-meta {
  font-family: 'Baloo 2', cursive;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.cat-pill {
  background: var(--cream-dark);
  color: var(--ink);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
}

.blog-card h3 {
  font-size: 19px;
  margin-top: 12px;
}

.blog-card h3 a {
  text-decoration: none;
  color: var(--ink);
}

.blog-card h3 a:hover {
  color: var(--coral-dark);
}

.blog-card p {
  margin-top: 8px;
  font-size: 14px;
}

.blog-hero-thumb {
  aspect-ratio: 21/9;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  background: linear-gradient(135deg, #FFE9BE, #FFD3B0);
  color: var(--sun-dark);
  box-shadow: var(--shadow-soft);
}

.custom-pagination .page-link {
  border: 2.5px solid var(--ink);
  color: var(--ink);
  margin: 0 4px;
  border-radius: 12px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
}

.custom-pagination .page-item.active .page-link {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.author-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--cream-dark);
  border-radius: 24px;
  padding: 26px;
}

.author-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--sun);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ink);
  flex: none;
}

.author-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: var(--ink);
}

/* ---------- sidebar ---------- */
.sidebar-card {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.sidebar-card h4 {
  font-size: 17px;
}

.sidebar-card p {
  font-size: 14px;
  margin-top: 8px;
}

.sidebar-list li {
  list-style: none;
  padding: 10px 0;
  border-bottom: 2px dashed var(--cream-dark);
}

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

.sidebar-list a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  display: flex;
  gap: 8px;
  align-items: center;
}

.sidebar-list a:hover {
  color: var(--coral-dark);
}

/* ---------- contact ---------- */
.contact-info-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-soft);
}

.contact-info-card .sticker-icon {
  margin: 0 auto 14px;
}

.contact-info-card h4 {
  font-size: 16.5px;
}

.contact-info-card p {
  font-size: 14px;
  margin-top: 6px;
}

.placeholder-tag {
  font-family: 'Baloo 2', cursive;
  font-size: 10.5px;
  color: var(--coral-dark);
  background: #FFE0DE;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-top: 4px;
  font-weight: 700;
}

.map-placeholder {
  background: var(--cream-dark);
  border-radius: 24px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--sky-dark);
  font-size: 40px;
  text-align: center;
}

.map-placeholder p {
  font-size: 13px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 2px dashed var(--cream-dark);
  font-weight: 700;
  font-size: 14.5px;
}

.form-label {
  font-family: 'Baloo 2', cursive;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink);
  text-transform: uppercase;
}

.form-control,
.form-select {
  border-radius: 16px;
  border: 2.5px solid var(--cream-dark);
  padding: 12px 16px;
  font-size: 14.5px;
  font-weight: 600;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 .2rem rgba(255, 107, 107, .15);
}

.form-success {
  background: #D8F7EE;
  color: var(--grass-dark);
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- CTA card ---------- */
.cta-card {
  background: var(--ink);
  border-radius: 36px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  width: 1px;
}

.cta-sub {
  color: rgba(255, 255, 255, .72);
  max-width: 480px;
  font-weight: 600;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .78);
  position: relative;
}

.footer-muted {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  font-weight: 600;
}

.footer-heading {
  font-family: 'Baloo 2', cursive;
  font-size: 14px;
  font-weight: 700;
  color: var(--sun);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--sun);
}

.contact-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13.5px;
  font-weight: 600;
}

.contact-list i {
  color: var(--sun);
  margin-top: 2px;
}

.footer .placeholder-tag {
  color: var(--ink);
  background: var(--sun);
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all .25s var(--ease-bounce);
}

.social-btn:hover {
  background: var(--coral);
  transform: translateY(-3px) rotate(-6deg);
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, .12);
  font-family: 'Baloo 2', cursive;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
}

/* ---------- back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.8);
  transition: all .3s var(--ease-bounce);
  z-index: 999;
  box-shadow: var(--shadow-soft);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--coral-dark);
  transform: translateY(-4px) scale(1.05);
}

/* ---------- accordion ---------- */
.accordion-item {
  border: 3px solid var(--cream-dark) !important;
  border-radius: 20px !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-button {
  font-family: 'Baloo 2', cursive;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
}

.accordion-button:not(.collapsed) {
  background: var(--cream-dark);
  color: var(--coral-dark);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 107, 107, .15);
}

/* ---------- page header (inner pages) ---------- */
.page-header {
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: clamp(32px, 4.2vw, 50px);
}

.breadcrumb-line {
  font-family: 'Baloo 2', cursive;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}

.breadcrumb-line a {
  color: var(--coral-dark);
  text-decoration: none;
}

.ph-speech {
  background: linear-gradient(135deg, #FFF3DC, #FFE1B8);
}

.ph-about {
  background: linear-gradient(135deg, #E4F9F5, #CFF3EC);
}

.ph-services {
  background: linear-gradient(135deg, #F1E9FF, #E4D4FC);
}

.ph-gallery {
  background: linear-gradient(135deg, #E3F6FD, #CDEFFA);
}

.ph-blog {
  background: linear-gradient(135deg, #FFE9E7, #FFD3D0);
}

.ph-contact {
  background: linear-gradient(135deg, #FFF3DC, #FFD9E8);
}

/* ---------- responsive ---------- */
@media (max-width: 991px) {
  .section-pad {
    padding: 70px 0;
  }

  .hero-slide {
    min-height: auto;
    padding-top: 140px;
    text-align: center;
  }

  .hero-badge-row,
  .d-flex.gap-3 {
    justify-content: center;
  }

  .cta-card {
    padding: 36px 24px;
  }

  .page-header {
    padding: 130px 0 50px;
  }
}
.service-img{
       width:100%;
       height:220px;
       overflow:hidden;
       border-radius:18px;
       margin-bottom:20px;
       position:relative;
    }

    .service-img img{
        width:100%;
        height:100%;
        object-fit:cover;
        transition:0.5s ease;
    }

    .service-card:hover .service-img img{
        transform:scale(1.08);
    }
    
    .service-card{
        border-radius:22px;
        overflow:hidden;
    }
    .whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s ease;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* Call Floating Button */
.call-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #007BFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s ease;
}

.call-float img {
    width: 30px;
    height: 30px;
}

.call-float:hover {
    transform: scale(1.1);
}


/* Responsive for small screens */
@media (max-width: 480px) {
    .whatsapp-float, .call-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
    }

    .whatsapp-float img,
    .call-float img {
        width: 24px;
        height: 24px;
    }
}