:root {
  /* Colors - Vibrant Kids Theme */
  --primary: #ac2189;
  /* Vibrant Cyan */
  --primary-dark: #a3006a;
  --secondary: #ff9f43;
  /* Bright Orange/Yellow */
  --secondary-dark: #ee5253;
  /* Vibrant Red */
  --accent: #1dd1a1;
  /* Bright Mint Green */

  --green-light: #44fd33;
  --green-dark: #07b20c;

  --sky-blue: #0093c8;
  --sky-blue-dark: #0093c8;

  --pink-light: #ff6aa3;
  --pink-dark: #e63e67;

  --yellow-light: #fff176;
  --yellow-dark: #e7d006;

  --bg-light: #fff9e6;
  /* Soft yellowish white for backgrounds */
  --text-main: #2d3e50;
  /* Darker blue-grey for readability */
  --text-muted: #576574;
  --white: #ffffff;

  /* Typography */
  --font-heading: 'Quicksand', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Utilities */
  --border-radius: 16px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--white);
}

/* Lenis Required CSS */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700 !important;
  color: var(--primary);
}

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

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

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 179, 209, 0.4);
}

.btn-secondary {
  background-color: var(--sky-blue);
  border-color: var(--sky-blue-dark);
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white;
}

.btn-secondary:hover {
  background-color: var(--sky-blue-dark);
  border-color: var(--sky-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(80, 205, 255, 0.4);
  color: white;
}

/* Header */
.mega-menu-wrapper:hover .mega-menu {
  display: block;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: auto !important;
  margin: 0 15px;
  /* Margin to keep it inside the container nicely */
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.mega-menu-wrapper:hover .mega-menu {
  transform: translateY(0);
}

.mega-menu-item {
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.mega-menu-item:hover {
  background-color: #f8fcfb;
}

.mega-icon {
  width: 50px;
  height: 50px;
  background-color: #eaf8f4;
  color: var(--primary-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 15px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.mega-menu-item:hover .mega-icon {
  background-color: var(--primary);
  color: white;
}

.mega-menu-item:hover h6 {
  color: var(--primary) !important;
}

/* Simple Dropdown */
.simple-dropdown-wrapper:hover .simple-dropdown-menu {
  display: block;
}

.simple-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.simple-dropdown-wrapper:hover .simple-dropdown-menu {
  transform: translateY(0);
}

.simple-dropdown-menu .dropdown-item {
  color: #2d3e50;
  font-size: 15px;
  transition: all 0.3s ease;
}

.simple-dropdown-menu .dropdown-item:hover,
.simple-dropdown-menu .dropdown-item:focus {
  background-color: transparent;
  color: var(--primary);
  padding-left: 2rem !important;
}

.header-transparent {
  transition: all 0.4s ease;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Fix offcanvas getting trapped by backdrop-filter containing block on mobile */
@media (max-width: 991px) {
  .header-transparent {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* Dark nav text for light hero */
.header-transparent .nav-link {
  color: #2d3e50 !important;
}

.header-transparent .nav-link:hover {
  color: var(--primary) !important;
}

.header-transparent .mobile-toggle-icon {
  color: #2d3e50 !important;
}


.header-transparent.navbar-scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: fixed !important;
  top: 0;
  width: 100%;
  /* padding: 10px 0; */
  z-index: 1050;
}

.header-transparent.navbar-scrolled .logo-text {
  color: var(--primary) !important;
}

.header-transparent.navbar-scrolled .nav-link {
  color: #2d3e50 !important;
}

.header-transparent.navbar-scrolled .nav-link:hover {
  color: var(--primary) !important;
}

.header-transparent.navbar-scrolled .mobile-toggle-icon,
.header-transparent.navbar-scrolled .nav-search-icon {
  color: #2d3e50 !important;
}

.header-transparent.navbar-scrolled .nav-btn {
  background-color: var(--primary) !important;
  color: white !important;
}

.navbar {
  /* padding: 15px 0; */
  transition: all 0.3s ease;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
}

.nav-link {
  font-weight: 600;
  margin: 0 10px;
  transition: color 0.3s ease;
  position: relative;
}

/* Nav Link Bridge */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: transparent;
}

/* Sections */
.section-padding {
  padding: 100px 0;
}

/* Hero Section V2 */
.hero-section-v2 {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 40%, #fff0f5 100%);
  padding-top: 120px;
  padding-bottom: 60px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section-v2::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(172, 33, 137, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-v2-row {
  min-height: calc(100vh - 180px);
}

.hero-v2-content {
  padding-right: 40px;
}

.hero-v2-heading {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.05;
  font-family: var(--font-heading);
  margin-bottom: 20px;
  color: var(--text-main);
}

.hero-v2-highlight {
  color: var(--primary);
  font-weight: 700;
}

.hero-v2-sub-text {
  color: var(--text-main);
  font-weight: 500;
}

.hero-v2-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-v2-tagline {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 35px;
}

/* Hero Stats */
.hero-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 35px;
}

.hero-v2-stat-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.hero-v2-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(172, 33, 137, 0.1);
  border-color: rgba(172, 33, 137, 0.15);
}

.hero-v2-stat-icon {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.hero-v2-stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero-v2-stat-label {
  font-size: 9px;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Hero CTA */
.hero-v2-cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 36px;
  border: 2px solid var(--text-main);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-v2-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: left 0.4s ease;
  z-index: -1;
}

.hero-v2-cta:hover {
  color: #fff;
  border-color: var(--primary);
}

.hero-v2-cta:hover::before {
  left: 0;
}

/* Hero Doctor Image */
.hero-v2-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-v2-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  max-width: 480px;
  width: 100%;
}

.hero-v2-doctor-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
}

.hero-v2-doctor-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.hero-v2-doctor-info h3 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.hero-v2-doctor-info p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}

/* Hero V2 Responsive */
@media (max-width: 991px) {
  .hero-section-v2 {
    padding-top: 110px;
    padding-bottom: 40px;
    min-height: auto;
  }

  .hero-v2-row {
    min-height: auto;
    flex-direction: column-reverse;
  }

  .hero-v2-content {
    padding-right: 0;
    text-align: center;
  }

  .hero-v2-heading {
    font-size: 2.4rem;
  }

  .hero-v2-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-v2-tagline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-v2-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-v2-cta {
    margin-bottom: 30px;
  }

  .hero-v2-image-col {
    margin-bottom: 30px;
  }

  .hero-v2-image-wrapper {
    max-width: 350px;
  }

  .hero-v2-doctor-img {
    height: 420px;
  }
}

@media (max-width: 575px) {
  .hero-v2-heading {
    font-size: 2rem;
  }

  .hero-v2-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-v2-stat-card {
    padding: 14px 8px;
  }

  .hero-v2-stat-number {
    font-size: 1.3rem;
  }

  .hero-v2-doctor-img {
    height: 350px;
  }
}

/* Original hero (kept for reference) */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}


/* Services */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: all 0.4s ease;
  height: 100%;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h4 {
  margin-bottom: 15px;
}

/* About Us */
.about-img-wrap {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about-img-wrap img {
  border-radius: var(--border-radius);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--secondary);
  color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.about-badge h3 {
  color: white;
  margin: 0;
  font-size: 2.5rem;
}

/* FAQ Accordion */
.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--text-main);
  box-shadow: none;
}

.custom-accordion .accordion-button::after {
  content: '\f067';
  /* fa-plus */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  background-image: none;
  font-size: 14px;
  color: var(--text-muted);
  transform: none;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  content: '\f068';
  /* fa-minus */
  background-image: none;
  transform: none;
}

.custom-accordion .accordion-item {
  transition: all 0.3s ease;
  border-left: 4px solid transparent !important;
}

.custom-accordion .accordion-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left-color: var(--primary) !important;
}

.custom-accordion .accordion-button:hover {
  color: var(--primary) !important;
}

/* Why Choose Us */
.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--sky-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-right: 20px;
}

/* Testimonials / Reviews */
.reviews-scroll-container {
  max-height: 600px;
  overflow-y: auto;
  padding-right: 15px;
  padding-bottom: 20px;
}

.reviews-scroll-container::-webkit-scrollbar {
  width: 6px;
}

.reviews-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.reviews-scroll-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.reviews-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.reviews-masonry {
  column-count: 1;
  column-gap: 20px;
}

@media (min-width: 768px) {
  .reviews-masonry {
    column-count: 2;
  }
}

@media (min-width: 992px) {
  .reviews-masonry {
    column-count: 3;
  }
}

.review-box {
  break-inside: avoid;
  margin-bottom: 20px;
  border: none;
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.reviews-masonry .review-box:nth-child(8n+1) {
  background-color: #e0f7fa;
}

.reviews-masonry .review-box:nth-child(8n+2) {
  background-color: #fce4ec;
}

.reviews-masonry .review-box:nth-child(8n+3) {
  background-color: #fff9c4;
}

.reviews-masonry .review-box:nth-child(8n+4) {
  background-color: #e8f5e9;
}

.reviews-masonry .review-box:nth-child(8n+5) {
  background-color: #ffe0b2;
}

.reviews-masonry .review-box:nth-child(8n+6) {
  background-color: #f3e5f5;
}

.reviews-masonry .review-box:nth-child(8n+7) {
  background-color: #e3f2fd;
}

.reviews-masonry .review-box:nth-child(8n+8) {
  background-color: #ffebee;
}

/* Team */
.team-member {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 25px;
}

.team-info h4 {
  margin-bottom: 5px;
}

.team-info p {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-social a {
  color: var(--text-muted);
  margin: 0 10px;
  transition: color 0.3s ease;
}

.team-social a:hover {
  color: var(--primary);
}

/* Blog */
.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.blog-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-title a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--primary);
}

.read-more {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* Booking Section */
.booking-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.booking-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

.custom-input {
  border: 1px solid #e1e5eb;
  border-radius: 6px;
  padding: 12px 15px;
  font-size: 14px;
  color: #6c757d;
  box-shadow: none !important;
  transition: border-color 0.3s ease;
}

.custom-input:focus {
  border-color: #d8ddfa;
}

.form-select.custom-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23d8ddfa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.submit-btn {
  border-radius: 6px;
  transition: background-color 0.3s ease;
  border: none;
}

.submit-btn:hover {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}

/* Footer */
.footer {
  background-color: #2d3e50;
  /* Dark Slate Blue */
  color: white;
  padding: 100px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.8;
}

.footer-heading {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-family: var(--font-body);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-contacts div {
  color: white;
  font-size: 15px;
  line-height: 1.6;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 20px;
  font-size: 18px;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  opacity: 0.7;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

.copyright-text {
  font-size: 14px;
}

.scroll-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #e5e5fd;
  color: #2d3e50;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: absolute;
  right: 0;
  bottom: -15px;
}

.scroll-to-top:hover {
  background-color: white;
  color: #2d3e50;
  transform: translateY(-3px);
}

/* GSAP utility classes */
.gsap-fade-up {
  opacity: 0;
  transform: translateY(30px);
}

.gsap-fade-in {
  opacity: 0;
}

/* Kid-Friendly Team Blob Styles */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
}

.team-img-wrapper {
  position: relative;
  /* Fun blob shape */
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 1.5rem;
  border: 8px solid #ffe08a;
  transition: all 0.5s ease;
  box-shadow: 0 10px 25px rgba(255, 224, 138, 0.4);
}

.team-member:nth-child(2n) .team-img-wrapper {
  border-color: #48dbfb;
  box-shadow: 0 10px 25px rgba(72, 219, 251, 0.4);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.team-member:nth-child(3n) .team-img-wrapper {
  border-color: #ff6b6b;
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
  border-radius: 50% 50% 30% 70% / 50% 40% 60% 50%;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-member:hover .team-img-wrapper {
  border-radius: 50%;
}

.team-member:hover .team-img-wrapper img {
  transform: scale(1.1);
}

.team-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #2d3e50;
  margin-bottom: 0.25rem;
}

.team-info p {
  font-size: 1rem;
  color: #ff9f43;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Fun Blog Styles */
.fun-blog-card {
  background: #ffffff;
  border-radius: 40px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 4px solid transparent;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}

.fun-blog-card:hover {
  transform: translateY(-12px) rotate(-1deg);
}

.card-color-1:hover {
  border-color: #ff9f43;
}

.card-color-2:hover {
  border-color: #48dbfb;
}

.card-color-3:hover {
  border-color: #ee5253;
}

.fun-blog-img-wrap {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  border: 4px solid #f1f2f6;
  aspect-ratio: 4/3;
}

.fun-blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fun-blog-card:hover .fun-blog-img-wrap img {
  transform: scale(1.1) rotate(2deg);
}

.fun-blog-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.85rem;
}

.card-color-1 .fun-blog-badge {
  background: #ff9f43;
  box-shadow: 0 4px 10px rgba(255, 159, 67, 0.4);
}

.card-color-2 .fun-blog-badge {
  background: #48dbfb;
  box-shadow: 0 4px 10px rgba(72, 219, 251, 0.4);
}

.card-color-3 .fun-blog-badge {
  background: #ee5253;
  box-shadow: 0 4px 10px rgba(238, 82, 83, 0.4);
}

.fun-blog-content h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
  font-family: var(--font-heading);
}

.fun-blog-content h4 a {
  color: #2d3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-color-1:hover .fun-blog-content h4 a {
  color: #ff9f43;
}

.card-color-2:hover .fun-blog-content h4 a {
  color: #48dbfb;
}

.card-color-3:hover .fun-blog-content h4 a {
  color: #ee5253;
}

.fun-blog-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #f1f2f6;
  color: #2d3e50;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.card-color-1:hover .fun-blog-btn {
  background: #ff9f43;
  color: #fff;
  box-shadow: 0 5px 15px rgba(255, 159, 67, 0.4);
}

.card-color-2:hover .fun-blog-btn {
  background: #48dbfb;
  color: #fff;
  box-shadow: 0 5px 15px rgba(72, 219, 251, 0.4);
}

.card-color-3:hover .fun-blog-btn {
  background: #ee5253;
  color: #fff;
  box-shadow: 0 5px 15px rgba(238, 82, 83, 0.4);
}

/* Service Cards Unique Colors */
.services-grid .service-card {
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  background-color: #fff;
  text-align: center;
}

.services-grid .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.services-grid .service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 25px auto;
  transition: all 0.3s ease;
}

.services-grid>div:nth-child(1) .service-card {
  background-color: #e0f7fa;
}

.services-grid>div:nth-child(1) .service-card:hover {
  border-color: #00bcd4;
}

.services-grid>div:nth-child(1) .service-icon {
  background-color: #00bcd4;
  color: #fff;
}

.services-grid>div:nth-child(2) .service-card {
  background-color: #fce4ec;
}

.services-grid>div:nth-child(2) .service-card:hover {
  border-color: #e91e63;
}

.services-grid>div:nth-child(2) .service-icon {
  background-color: #e91e63;
  color: #fff;
}

.services-grid>div:nth-child(3) .service-card {
  background-color: #fff9c4;
}

.services-grid>div:nth-child(3) .service-card:hover {
  border-color: #fbc02d;
}

.services-grid>div:nth-child(3) .service-icon {
  background-color: #fbc02d;
  color: #fff;
}

.services-grid>div:nth-child(4) .service-card {
  background-color: #e8f5e9;
}

.services-grid>div:nth-child(4) .service-card:hover {
  border-color: #4caf50;
}

.services-grid>div:nth-child(4) .service-icon {
  background-color: #4caf50;
  color: #fff;
}

.services-grid>div:nth-child(5) .service-card {
  background-color: #ffe0b2;
}

.services-grid>div:nth-child(5) .service-card:hover {
  border-color: #ff9800;
}

.services-grid>div:nth-child(5) .service-icon {
  background-color: #ff9800;
  color: #fff;
}

.services-grid>div:nth-child(6) .service-card {
  background-color: #f3e5f5;
}

.services-grid>div:nth-child(6) .service-card:hover {
  border-color: #9c27b0;
}

.services-grid>div:nth-child(6) .service-icon {
  background-color: #9c27b0;
  color: #fff;
}

.services-grid>div:nth-child(7) .service-card {
  background-color: #e3f2fd;
}

.services-grid>div:nth-child(7) .service-card:hover {
  border-color: #2196f3;
}

.services-grid>div:nth-child(7) .service-icon {
  background-color: #2196f3;
  color: #fff;
}

.services-grid>div:nth-child(8) .service-card {
  background-color: #ffebee;
}

.services-grid>div:nth-child(8) .service-card:hover {
  border-color: #f44336;
}

.services-grid>div:nth-child(8) .service-icon {
  background-color: #f44336;
  color: #fff;
}

.services-grid>div:nth-child(9) .service-card {
  background-color: #e8eaf6;
}

.services-grid>div:nth-child(9) .service-card:hover {
  border-color: #3f51b5;
}

.services-grid>div:nth-child(9) .service-icon {
  background-color: #3f51b5;
  color: #fff;
}

.services-grid>div:nth-child(10) .service-card {
  background-color: #f0f4c3;
}

.services-grid>div:nth-child(10) .service-card:hover {
  border-color: #c0ca33;
}

.services-grid>div:nth-child(10) .service-icon {
  background-color: #c0ca33;
  color: #fff;
}

.services-grid>div:nth-child(11) .service-card {
  background-color: #e0f2f1;
}

.services-grid>div:nth-child(11) .service-card:hover {
  border-color: #009688;
}

.services-grid>div:nth-child(11) .service-icon {
  background-color: #009688;
  color: #fff;
}

/* ==========================================================================
   About Page Specific Sections (Kids Friendly Design)
   ========================================================================== */

/* Hero Section */
.about-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(230, 62, 103, 0.85), rgba(0, 147, 200, 0.85)),
    /* var(--pink-dark) and var(--sky-blue) */
    url('../assests/images/all-pages-banner.jpg') center/cover no-repeat;
  color: var(--white);
  padding-top: 10rem;
  padding-bottom: 4rem;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.about-hero-content {
  max-width: 800px;
}

.about-hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  font-weight: 500;
}

/* Intro Split Section */
.about-intro {
  padding: 8rem 0;
  background-color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-left h2 {
  font-size: 3rem;
  color: var(--text-main);
  line-height: 1.2;
}

.intro-right p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-right p:last-child {
  margin-bottom: 0;
}

/* Values Section */
.values-section {
  background-color: #eaf8f4;
  /* Soft mint green */
  padding: 8rem 0;
  border-radius: 50px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--text-main);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 30px;
  box-shadow: var(--box-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 4px solid transparent;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Fun colorful borders for each card on hover */
.value-card:nth-child(1):hover {
  border-color: var(--pink-light);
}

.value-card:nth-child(2):hover {
  border-color: var(--sky-blue);
}

.value-card:nth-child(3):hover {
  border-color: var(--green-light);
}

.value-card:nth-child(4):hover {
  border-color: var(--secondary);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: #f1f2f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.value-card:nth-child(1) .value-icon {
  background: rgba(255, 106, 163, 0.15);
  color: var(--pink-light);
}

.value-card:nth-child(2) .value-icon {
  background: rgba(0, 147, 200, 0.15);
  color: var(--sky-blue);
}

.value-card:nth-child(3) .value-icon {
  background: rgba(68, 253, 51, 0.15);
  color: var(--green-light);
}

.value-card:nth-child(4) .value-icon {
  background: rgba(255, 159, 67, 0.15);
  color: var(--secondary);
}

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

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Team Section */
.team-section {
  padding: 8rem 0;
  background-color: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.team-member {
  text-align: center;
}

.team-img-wrapper {
  position: relative;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 1.5rem;
  border: 8px solid var(--secondary);
  transition: all 0.5s ease;
  box-shadow: 0 10px 25px rgba(255, 159, 67, 0.4);
}

.team-member:nth-child(2) .team-img-wrapper {
  border-color: var(--sky-blue);
  box-shadow: 0 10px 25px rgba(0, 147, 200, 0.4);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.team-member:nth-child(3) .team-img-wrapper {
  border-color: var(--pink-light);
  box-shadow: 0 10px 25px rgba(255, 106, 163, 0.4);
  border-radius: 50% 50% 30% 70% / 50% 40% 60% 50%;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-member:hover .team-img-wrapper {
  border-radius: 50%;
}

.team-member:hover .team-img-wrapper img {
  transform: scale(1.1);
}

.team-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.team-info p {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
  padding: 8rem 0;
  background-color: var(--bg-light);
  /* Soft yellowish white */
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 30px;
  box-shadow: var(--box-shadow);
  position: relative;
  border: 3px solid var(--pink-light);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* Chat bubble tail */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 40px;
  width: 30px;
  height: 30px;
  background: var(--white);
  border-bottom: 3px solid var(--pink-light);
  border-right: 3px solid var(--pink-light);
  transform: rotate(45deg);
}

.testimonial-card .stars {
  color: var(--secondary);
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.testimonial-card .quote {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.client-info {
  padding-left: 10px;
  border-left: 4px solid var(--pink-light);
}

.client-info strong {
  display: block;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.client-info span {
  color: #888;
  font-size: 0.95rem;
  font-weight: 500;
}

/* New Sections CSS */
.mission-vision {
  padding: 6rem 0;
  background: var(--bg-light);
  border-radius: 50px;
}

.mv-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 30px;
  box-shadow: var(--box-shadow);
  border: 4px solid var(--secondary);
  height: 100%;
}

.mv-card h3 {
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.work-process {
  padding: 6rem 0;
  background: var(--white);
}

.process-step {
  text-align: center;
  position: relative;
}

.process-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(172, 33, 137, 0.3);
  /* --primary */
}

.process-step:nth-child(2) .process-icon {
  background: var(--pink-light);
  box-shadow: 0 10px 20px rgba(255, 106, 163, 0.3);
}

.process-step:nth-child(3) .process-icon {
  background: var(--green-light);
  box-shadow: 0 10px 20px rgba(68, 253, 51, 0.3);
}

.process-step:nth-child(4) .process-icon {
  background: var(--secondary);
  box-shadow: 0 10px 20px rgba(255, 159, 67, 0.3);
}

.happy-clients {
  padding: 6rem 0;
  background: #eaf8f4;
  border-radius: 50px;
  text-align: center;
}

.counter-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 30px;
  border: 3px solid var(--green-light);
}

.counter-box h3 {
  font-size: 3rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.outro-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, rgba(0, 147, 200, 0.2), rgba(230, 62, 103, 0.2));
  text-align: center;
  border-radius: 50px;
  margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 3rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-left h2 {
    font-size: 2.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }
}

/* Kids Friendly Breadcrumb */
.kids-breadcrumb {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.kids-breadcrumb .breadcrumb-item {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
}

.kids-breadcrumb .breadcrumb-item a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.kids-breadcrumb .breadcrumb-item a:hover {
  color: var(--yellow-light);
}

.kids-breadcrumb .breadcrumb-item.active {
  color: var(--yellow-light);
}

.kids-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: ">>";
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  font-weight: 900;
  margin: 0 0.8rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
}

.floating-whatsapp:hover {
  background-color: #128c7e;
  color: white;
  transform: scale(1.1) rotate(5deg);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
 / *   O f f c a n v a s   M e n u   M o b i l e   A n i m a t i o n s   * / 
 @ m e d i a   ( m a x - w i d t h :   9 9 1 p x )   { 
     . o f f c a n v a s - b o d y   . c u s t o m - n a v - l i n k s   . n a v - i t e m   { 
         o p a c i t y :   0 ; 
         t r a n s f o r m :   t r a n s l a t e X ( - 2 0 p x ) ; 
         t r a n s i t i o n :   o p a c i t y   0 . 4 s   e a s e ,   t r a n s f o r m   0 . 4 s   e a s e ; 
     } 
     
     . o f f c a n v a s . s h o w   . c u s t o m - n a v - l i n k s   . n a v - i t e m   { 
         o p a c i t y :   1 ; 
         t r a n s f o r m :   t r a n s l a t e X ( 0 ) ; 
     } 
 
     . o f f c a n v a s . s h o w   . c u s t o m - n a v - l i n k s   . n a v - i t e m : n t h - c h i l d ( 1 )   {   t r a n s i t i o n - d e l a y :   0 . 1 s ;   } 
     . o f f c a n v a s . s h o w   . c u s t o m - n a v - l i n k s   . n a v - i t e m : n t h - c h i l d ( 2 )   {   t r a n s i t i o n - d e l a y :   0 . 1 5 s ;   } 
     . o f f c a n v a s . s h o w   . c u s t o m - n a v - l i n k s   . n a v - i t e m : n t h - c h i l d ( 3 )   {   t r a n s i t i o n - d e l a y :   0 . 2 s ;   } 
     . o f f c a n v a s . s h o w   . c u s t o m - n a v - l i n k s   . n a v - i t e m : n t h - c h i l d ( 4 )   {   t r a n s i t i o n - d e l a y :   0 . 2 5 s ;   } 
     . o f f c a n v a s . s h o w   . c u s t o m - n a v - l i n k s   . n a v - i t e m : n t h - c h i l d ( 5 )   {   t r a n s i t i o n - d e l a y :   0 . 3 s ;   } 
 
     . o f f c a n v a s - b o d y   . n a v - l i n k   { 
         f o n t - s i z e :   1 . 1 r e m ; 
         p a d d i n g :   1 2 p x   0   ! i m p o r t a n t ; 
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ; 
         f o n t - w e i g h t :   6 0 0 ; 
     } 
 } 
  
 