﻿@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');
/* ================================================================
   IMAAN & AKHLAQ â€” PIXEL-PERFECT KIDBA-STYLE STYLESHEET v4
   Brand Colors: Pink #D63678 | Orange #E08020 | Navy #1E2D5A | Tan #C99A6B
   ================================================================ */

/* â”€â”€â”€ DESIGN TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  /* â˜… BRAND PALETTE â˜… */
  --c-pink:        #D63678;   /* Primary â€” Magenta Pink */
  --c-pink-d:      #B02460;   /* Darker pink */
  --c-pink-l:      #F04D90;   /* Lighter pink */

  --c-orange:      #E08020;   /* Secondary â€” Amber Orange */
  --c-orange-d:    #B85F0A;   /* Darker orange */
  --c-orange-l:    #F5A040;   /* Lighter orange */

  --c-navy:        #1E2D5A;   /* Tertiary â€” Deep Navy */
  --c-navy-d:      #111A38;   /* Darker navy */
  --c-navy-l:      #2E4480;   /* Lighter navy */

  --c-tan:         #C99A6B;   /* Accent â€” Caramel Tan */
  --c-tan-d:       #A07844;   /* Darker tan */
  --c-tan-l:       #E0BC96;   /* Lighter tan */

  /* Functional aliases (used in components) */
  --c-primary:     var(--c-pink);
  --c-primary-d:   var(--c-pink-d);
  --c-primary-l:   var(--c-pink-l);
  --c-accent:      var(--c-orange);
  --c-accent-d:    var(--c-orange-d);
  --c-dark-brand:  var(--c-navy);

  /* Neutral palette */
  --c-dark:        #1E2D5A;   /* navy doubles as text dark */
  --c-mid:         #3d3d55;
  --c-soft:        #6b7280;
  --c-border:      #e5e7eb;
  --c-bg:          #ffffff;
  --c-bg-soft:     #FDF8F5;   /* warm tint */
  --c-bg-pink:     #FDF0F6;   /* light pink bg */
  --c-bg-navy:     #EEF1F8;   /* light navy bg */

  /* Legacy aliases so existing component classes still work */
  --c-green:       var(--c-pink);
  --c-green-d:     var(--c-pink-d);
  --c-green-l:     var(--c-pink-l);
  --c-yellow:      var(--c-orange-l);
  --c-blue:        var(--c-navy);
  --c-purple:      var(--c-navy-d);
  --c-pink-old:    var(--c-pink);
  --c-teal:        var(--c-tan);
  --c-bg-green:    var(--c-bg-pink);

  /* Shadows */
  --sh-xs: 0 2px 8px  rgba(30,45,90,.06);
  --sh-sm: 0 4px 20px rgba(30,45,90,.08);
  --sh-md: 0 8px 40px rgba(30,45,90,.10);
  --sh-lg: 0 16px 60px rgba(30,45,90,.14);

  /* Radii */
  --r-xs:  8px;
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  40px;
  --r-pill:50px;

  /* Typography */
  --f-head: 'Poppins', sans-serif;
  --f-body: 'Nunito', sans-serif;

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --tx:   all .3s var(--ease);

  /* Layout */
  --sec-py:    100px;
  --hdr-h:     108px;
}

/* â”€â”€â”€ BASE RESET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: var(--f-body);
  color: var(--c-mid);
  background: var(--c-bg);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--f-head);
  color: var(--c-dark);
  line-height: 1.2;
  margin: 0;
}

a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
ul { list-style:none; padding:0; margin:0; }
button { font-family: var(--f-head); cursor:pointer; }

.section-padding { padding: var(--sec-py) 0; }
.bg-light-green  { background: var(--c-bg-pink); }

/* â”€â”€â”€ CUSTOM SCROLLBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: #f5eef6; }
::-webkit-scrollbar-thumb { background: var(--c-pink); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-pink-d); }
::selection { background: rgba(214,54,120,.18); color: var(--c-pink-d); }

/* â”€â”€â”€ GLASSMORPHISM & 3D UTILITIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.glass-panel {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 40px rgba(30, 45, 90, 0.08);
  border-radius: var(--r-md);
}
.volumetric-shadow {
  box-shadow: 
    0 4px 8px rgba(30,45,90,.05), 
    0 12px 24px rgba(30,45,90,.08), 
    inset 0 4px 8px rgba(255,255,255,0.8),
    inset 0 -4px 8px rgba(0,0,0,0.04);
}

/* â”€â”€â”€ SCROLL PROGRESS BAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#scrollProgress {
  position: fixed; top:0; left:0; z-index: 10000;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--c-pink), var(--c-orange));
  transition: width .1s linear;
  pointer-events: none;
}

/* â”€â”€â”€ KIDBA-STYLE SPLASH SCREEN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #FDF8F5;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
  overflow: hidden;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Floating decorative shapes */
.splash-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.splash-shape {
  position: absolute; border-radius: 50%;
  opacity: 0.14; animation-timing-function: ease-in-out; animation-iteration-count: infinite;
}
.shape-1 { width: 180px; height: 180px; background: var(--c-pink); top: -40px; left: -30px; animation: splashFloat 8s infinite; }
.shape-2 { width: 120px; height: 120px; background: var(--c-orange); top: 15%; right: -20px; animation: splashFloat 10s infinite 1s; }
.shape-3 { width: 90px; height: 90px; background: var(--c-navy); bottom: 20%; left: 5%; animation: splashFloat 7s infinite 2s; }
.shape-4 { width: 140px; height: 140px; background: var(--c-tan); bottom: -30px; right: 10%; animation: splashFloat 9s infinite 0.5s; }
.shape-5 { width: 60px; height: 60px; background: var(--c-pink); top: 40%; right: 15%; animation: splashFloat 6s infinite 3s; border-radius: 12px; transform: rotate(45deg); }
.shape-6 { width: 50px; height: 50px; background: var(--c-orange); top: 60%; left: 12%; animation: splashFloat 8s infinite 1.5s; }
.shape-7 { width: 30px; height: 30px; background: var(--c-pink); top: 10%; left: 35%; animation: splashFloat 5s infinite 2.5s; }
.shape-8 { width: 45px; height: 45px; background: var(--c-tan); bottom: 15%; left: 40%; animation: splashFloat 7s infinite 4s; border-radius: 10px; transform: rotate(30deg); }

@keyframes splashFloat {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  33% { transform: translateY(-15px) scale(1.05) rotate(5deg); }
  66% { transform: translateY(8px) scale(0.95) rotate(-3deg); }
}

/* Center content */
.splash-center {
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 2;
}

/* Logo */
.splash-logo-wrap {
  margin-bottom: 24px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--c-pink);
  background: #fff;
  box-shadow: 0 12px 30px rgba(214, 54, 120, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: splashLogoBounce 2.5s ease-in-out infinite;
}
.splash-logo { 
  width: 100%; 
  height: 100%; 
  transform: scale(1.05);
  object-fit: cover; 
}

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

/* Animated wordmark (Kidba multi-color letters) */
.splash-wordmark {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: 2.6rem; letter-spacing: 2px;
  margin-bottom: 6px; line-height: 1;
  display: flex; align-items: baseline; gap: 1px;
}
.sw-let {
  display: inline-block;
  animation: swPop .5s ease both;
  text-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.sw-amp {
  color: #E08020; font-size: 1.8rem; margin: 0 8px;
  font-family: var(--f-head); font-weight: 700;
  animation: swPop .5s ease .3s both;
}

@keyframes swPop {
  0% { transform: scale(0) translateY(20px); opacity: 0; }
  60% { transform: scale(1.15) translateY(-4px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Decorative icon */
.splash-icon {
  position: absolute; top: -10px; right: -52px;
  animation: splashPenFloat 3s ease-in-out infinite;
}
@keyframes splashPenFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(4deg); }
}

.splash-sparkle { animation: splashSparkle 1.5s ease-in-out infinite; }
.sp-1 { animation-delay: 0s; }
.sp-2 { animation-delay: 0.4s; }
.sp-3 { animation-delay: 0.8s; }
@keyframes splashSparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Progress bar (Kidba horizontal style) */
.splash-progress-track {
  width: 240px; height: 5px;
  background: rgba(214, 54, 120, 0.12);
  border-radius: 4px; margin-top: 22px;
  overflow: hidden; position: relative;
}
.splash-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #D63678, #E08020);
  border-radius: 4px;
  animation: splashProgress 1.3s ease-in-out forwards;
}
@keyframes splashProgress {
  0% { width: 0%; }
  20% { width: 15%; }
  50% { width: 55%; }
  80% { width: 85%; }
  100% { width: 100%; }
}

/* Loading text */
.splash-loading-text {
  font-family: var(--f-body);
  font-size: .88rem; font-weight: 600;
  color: #8B7E74; margin-top: 14px; letter-spacing: 0.3px;
}
.splash-dots { animation: splashDots 1.4s steps(4, end) infinite; display: inline-block; width: 20px; text-align: left; }
@keyframes splashDots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
}

/* Bottom tagline */
.splash-tagline {
  position: absolute; bottom: 32px;
  font-family: var(--f-body);
  font-size: .78rem; font-weight: 600;
  color: #B5A99A; letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 575px) {
  .splash-logo { height: 65px; }
  .splash-wordmark { font-size: 1.9rem; }
  .splash-progress-track { width: 180px; }
  .splash-icon { display: none; }
}

/* â”€â”€â”€ BACK TO TOP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.back-to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 997;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--c-pink), var(--c-orange));
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(214,54,120,.4);
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: var(--tx);
}
.back-to-top.show  { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); color: #fff; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HEADER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.top-bar {
  background: var(--c-navy);
  padding: 8px 0;
  position: relative; z-index: 999;
}
.top-bar-info {
  display: flex; align-items: center; gap: 20px;
  font-size: .8rem; color: rgba(255,255,255,.7); margin: 0;
}
.top-bar-info li { display: flex; align-items: center; gap: 6px; }
.top-bar-info li i { color: var(--c-orange-l); font-size: .75rem; }

.top-bar-social { display: flex; align-items: center; gap: 8px; justify-content: flex-end; }
.top-bar-social a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .7rem; transition: var(--tx);
}
.top-bar-social a:hover { background: var(--c-pink); transform: translateY(-2px); }

/* Sticky Navbar */
.site-header { position: sticky; top: 0; z-index: 998; }
.main-navbar {
  background: #fff;
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(30,45,90,.08);
  transition: padding .3s var(--ease), box-shadow .3s var(--ease);
}
.main-navbar.scrolled { padding: 8px 0; box-shadow: 0 4px 30px rgba(30,45,90,.13); }

/* Brand / Logo */
.site-logo {
  height: 70px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, height 0.3s ease;
}
.site-logo:hover {
  transform: scale(1.05);
}
.main-navbar.scrolled .site-logo {
  height: 50px;
}

/* Nav links */
.navbar-nav .nav-link {
  font-family: var(--f-head); font-size: .86rem; font-weight: 600;
  color: var(--c-navy) !important;
  padding: 7px 12px !important; border-radius: var(--r-xs);
  position: relative; transition: color .25s, background .25s;
}
.navbar-nav .nav-link::after {
  content: ''; position: absolute;
  bottom: 3px; left: 50%; right: 50%;
  height: 2px; background: var(--c-pink); border-radius: 2px;
  transition: left .3s var(--ease), right .3s var(--ease);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: 12px; right: 12px; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--c-pink) !important; }

/* Nav CTA */
.btn-nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--c-pink), var(--c-orange));
  color: #fff !important;
  padding: 10px 20px !important; border-radius: var(--r-pill) !important;
  font-family: var(--f-head); font-size: .84rem; font-weight: 700;
  border: none; box-shadow: 0 4px 14px rgba(214,54,120,.35);
  transition: var(--tx); white-space: nowrap;
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(214,54,120,.45); color: #fff; }

/* â”€â”€ LOGIN DROPDOWN (Kidba Style) â”€â”€ */
.kh-login-menu {
  border-radius: 20px; border: none;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  margin-top: 15px; padding: 12px 0;
  min-width: 240px;
  background: #fff;
  overflow: hidden;
  animation: khFadeInDown 0.3s ease-out;
}
.kh-login-menu .dropdown-item {
  font-family: var(--f-body); font-weight: 600;
  padding: 10px 25px; color: var(--c-navy);
  transition: all .25s ease; display: flex; align-items: center;
}
.kh-login-menu .dropdown-item i {
  color: var(--c-primary); font-size: 1rem;
  width: 25px; margin-right: 10px;
}
.kh-login-menu .dropdown-item:hover {
  background: rgba(255, 128, 0, 0.06); color: var(--c-primary);
  transform: translateX(5px);
}
.kh-login-menu .dropdown-divider { margin: 10px 0; border-top: 1px solid #f0f0f0; }

@keyframes khFadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Custom hamburger */
.navbar-toggler { border: none; background: none; padding: 6px 8px; outline: none; box-shadow: none !important; }
.toggler-icon   { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.toggler-icon span { display: block; height: 2px; background: var(--c-navy); border-radius: 2px; transition: var(--tx); transform-origin: center; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KIDBA-STYLE HERO SECTION â€” FULL ANIMATED VERSION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ SECTION WRAPPER â”€â”€ */
.kidba-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

/* â”€â”€ SCROLLING KEN BURNS BACKGROUND SLIDER â”€â”€ */
.kh-bg-slider {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background: var(--c-navy);
}

.kh-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  filter: brightness(0.9);
  animation: slideLeftToRight 15s infinite cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateX(-100%);
}

.kh-slide.slide-1 {
  background-image: url('../img/hero-bg-library-v2.jpg');
  animation-delay: 0s;
}

.kh-slide.slide-2 {
  background-image: url('../img/hero-slide-2-CT2NPYgP (1).png');
  background-position: center top;
  animation-delay: 2.5s;
}

.kh-slide.slide-3 {
  background-image: url('../img/hero-slide-3-CEnLNR65 (1).png');
  background-position: center top;
  animation-delay: 5s;
}

.kh-slide.slide-4 {
  background-image: url('../img/hero-slide-4-Dvq5Fvo_ (1).png');
  background-position: center top;
  animation-delay: 7.5s;
}

.kh-slide.slide-5 {
  background-image: url('../img/hero-slide-5-DjDsLXyf.png');
  background-position: center top;
  animation-delay: 10s;
}

.kh-slide.slide-6 {
  background-image: url('../img/hero-slide-6-D0eMAfvp.png');
  background-position: center top;
  animation-delay: 12.5s;
}

@keyframes slideLeftToRight {
  0% { transform: translateX(-100%); opacity: 1; }
  5% { transform: translateX(0); opacity: 1; }
  16.66% { transform: translateX(0); opacity: 1; }
  21.66% { transform: translateX(100%); opacity: 1; }
  22% { transform: translateX(100%); opacity: 0; }
  99% { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(-100%); opacity: 1; }
}

/* â”€â”€ COLOR OVERLAY (orange-left gradient, exact Kidba) â”€â”€ */
.kh-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(214, 54, 120, 0.92) 0%,
    rgba(224, 128, 32, 0.80) 38%,
    rgba(30, 45, 90, 0.10) 70%,
    transparent 100%
  );
}

/* â”€â”€ ROW POSITIONING â”€â”€ */
.kh-row { min-height: 100vh; padding: 140px 0 100px; position: relative; z-index: 10; }

/* â”€â”€ CHALK DOODLES LAYER â”€â”€ */
.kh-doodles {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
}

/* Each SVG doodle: positioned and animated */
.kh-doodle {
  position: absolute;
  opacity: 0.18;
  fill: none;
}

/* Doodle positions */
.kh-doodle-star1   { width: 70px; height: 70px; top: 12%; left: 5%; animation: kh-spin-slow 18s linear infinite; }
.kh-doodle-circle1 { width: 80px; height: 80px; top: 25%; left: 15%; animation: kh-float 7s ease-in-out infinite; opacity: 0.14; }
.kh-doodle-triangle1 { width: 60px; height: 55px; bottom: 30%; left: 8%; animation: kh-sway 9s ease-in-out infinite; }
.kh-doodle-star2   { width: 55px; height: 55px; top: 8%;  left: 42%; animation: kh-spin-slow 22s linear infinite reverse; opacity: 0.13; }
.kh-doodle-circle2 { width: 90px; height: 90px; bottom: 20%; left: 28%; animation: kh-float 10s ease-in-out infinite 2s; opacity: 0.12; }
.kh-doodle-squiggle { width: 120px; height: 50px; top: 65%; left: 3%; animation: kh-sway 12s ease-in-out infinite 1s; opacity: 0.15; }
.kh-doodle-heart   { width: 60px; height: 55px; top: 18%; left: 33%; animation: kh-float 8s ease-in-out infinite 3s; opacity: 0.16; }

/* â”€â”€ FLOATING BUBBLES â”€â”€ */
.kh-bubble {
  position: absolute; border-radius: 50%; z-index: 2;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  animation: kh-bubble-rise linear infinite;
}
.kh-bubble-1 { width: 24px; height: 24px; left: 8%;  animation-duration: 12s; animation-delay: 0s;   bottom: -30px; }
.kh-bubble-2 { width: 16px; height: 16px; left: 18%; animation-duration: 9s;  animation-delay: 2s;   bottom: -30px; }
.kh-bubble-3 { width: 32px; height: 32px; left: 25%; animation-duration: 15s; animation-delay: 4s;   bottom: -30px; }
.kh-bubble-4 { width: 20px; height: 20px; left: 35%; animation-duration: 11s; animation-delay: 1.5s; bottom: -30px; }
.kh-bubble-5 { width: 14px; height: 14px; left: 42%; animation-duration: 8s;  animation-delay: 3s;   bottom: -30px; }

/* â”€â”€ SCROLL INDICATOR (left side) â”€â”€ */
.kh-scroll-hint {
  position: absolute; left: 28px; bottom: 120px; z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.kh-scroll-mouse {
  width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.6);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.kh-scroll-wheel {
  width: 4px; height: 8px; background: #fff; border-radius: 2px;
  animation: kh-scroll-wheel 2.5s ease-in-out infinite;
}
.kh-scroll-text {
  font-size: .68rem; font-weight: 700; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 2px;
  writing-mode: vertical-rl; transform: rotate(180deg);
}

/* â”€â”€ LEFT CONTENT â”€â”€ */
.kh-content-col { position: relative; z-index: 10; }
.kh-content { position: relative; }

/* Tag */
.kh-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(255,255,255,0.40);
  backdrop-filter: blur(8px);
  color: #fff; padding: 8px 18px; border-radius: 50px;
  font-family: var(--f-body); font-size: .9rem; font-weight: 700;
  margin-bottom: 20px; letter-spacing: 0.3px;
}
.kh-tag i { color: #FFD700; font-size: .8rem; }

/* Headline */
.kh-title {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-weight: 400;
  font-size: clamp(3.2rem, 6vw, 6rem);
  color: #fff; line-height: 1.05; margin-bottom: 28px;
  text-shadow: 3px 5px 15px rgba(0,0,0,0.20);
  letter-spacing: 1px;
}
.kh-title-highlight {
  color: #FFD06B;
  text-shadow: 2px 4px 12px rgba(0,0,0,0.15);
}

/* Description */
.kh-desc {
  font-family: var(--f-body); font-size: 1.1rem; font-weight: 500;
  color: rgba(255,255,255,0.92); line-height: 1.8; margin-bottom: 38px;
}

/* Buttons */
.kh-actions { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; margin-bottom: 44px; }

.kh-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #FF9B26, #FF6A00);
  color: #fff; padding: 16px 36px; border-radius: 8px;
  font-family: var(--f-head); font-weight: 800; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 10px 28px rgba(255,106,0,.45);
  transition: all .3s ease;
}
.kh-btn-primary i { font-size: .9rem; }
.kh-btn-primary:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(255,106,0,.55); color: #fff; }

.kh-btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff; padding: 14px 34px; border-radius: 8px;
  font-family: var(--f-head); font-weight: 800; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 1px;
  backdrop-filter: blur(8px);
  transition: all .3s ease;
}
.kh-btn-secondary:hover {
  background: rgba(255,255,255,0.30);
  transform: translateY(-5px);
  color: #fff;
}

/* Mini Stats */
.kh-mini-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border-radius: 12px; padding: 16px 28px;
  max-width: fit-content;
}
.kh-stat { text-align: center; padding: 0 18px; }
.kh-stat strong { display: block; font-family: 'Fredoka One', cursive; font-size: 1.7rem; color: #FFD06B; line-height: 1; }
.kh-stat span { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,0.82); text-transform: uppercase; letter-spacing: .5px; }
.kh-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.25); }

/* â”€â”€ RIGHT IMAGE â”€â”€ */
.kh-img-col { position: relative; z-index: 10; }
.kh-image-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: flex-end;
  height: calc(100vh - 100px);
}

.kh-main-img {
  max-width: 100%; height: auto; max-height: 86vh;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.35));
  position: relative; z-index: 2;
  animation: kh-float-img 7s ease-in-out infinite;
}

/* Floating Badges */
.kh-float-badge {
  position: absolute; z-index: 5;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 14px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 32px rgba(30,45,90,0.18);
  min-width: 200px;
  border: 1px solid rgba(255,255,255,0.8);
}
.kh-badge-top    { top: 18%; right: -10px; animation: kh-float 6s ease-in-out infinite; }
.kh-badge-bottom { bottom: 18%; left: -20px; animation: kh-float 8s ease-in-out infinite 2s; }
.kh-badge-icon   { font-size: 1.8rem; flex-shrink: 0; }
.kh-badge-text   { display: flex; flex-direction: column; }
.kh-badge-text strong { font-family: var(--f-head); font-size: .88rem; font-weight: 700; color: var(--c-navy); line-height: 1.2; }
.kh-badge-text small  { font-size: .72rem; color: var(--c-soft); margin-top: 2px; }

/* â”€â”€ TORN PAPER DIVIDER â”€â”€ */
.kh-torn-bottom {
  position: absolute; bottom: -2px; left: 0; width: 100%;
  z-index: 15; line-height: 0;
}
.kh-torn-bottom svg { display: block; width: 100%; height: 60px; }
@media (min-width: 992px) { .kh-torn-bottom svg { height: 100px; } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO KEYFRAME ANIMATIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@keyframes kh-spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes kh-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes kh-sway {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%       { transform: rotate(6deg)  translateY(-10px); }
}
@keyframes kh-bubble-rise {
  0%   { opacity: 0; transform: translateY(0) scale(0.8); }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1.4); }
}
@keyframes kh-scroll-wheel {
  0%   { transform: translateY(0);   opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}
@keyframes kh-float-img {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 991px) {
  .kidba-hero { text-align: center; }
  .kh-row { padding: 130px 0 80px; }
  .kh-img-col { display: none; }
  .kh-scroll-hint { display: none; }
  .kh-actions { justify-content: center; }
  .kh-mini-stats { margin: 0 auto; }
  .kh-badge-top, .kh-badge-bottom { display: none; }
}
@media (max-width: 575px) {
  .kh-title { font-size: clamp(2.8rem, 10vw, 3.5rem); }
  .kh-mini-stats { flex-direction: column; gap: 12px; }
  .kh-stat-divider { width: 80px; height: 1px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LEGACY .kidba-torn-paper (kept for compatibility)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.kidba-torn-paper {
  position: absolute; bottom: -2px; left: 0; width: 100%;
  z-index: 10; line-height: 0;
}
.kidba-torn-paper svg { display: block; width: 100%; height: 50px; }
@media (min-width: 992px) {
  .kidba-torn-paper svg { height: 90px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FEATURES STRIP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.features-strip { background: #fff; box-shadow: 0 4px 30px rgba(30,45,90,.07); position: relative; z-index: 5; }
.feature-strip-item {
  display: flex; align-items: center; gap: 14px; padding: 22px 20px;
  border-right: 1px solid var(--c-border); transition: background .25s; height: 100%;
}
.feature-strip-item:hover { background: var(--c-bg-pink); }
.features-strip-inner .col-6:nth-child(2n) .feature-strip-item,
.features-strip-inner .col-md-3:last-child  .feature-strip-item { border-right: none; }
@media (min-width: 768px) {
  .features-strip-inner .col-6:nth-child(2n) .feature-strip-item { border-right: 1px solid var(--c-border); }
  .features-strip-inner .col-md-3:last-child  .feature-strip-item { border-right: none; }
}
.fsi-icon { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: #fff; flex-shrink: 0; }
.fsi-text h6 { font-family: var(--f-head); font-size: .86rem; font-weight: 700; color: var(--c-navy); margin-bottom: 2px; line-height: 1.3; }
.fsi-text p  { font-size: .76rem; color: var(--c-soft); margin: 0; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SHARED SECTION HEADER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-tag {
  display: inline-block;
  background: rgba(214,54,120,.10); color: var(--c-pink-d);
  padding: 5px 16px; border-radius: var(--r-pill);
  font-family: var(--f-head); font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.7rem,3.2vw,2.5rem); font-weight: 800; color: var(--c-navy); line-height: 1.22; margin-bottom: 14px; }
.section-title .text-green  { color: var(--c-pink); }
.section-title .text-orange { color: var(--c-orange); }
.section-title .text-purple { color: var(--c-navy); }
.section-subtitle { font-size: .97rem; color: var(--c-soft); line-height: 1.8; max-width: 550px; margin: 0 auto; }
.section-desc     { font-size: .97rem; color: var(--c-soft); line-height: 1.8; margin-bottom: 14px; }

/* Global CTA */
.btn-primary-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--c-pink), var(--c-orange));
  color: #fff; padding: 13px 30px; border-radius: var(--r-pill);
  font-family: var(--f-head); font-weight: 700; font-size: .92rem;
  border: none; box-shadow: 0 8px 22px rgba(214,54,120,.32); transition: var(--tx);
}
.btn-primary-custom:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(214,54,120,.46); color: #fff; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KIDBA ABOUT SECTION (GREEN JAGGED STRIP)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.kidba-about-section {
  position: relative;
  background: linear-gradient(135deg, #4CD964, #32B74A);
  padding: 120px 0;
  color: #fff;
  z-index: 4;
}

/* Torn SVG Shapes - Keep them fixed to top and bottom edge */
.kidba-shape-top, .kidba-shape-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.kidba-shape-top {
  top: -1px; /* Overlap slightly to prevent sub-pixel gaps */
}
.kidba-shape-bottom {
  bottom: -1px;
}
.kidba-shape-top svg { display: block; width: calc(100% + 1.3px); height: 45px; transform: rotate(180deg); }
.kidba-shape-bottom svg { display: block; width: calc(100% + 1.3px); height: 45px; }

/* In SVG, the white color is the torn paper */
.kidba-shape-top svg path, .kidba-shape-bottom svg path {
  fill: #ffffff;
}

.ka-image-wrap {
  position: relative;
  text-align: center;
}
.ka-main-img {
  max-width: 90%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  /* Add playful bounce animation */
  animation: floatKidba 6s ease-in-out infinite;
}

.ka-content h2 {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}
.ka-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.ka-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.ka-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
}
.ka-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: #fff;
  color: #32B74A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.btn-kidba-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FF9B26, #FF6A00);
  color: #fff;
  font-family: 'Fredoka One', cursive, var(--f-head);
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(255, 106, 0, 0.4);
  transition: all 0.3s ease;
  border: none;
}
.btn-kidba-orange:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(255, 106, 0, 0.5);
}

@keyframes floatKidba {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}
.about-section { position: relative; overflow: hidden; }
.about-shapes  { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.about-shape-1 { position: absolute; width: 480px; height: 480px; background: rgba(214,54,120,.04); border-radius: 50%; top: -140px; right: -80px; }
.about-shape-2 { position: absolute; width: 280px; height: 280px; background: rgba(224,128,32,.04); border-radius: 50%; bottom: -90px; left: -40px; }
.about-images  { position: relative; }
.about-img-placeholder { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.about-img-main { margin-bottom: 14px; }
.main-img    { height: 290px; background: linear-gradient(135deg,#FDE8F4,#FFE8C8); }
.img-scene   { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.scene-bg    { font-size: 4.5rem; }
.scene-characters { display: flex; gap: 20px; font-size: 3.2rem; }
.scene-label { font-family: var(--f-head); font-weight: 700; font-size: .96rem; color: var(--c-pink-d); }
.scene-stars { font-size: 1.3rem; }
.about-img-secondary { display: flex; gap: 12px; align-items: stretch; }
.secondary-img { flex: 1; height: 150px; background: linear-gradient(135deg,#FFF4E8,#FFE8C8); }
.mini-scene { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.ms-icon { font-size: 2.3rem; }
.ms-text { font-family: var(--f-head); font-weight: 700; font-size: .86rem; color: var(--c-orange-d); }
.about-exp-badge {
  background: linear-gradient(135deg, var(--c-pink), var(--c-orange));
  color: #fff; border-radius: var(--r-md); padding: 14px 16px; text-align: center;
  min-width: 100px; flex-shrink: 0; box-shadow: 0 8px 22px rgba(214,54,120,.32);
  display: flex; flex-direction: column; justify-content: center;
}
.exp-num  { display: block; font-family: var(--f-head); font-size: 1.9rem; font-weight: 800; line-height: 1; }
.exp-text { font-size: .68rem; font-weight: 600; opacity: .9; margin-top: 3px; }
.about-floating-card {
  position: absolute; bottom: -10px; right: 0;
  background: #fff; border-radius: var(--r-md);
  padding: 12px 16px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-md); animation: floatCard 4s ease-in-out infinite;
  max-width: 220px; z-index: 2;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.afc-icon { font-size: 1.9rem; flex-shrink: 0; }
.afc-text strong { display: block; font-family: var(--f-head); font-size: .84rem; font-weight: 700; color: var(--c-navy); }
.afc-text small  { font-size: .7rem; color: var(--c-soft); }
.about-features  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.af-item { display: flex; align-items: flex-start; gap: 11px; background: var(--c-bg-pink); border-radius: var(--r-sm); padding: 13px; }
.af-icon { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.af-text h6 { font-family: var(--f-head); font-size: .83rem; font-weight: 700; color: var(--c-navy); margin-bottom: 2px; line-height: 1.3; }
.af-text p  { font-size: .76rem; color: var(--c-soft); margin: 0; line-height: 1.5; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KIDBA WELCOME SECTION (FEATURES)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.kidba-welcome-section {
  padding: 120px 0;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
}

.kw-header {
  margin-bottom: 40px;
}
.kw-header h2 {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #112A46;
  margin-bottom: 15px;
}
.kw-header p {
  color: #6B7B8F;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* 2x2 Features Grid */
.kw-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
}
@media (max-width: 575px) {
  .kw-features-grid { grid-template-columns: 1fr; }
}

.kw-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.kw-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  flex-shrink: 0;
}
/* Variations */
.kw-icon-box.c-green { background: linear-gradient(135deg, #4CD964, #32B74A); box-shadow: 0 10px 20px rgba(50, 183, 74, 0.3); }
.kw-icon-box.c-blue { background: linear-gradient(135deg, #1BCBE3, #0FA8BE); box-shadow: 0 10px 20px rgba(15, 168, 190, 0.3); }
.kw-icon-box.c-orange { background: linear-gradient(135deg, #FF9B26, #FF6A00); box-shadow: 0 10px 20px rgba(255, 106, 0, 0.3); }
.kw-icon-box.c-pink { background: linear-gradient(135deg, #FF4B9E, #E0287D); box-shadow: 0 10px 20px rgba(224, 40, 125, 0.3); }

.kw-text h4 {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: 1.25rem;
  color: #112A46;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}
/* Colored underline matching the icon */
.kw-item-green h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: #32B74A; }
.kw-item-blue h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: #0FA8BE; }
.kw-item-orange h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: #FF9B26; }
.kw-item-pink h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: #E0287D; }

.kw-text p {
  font-size: 0.95rem;
  color: #8C98A4;
  line-height: 1.6;
  margin: 0;
}

/* Right Side Image Area */
.kw-image-wrapper {
  position: relative;
  display: inline-block; /* to wrap tightly around image */
}
.kw-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* subtle border radius */
  box-shadow: 0 15px 40px rgba(0,0,0,0.06); /* subtle shadow similar to screenshot */
}
.kw-play-btn {
  position: absolute;
  bottom: 0px; /* Aligned to corner exactly */
  right: 0px;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #4CD964, #32B74A);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.3s;
}
.kw-play-btn:hover {
  transform: scale(1.05); /* slightly grow on hover */
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROGRAMS / CLASSES SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.kidba-programs-section {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
}

.kp-header {
  text-align: center;
  margin-bottom: 30px;
}
.kp-header h2 {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #112A46;
  margin-bottom: 20px;
}
.kp-header p {
  color: #6B7B8F;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.kp-filters {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.kp-filter-btn {
  background: transparent;
  border: none;
  font-family: 'Fredoka One', cursive, var(--f-head);
  color: #112A46;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: color 0.3s;
  padding: 5px 0;
}
.kp-filter-btn.active, .kp-filter-btn:hover {
  color: #32B74A;
}

.kidba-program-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.kidba-program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.kpc-image-area {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #ffffff;
}

.kpc-price-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: #FF4A5A;
  color: #ffffff;
  font-family: 'Fredoka One', cursive, var(--f-head);
  padding: 8px 15px;
  border-bottom-right-radius: 12px;
  font-size: 1rem;
  z-index: 5;
}

.kpc-body {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.kpc-badge {
  position: absolute;
  top: -15px;
  left: 25px;
  color: #ffffff;
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: 0.8rem;
  padding: 5px 15px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.kpc-title {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: 1.5rem;
  color: #112A46;
  margin-top: 10px;
  margin-bottom: 10px;
}

.kpc-time {
  font-size: 0.9rem;
  color: #8C98A4;
  margin-bottom: 15px;
  font-weight: 500;
}

.kpc-desc {
  color: #6B7B8F;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex: 1;
}

.kpc-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 20px;
  margin-top: auto;
  font-size: 0.95rem;
  color: #8C98A4;
}
.kpc-footer strong {
  color: #112A46;
  font-weight: 700;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROGRAMS / COURSES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.program-card {
  background: #fff; border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-sm); height: 100%; display: flex; flex-direction: column;
  position: relative; transition: var(--tx);
}
.program-card:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); }
.program-card.featured { border: 2px solid var(--c-orange); }
.pc-popular-tag {
  position: absolute; top: 14px; right: 14px; z-index: 4;
  background: var(--c-orange); color: #fff;
  font-family: var(--f-head); font-size: .7rem; font-weight: 700;
  padding: 4px 11px; border-radius: var(--r-pill);
}
.pc-header { padding: 26px 24px; display: flex; align-items: center; gap: 14px; position: relative; overflow: hidden; flex-shrink: 0; }
.pc-header::before { content: ''; position: absolute; width: 110px; height: 110px; background: rgba(255,255,255,.1); border-radius: 50%; top: -36px; right: -16px; }
.pc-icon  { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; flex-shrink: 0; }
.pc-badge { background: rgba(255,255,255,.2); color: #fff; padding: 4px 13px; border-radius: var(--r-pill); font-family: var(--f-head); font-size: .72rem; font-weight: 700; }
.pc-body     { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.pc-category { font-family: var(--f-head); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-pink); margin-bottom: 7px; }
.pc-title    { font-family: var(--f-head); font-size: 1.06rem; font-weight: 700; color: var(--c-navy); margin-bottom: 9px; }
.pc-desc     { font-size: .86rem; color: var(--c-soft); line-height: 1.68; margin-bottom: 14px; }
.pc-features { margin-bottom: 16px; }
.pc-features li { display: flex; align-items: center; gap: 8px; font-size: .83rem; color: var(--c-mid); padding: 4px 0; }
.pc-features li i { color: var(--c-pink); font-size: .76rem; flex-shrink: 0; }
.pc-footer { margin-top: auto; }
.pc-meta   { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.pc-meta span { display: flex; align-items: center; gap: 5px; font-size: .78rem; color: var(--c-soft); }
.pc-meta span i { color: var(--c-pink); font-size: .75rem; }
.btn-program {
  display: block; width: 100%; text-align: center;
  background: var(--c-bg-pink); color: var(--c-pink-d);
  padding: 10px; border-radius: var(--r-sm);
  font-family: var(--f-head); font-weight: 700; font-size: .86rem;
  border: 1.5px solid rgba(214,54,120,.2); transition: var(--tx);
}
.btn-program:hover { background: var(--c-pink); color: #fff; border-color: var(--c-pink); }
.btn-program-featured { background: linear-gradient(135deg,var(--c-orange),var(--c-orange-d)); color: #fff; border-color: transparent; }
.btn-program-featured:hover { background: linear-gradient(135deg,var(--c-orange-d),var(--c-orange)); color: #fff; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STORIES CAROUSEL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.story-card { background: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-md); transition: var(--tx); margin: 6px 3px 20px; height: calc(100% - 26px); }
.story-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); }
.sc-cover { height: 195px; position: relative; display: flex; align-items: flex-end; padding: 0 0 13px 15px; overflow: hidden; }
.sc-cover-art { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.cover-moon { font-size: 3.2rem; } .cover-stars { font-size: 1.3rem; }
.cover-title-art { font-family: var(--f-head); font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.8); text-align: center; padding: 0 14px; line-height: 1.3; }
.sc-level { background: rgba(255,255,255,.25); color: #fff; padding: 3px 11px; border-radius: var(--r-pill); font-family: var(--f-head); font-size: .7rem; font-weight: 700; position: relative; z-index: 2; }
.sc-body  { padding: 16px; }
.sc-tags  { display: flex; gap: 7px; margin-bottom: 9px; }
.tag-age,.tag-lang { padding: 3px 9px; border-radius: var(--r-pill); font-size: .7rem; font-weight: 700; font-family: var(--f-head); }
.tag-age  { background: rgba(214,54,120,.10); color: var(--c-pink-d); }
.tag-lang { background: rgba(224,128,32,.10); color: var(--c-orange-d); }
.sc-title { font-family: var(--f-head); font-size: .96rem; font-weight: 700; color: var(--c-navy); margin-bottom: 7px; }
.sc-desc  { font-size: .81rem; color: var(--c-soft); margin-bottom: 13px; line-height: 1.6; }
.sc-footer { display: flex; justify-content: space-between; align-items: center; }
.sc-stats  { display: flex; gap: 10px; font-size: .76rem; color: var(--c-soft); }
.sc-stats i { margin-right: 3px; }
.btn-read-story { display: flex; align-items: center; gap: 5px; background: var(--c-pink); color: #fff; padding: 6px 13px; border-radius: var(--r-sm); font-family: var(--f-head); font-size: .76rem; font-weight: 700; transition: var(--tx); white-space: nowrap; }
.btn-read-story:hover { background: var(--c-pink-d); color: #fff; transform: scale(1.04); }
.stories-swiper .swiper-pagination-bullet { background: var(--c-pink); }
.stories-swiper .swiper-pagination { bottom: 2px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KIDBA TEAM / CHARACTERS SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.kidba-team-section {
  padding: 120px 0;
  background-color: #F7F8FC;
  position: relative;
  z-index: 2;
}

.kt-header {
  text-align: center;
  margin-bottom: 60px;
}
.kt-header h2 {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #112A46;
  margin-bottom: 15px;
}
.kt-header p {
  color: #6B7B8F;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.kidba-team-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s;
  position: relative;
  margin-top: 20px;
  padding-bottom: 25px;
  height: 100%;
}
.kidba-team-card:hover {
  transform: translateY(-8px);
}

.kt-image-wrap {
  background: #EAF0F6; /* Soft placeholder */
  border-radius: 12px 12px 50% 50%; /* Playful blob bottom */
  height: 250px;
  margin-bottom: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}
/* For Imaan and Akhlaq images */
.kt-image-wrap img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 5px solid #fff;
  transform: translateY(15px); /* Push it slightly down */
  background: #fff;
}

.kt-plus-btn {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 45px;
  height: 45px;
  background: #FF4A5A; /* Pinkish Red */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(255, 74, 90, 0.4);
  cursor: pointer;
  transition: transform 0.3s;
  z-index: 5;
}
.kt-plus-btn:hover {
  transform: rotate(90deg) scale(1.1);
}

.kidba-team-card h5 {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: 1.4rem;
  color: #112A46;
  margin-bottom: 5px;
  margin-top: 15px; /* space from moved image */
}
.kidba-team-card span {
  display: block;
  color: #8C98A4;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CHARACTERS / TEAM
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.team-card { background: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-sm); height: 100%; transition: var(--tx); }
.team-card:hover { transform: translateY(-9px); box-shadow: var(--sh-lg); }
.tc-header { padding: 26px 18px; position: relative; overflow: hidden; }
.tc-header::before { content: ''; position: absolute; width: 140px; height: 140px; background: rgba(255,255,255,.1); border-radius: 50%; top: -46px; right: -28px; }
.tc-header::after  { content: ''; position: absolute; width: 74px; height: 74px; background: rgba(255,255,255,.08); border-radius: 50%; bottom: -28px; left: -18px; }
.tc-avatar { text-align: center; position: relative; z-index: 2; }
.avatar-art { display: flex; justify-content: center; }
.av-circle { width: 86px; height: 86px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 4px solid rgba(255,255,255,.5); box-shadow: 0 8px 18px rgba(0,0,0,.14); }
.tc-star-deco { position: absolute; top: 12px; right: 16px; font-size: 1.1rem; z-index: 2; animation: starPulse 2s ease-in-out infinite; }
@keyframes starPulse { 0%,100% { transform:scale(1); opacity:.8; } 50% { transform:scale(1.3); opacity:1; } }
.tc-body { padding: 18px; }
.tc-name { font-family: var(--f-head); font-size: 1.06rem; font-weight: 800; color: var(--c-navy); margin-bottom: 3px; text-align: center; }
.tc-role { font-family: var(--f-head); font-size: .74rem; font-weight: 700; color: var(--c-pink); text-transform: uppercase; letter-spacing: .5px; text-align: center; margin-bottom: 10px; }
.tc-bio  { font-size: .82rem; color: var(--c-soft); line-height: 1.68; text-align: center; margin-bottom: 12px; }
.tc-traits { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; }
.trait { padding: 3px 11px; border-radius: var(--r-pill); font-size: .7rem; font-weight: 700; font-family: var(--f-head); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   EVENTS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.event-card { background: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-sm); height: 100%; position: relative; transition: var(--tx); }
.event-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.ev-date-badge { position: absolute; top: 14px; left: 14px; z-index: 3; width: 54px; height: 54px; border-radius: 13px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.ev-day   { font-family: var(--f-head); font-size: 1.25rem; font-weight: 800; line-height: 1; }
.ev-month { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }
.ev-image { height: 175px; display: flex; align-items: center; justify-content: center; }
.ev-img-icon { font-size: 4.5rem; }
.ev-body     { padding: 18px 20px; }
.ev-category { font-family: var(--f-head); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--c-orange); margin-bottom: 7px; }
.ev-title    { font-family: var(--f-head); font-size: .98rem; font-weight: 700; color: var(--c-navy); margin-bottom: 9px; line-height: 1.35; }
.ev-desc     { font-size: .83rem; color: var(--c-soft); margin-bottom: 13px; line-height: 1.68; }
.ev-meta     { margin-bottom: 14px; }
.ev-meta span { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--c-soft); margin-bottom: 4px; }
.ev-meta i   { color: var(--c-pink); font-size: .76rem; flex-shrink: 0; }
.btn-ev-register { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg,var(--c-pink),var(--c-orange)); color: #fff; padding: 9px 18px; border-radius: var(--r-pill); font-family: var(--f-head); font-size: .8rem; font-weight: 700; transition: var(--tx); box-shadow: 0 4px 12px rgba(214,54,120,.28); }
.btn-ev-register:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(214,54,120,.38); color: #fff; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIALS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testimonials-section { position: relative; overflow: hidden; }
.testi-bg-shape { position: absolute; width: 680px; height: 680px; background: radial-gradient(circle,rgba(214,54,120,.04) 0%,transparent 70%); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.testi-card { background: #fff; border-radius: var(--r-md); padding: 32px 28px; margin: 8px 5px 28px; box-shadow: var(--sh-md); border: 1.5px solid transparent; transition: var(--tx); height: calc(100% - 36px); }
.testi-card:hover { border-color: rgba(214,54,120,.18); box-shadow: var(--sh-lg); }
.testi-quote { font-size: 1.9rem; color: var(--c-pink); opacity: .22; margin-bottom: 14px; }
.testi-text  { font-size: .92rem; color: var(--c-mid); line-height: 1.78; font-style: italic; margin-bottom: 18px; }
.testi-stars { color: var(--c-orange); font-size: .95rem; display: flex; gap: 3px; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--c-border); padding-top: 16px; }
.ta-avatar   { font-size: 2.2rem; }
.ta-info strong { display: block; font-family: var(--f-head); font-size: .88rem; font-weight: 700; color: var(--c-navy); }
.ta-info span   { font-size: .75rem; color: var(--c-soft); }
.testi-swiper .swiper-pagination-bullet        { background: var(--c-pink); }
.testi-swiper .swiper-pagination-bullet-active { width: 22px; border-radius: 4px; }
.testi-swiper .swiper-pagination               { bottom: 4px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GALLERY
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.gallery-filter { display: flex; gap: 9px; justify-content: center; flex-wrap: wrap; }
.gf-btn { background: #fff; border: 1.5px solid var(--c-border); color: var(--c-mid); padding: 8px 20px; border-radius: var(--r-pill); font-family: var(--f-head); font-size: .83rem; font-weight: 600; cursor: pointer; transition: var(--tx); }
.gf-btn:hover,.gf-btn.active { background: var(--c-pink); border-color: var(--c-pink); color: #fff; box-shadow: 0 4px 14px rgba(214,54,120,.28); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 210px; gap: 12px; margin-top: 28px; }
.gallery-item { border-radius: var(--r-md); overflow: hidden; cursor: pointer; }
.gallery-item.gi-large { grid-column: span 2; }
.gallery-item.gi-tall  { grid-row: span 2; }
.gi-inner { height: 100%; display: flex; align-items: center; justify-content: center; position: relative; transition: transform .35s var(--ease); }
.gi-inner:hover { transform: scale(1.025); }
.gi-content { text-align: center; z-index: 2; padding: 10px; }
.gi-icon    { font-size: 3.2rem; margin-bottom: 7px; }
.gi-label   { font-family: var(--f-head); font-size: .82rem; font-weight: 700; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.3); line-height: 1.3; }
.gi-sub     { font-size: .72rem; color: rgba(255,255,255,.8); margin-top: 3px; }
.gi-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.38); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
.gi-inner:hover .gi-overlay { opacity: 1; }
.gi-view    { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; backdrop-filter: blur(4px); transition: var(--tx); }
.gi-view:hover { background: var(--c-pink); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STATS COUNTER BAND
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.stats-section { background: linear-gradient(135deg, var(--c-navy), var(--c-navy-l)); padding: 76px 0; position: relative; overflow: hidden; }
.stats-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.sb-shape-1 { position: absolute; width: 380px; height: 380px; background: rgba(255,255,255,.05); border-radius: 50%; top: -130px; left: -80px; }
.sb-shape-2 { position: absolute; width: 280px; height: 280px; background: rgba(255,255,255,.05); border-radius: 50%; bottom: -90px; right: -40px; }
.stat-counter { position: relative; z-index: 2; }
.sc-icon   { width: 58px; height: 58px; background: rgba(255,255,255,.14); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.45rem; color: #fff; margin: 0 auto 14px; }
.sc-number { font-family: var(--f-head); font-size: 2.9rem; font-weight: 900; color: #fff; line-height: 1; display: inline; }
.sc-plus   { font-family: var(--f-head); font-size: 1.7rem; font-weight: 800; color: var(--c-orange-l); display: inline; }
.sc-label  { display: block; font-family: var(--f-head); font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.78); text-transform: uppercase; letter-spacing: .5px; margin-top: 7px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KIDBA STATS SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.kidba-stats-section {
  position: relative;
  background: linear-gradient(90deg, #FF455D 0%, #FF6A00 40%, #FFB922 100%);
  padding: 120px 0 130px;
  color: #ffffff;
  z-index: 2;
  text-align: center;
}

.kstats-header {
  margin-bottom: 70px;
}
.kstats-header h2 {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #ffffff;
  margin-bottom: 20px;
}
.kstats-header p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.kstats-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end; /* allows staggering vertically */
  gap: 30px;
  flex-wrap: wrap;
}

.kstat-item {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Staggering the grid layout */
.kstat-item:nth-child(even) {
  margin-top: 60px; /* shift down the 2nd and 4th columns */
}
.kstat-item:nth-child(odd) {
  margin-top: -30px; /* push up the 1st and 3rd */
}

.kstat-diamond {
  width: 130px;
  height: 130px;
  border-radius: 12px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  margin-bottom: 50px;
}

.kstat-icon {
  transform: rotate(-45deg);
  font-size: 3rem;
  color: #ffffff;
}

/* Specific gradients for diamonds */
.kstat-diamond.c-green { background: linear-gradient(135deg, #4CD964, #32B74A); }
.kstat-diamond.c-orange { background: linear-gradient(135deg, #FF9B26, #FF6A00); }
.kstat-diamond.c-cyan { background: linear-gradient(135deg, #1BCBE3, #0FA8BE); }
.kstat-diamond.c-pink { background: linear-gradient(135deg, #FF4B9E, #E0287D); }

.kstat-item .sc-number {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: 3.2rem;
  font-weight: 400; /* Fredoka One is naturally bold */
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
}

.kstat-item p {
  font-family: var(--f-body);
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
}

/* Jagged Edges */
.kidba-stats-shape-top, .kidba-stats-shape-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}
.kidba-stats-shape-top { top: -1px; }
.kidba-stats-shape-bottom { bottom: -1px; }
.kidba-stats-shape-top svg, .kidba-stats-shape-bottom svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 45px;
}
.kidba-stats-shape-top svg path, .kidba-stats-shape-bottom svg path {
  fill: #ffffff;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CREATOR SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.creator-visual { position: relative; display: flex; flex-direction: column; align-items: center; }
.creator-frame  { width: 300px; height: 300px; margin: 0 auto; }
.creator-img-art { width: 100%; height: 100%; background: linear-gradient(135deg,#FDE8F4,#FFE8C8); border-radius: 36px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; box-shadow: var(--sh-lg); }
.cr-bg-circle   { position: absolute; width: 190px; height: 190px; background: rgba(214,54,120,.12); border-radius: 50%; }
.cr-emoji       { font-size: 4.8rem; position: relative; z-index: 2; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-9px); } }
.cr-sparkles    { display: flex; gap: 10px; font-size: 1.4rem; position: relative; z-index: 2; animation: sparkleAnim 2s ease-in-out infinite; }
@keyframes sparkleAnim { 0%,100% { opacity:.6; transform:scale(1); } 50% { opacity:1; transform:scale(1.1); } }
.creator-badge-wrap { text-align: center; margin-top: 18px; }
.creator-org-badge  { display: inline-flex; align-items: center; gap: 7px; background: linear-gradient(135deg,var(--c-pink),var(--c-orange)); color: #fff; padding: 9px 20px; border-radius: var(--r-pill); font-family: var(--f-head); font-size: .83rem; font-weight: 700; box-shadow: 0 5px 18px rgba(214,54,120,.32); }
.creator-highlights { margin-top: 18px; }
.ch-item { display: flex; align-items: center; gap: 11px; padding: 9px 0; border-bottom: 1px solid var(--c-border); font-size: .88rem; color: var(--c-mid); }
.ch-item:last-child { border-bottom: none; }
.ch-item i { width: 30px; height: 30px; background: var(--c-bg-pink); border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--c-pink); font-size: .76rem; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-info-panel  { background: #fff; border-radius: var(--r-md); padding: 30px; box-shadow: var(--sh-md); height: 100%; }
.cip-item { display: flex; align-items: flex-start; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--c-border); }
.cip-item:last-of-type { border-bottom: none; padding-bottom: 0; }
.cip-icon { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; color: #fff; flex-shrink: 0; box-shadow: 0 4px 11px rgba(0,0,0,.14); }
.cip-text h6 { font-family: var(--f-head); font-size: .86rem; font-weight: 700; color: var(--c-navy); margin-bottom: 3px; }
.cip-text p  { font-size: .83rem; color: var(--c-soft); margin: 0; line-height: 1.55; }
.cip-social     { padding-top: 18px; }
.cip-social h6  { font-family: var(--f-head); font-weight: 700; font-size: .86rem; color: var(--c-navy); margin-bottom: 12px; }
.cip-social-links { display: flex; gap: 9px; flex-wrap: wrap; }
.cip-social-links a { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .9rem; transition: var(--tx); }
.cip-social-links a:hover { transform: translateY(-4px) scale(1.1); }
.contact-form-panel  { background: #fff; border-radius: var(--r-md); padding: 32px; box-shadow: var(--sh-md); height: 100%; }
.cfp-title { font-family: var(--f-head); font-size: 1.25rem; font-weight: 700; color: var(--c-navy); margin-bottom: 22px; }
.form-group-custom label { font-family: var(--f-head); font-size: .8rem; font-weight: 700; color: var(--c-navy); margin-bottom: 5px; display: block; }
.input-wrap { position: relative; }
.input-wrap > .input-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--c-soft); font-size: .82rem; z-index: 2; pointer-events: none; }
.input-wrap.textarea-wrap > .input-icon { top: 14px; transform: none; }
.input-wrap input,.input-wrap select,.input-wrap textarea { width: 100%; padding: 11px 13px 11px 38px; border: 1.5px solid var(--c-border); border-radius: var(--r-sm); font-family: var(--f-body); font-size: .88rem; color: var(--c-navy); background: var(--c-bg-soft); transition: border-color .25s, box-shadow .25s; outline: none; appearance: none; line-height: 1.5; }
.input-wrap select { padding-left: 13px; }
.input-wrap input:focus,.input-wrap select:focus,.input-wrap textarea:focus { border-color: var(--c-pink); background: #fff; box-shadow: 0 0 0 4px rgba(214,54,120,.1); }
.input-wrap textarea { resize: vertical; min-height: 120px; }
.btn-contact-submit { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg,var(--c-pink),var(--c-orange)); color: #fff; padding: 13px 32px; border-radius: var(--r-pill); font-family: var(--f-head); font-weight: 700; font-size: .92rem; border: none; cursor: pointer; box-shadow: 0 8px 22px rgba(214,54,120,.38); transition: var(--tx); }
.btn-contact-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(214,54,120,.48); }

/* MAP */
.map-section { line-height: 0; }
.map-section iframe { display: block; filter: grayscale(15%); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KIDBA FOOTER & NEWSLETTER SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.kidba-footer-wrapper {
  position: relative;
  background: #112A46;
  padding-top: 150px;
  margin-top: 100px; /* Space for the floating newsletter box */
}

.kf-shape-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}
.kf-shape-top svg {
  display: block; width: calc(100% + 1.3px); height: 50px; transform: rotateX(180deg);
}
.kf-shape-top svg path {
  fill: #ffffff;
}

/* Newsletter Floating Box */
.kidba-newsletter {
  position: absolute;
  top: -100px; /* Pull it up out of the footer */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  background: linear-gradient(135deg, #4CD964, #32B74A);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  z-index: 5;
}
.kn-content h3 {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 5px;
}
.kn-content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
  font-size: 1.1rem;
}
.kn-form {
  flex: 1;
  max-width: 500px;
  position: relative;
}
.kn-form input {
  width: 100%;
  padding: 20px 180px 20px 30px;
  border-radius: 50px;
  border: none;
  font-size: 1.1rem;
  outline: none;
  color: #112A46;
}
.kn-form button {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  background: linear-gradient(135deg, #FF9B26, #FF6A00);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0 35px;
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: 1.1rem;
  text-transform: uppercase;
  transition: transform 0.3s;
}
.kn-form button:hover {
  transform: scale(1.05);
}

/* Footer Content */
.kidba-footer-main {
  padding: 80px 0 30px;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 2;
}
.kfm-about img {
  width: 150px;
  margin-bottom: 25px;
}
.kfm-about p {
  line-height: 1.8;
  margin-bottom: 25px;
}
.kfm-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
}
.kfm-social a:hover {
  background: #32B74A;
  transform: translateY(-3px);
}

.kfm-title {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 30px;
}
.kfm-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kfm-links li {
  margin-bottom: 15px;
}
.kfm-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.kfm-links a:hover {
  color: #32B74A;
}

.kfm-address {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kfm-address li {
  display: flex;
  margin-bottom: 20px;
}
.kfm-address i {
  color: #32B74A;
  font-size: 1.2rem;
  margin-right: 15px;
  margin-top: 5px;
}

.kidba-footer-bottom {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}

/* Google Map Section */
.kidba-map-section {
  width: 100%;
  position: relative;
  z-index: 2;
  line-height: 0;
}
.kidba-map-section iframe {
  width: 100%;
  height: 350px;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.4s ease;
}
.kidba-map-section iframe:hover {
  filter: grayscale(0%) contrast(1);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-footer   { background: var(--c-navy); position: relative; overflow: hidden; }
.footer-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.fs-shape-1    { position: absolute; width: 460px; height: 460px; background: rgba(214,54,120,.07); border-radius: 50%; top: -140px; right: -90px; }
.fs-shape-2    { position: absolute; width: 260px; height: 260px; background: rgba(224,128,32,.06); border-radius: 50%; bottom: -70px; left: -40px; }
.footer-top    { padding: 72px 0 54px; border-bottom: 1px solid rgba(255,255,255,.06); position: relative; z-index: 2; }
.footer-logo   { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-about  { font-size: .86rem; color: rgba(255,255,255,.52); line-height: 1.78; margin-bottom: 18px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.68); font-size: .88rem; transition: var(--tx); }
.footer-social a:hover { background: var(--c-pink); color: #fff; transform: translateY(-3px); }
.footer-widget { position: relative; z-index: 2; }
.fw-title      { font-family: var(--f-head); font-size: .97rem; font-weight: 700; color: #fff; margin-bottom: 18px; padding-bottom: 9px; position: relative; }
.fw-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--c-pink); border-radius: 2px; }
.fw-links li   { margin-bottom: 9px; }
.fw-links a    { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.5); font-size: .86rem; transition: color .25s, padding-left .25s; }
.fw-links a i  { font-size: .62rem; color: var(--c-orange); flex-shrink: 0; }
.fw-links a:hover { color: var(--c-orange-l); padding-left: 4px; }
.fw-desc       { font-size: .83rem; color: rgba(255,255,255,.48); margin-bottom: 12px; line-height: 1.7; }
.newsletter-form { display: flex; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-sm); overflow: hidden; margin-bottom: 18px; }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 11px 13px; font-family: var(--f-body); font-size: .83rem; color: #fff; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.32); }
.newsletter-form button { background: var(--c-pink); border: none; padding: 0 16px; color: #fff; cursor: pointer; font-size: .95rem; transition: background .25s; flex-shrink: 0; }
.newsletter-form button:hover { background: var(--c-orange); }
.footer-contact-mini p { font-size: .8rem; color: rgba(255,255,255,.46); margin-bottom: 5px; display: flex; align-items: center; gap: 7px; }
.footer-contact-mini p i { color: var(--c-orange-l); flex-shrink: 0; }
.footer-bottom { padding: 18px 0; position: relative; z-index: 2; }
.fb-copy,.fb-made { font-size: .82rem; color: rgba(255,255,255,.38); margin: 0; }
.fb-copy strong { color: rgba(255,255,255,.66); }
.fb-made { display: flex; align-items: center; gap: 4px; justify-content: flex-end; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AOS & UTILITY
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
[data-aos]           { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }
@keyframes cursorSparkle { 0% { opacity:1; transform:translate(-50%,-50%) scale(1); } 100% { opacity:0; transform:translate(-50%,-130%) scale(.4); } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â–¸ 1200â€“1399
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width:1399.98px) {
  .hero-img-wrapper { width: 400px; }
  .hero-characters  { gap: 28px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â–¸ 992â€“1199
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width:1199.98px) {
  .hero-img-wrapper { width: 360px; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); grid-auto-rows: 200px; }
  .gallery-item.gi-large { grid-column: span 2; }
  .gallery-item.gi-tall  { grid-row: span 2; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â–¸ tablet 768â€“991
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width:991.98px) {
  :root { --sec-py: 72px; }
  .hero-slide                { min-height: auto; }
  .hero-slide .row           { padding: 100px 0 60px; align-items: center; }
  .hero-content              { padding: 0; }
  .hero-desc                 { max-width: 100%; }
  .hero-stats                { flex-wrap: wrap; }
  .hero-img-wrapper          { width: 340px; margin-top: 36px; }
  .hero-image-alt            { padding: 30px 0 10px; }
  .puppet-stage,.stage-badge { width: 260px; }
  .about-floating-card       { display: none; }
  .about-features            { grid-template-columns: 1fr 1fr; }
  .about-images              { padding-bottom: 0; margin-bottom: 0; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 190px; }
  .gallery-item.gi-large { grid-column: span 2; }
  .gallery-item.gi-tall  { grid-row: span 1; }
  .sc-number { font-size: 2.4rem; }
  .fb-made   { justify-content: flex-start; margin-top: 4px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â–¸ mobile 576â€“767
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width:767.98px) {
  :root { --sec-py: 60px; }
  .top-bar         { display: none; }
  .main-navbar     { padding: 10px 0; }
  .btn-nav-cta     { display: none; }
  .navbar-collapse { background: #fff; border-radius: var(--r-sm); margin-top: 10px; padding: 10px 16px; box-shadow: var(--sh-md); }
  .navbar-nav .nav-link { padding: 9px 10px !important; }
  .hero-slide .row  { padding: 90px 0 50px; }
  .hero-title       { font-size: clamp(1.75rem,7vw,2.3rem); }
  .hero-btns        { flex-direction: column; align-items: flex-start; }
  .hero-btns.justify-content-center { align-items: center; }
  .hero-stats       { padding: 12px 0; }
  .stat-item        { padding: 0 12px; }
  .stat-number      { font-size: 1.25rem; }
  .hero-img-wrapper { width: 100%; max-width: 320px; padding: 40px 10px 20px; }
  .hero-characters  { gap: 20px; }
  .section-title    { font-size: clamp(1.55rem,6vw,2rem); }
  .section-subtitle { font-size: .92rem; }
  .feature-strip-item { padding: 18px 14px; gap: 10px; }
  .fsi-icon { width: 44px; height: 44px; font-size: 1.1rem; border-radius: 11px; }
  .features-strip-inner .col-6:nth-child(2n) .feature-strip-item { border-right: none; }
  .features-strip-inner .col-6:nth-child(3) .feature-strip-item,
  .features-strip-inner .col-6:nth-child(4) .feature-strip-item { border-top: 1px solid var(--c-border); }
  .about-features { grid-template-columns: 1fr; }
  .main-img       { height: 240px; }
  .secondary-img  { height: 130px; }
  .gallery-grid   { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.gi-large { grid-column: span 2; }
  .gallery-item.gi-tall  { grid-row: span 1; }
  .contact-info-panel,.contact-form-panel { padding: 22px 18px; }
  .sc-number { font-size: 2.2rem; }
  .sc-plus   { font-size: 1.4rem; }
  .footer-top { padding: 48px 0 38px; }
  .fb-made    { justify-content: flex-start; margin-top: 4px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KIDBA STAFF (TEAM) SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.kidba-staff-section {
  padding: 100px 0;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
}

.kstaff-header {
  text-align: center;
  margin-bottom: 60px;
}
.kstaff-header h2 {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #112A46;
  margin-bottom: 15px;
}
.kstaff-header p {
  color: #6B7B8F;
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.kstaff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.kstaff-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1.05; /* slightly taller than a perfect square */
  position: relative;
  margin-bottom: 25px; /* Space for the overlapping button */
  display: block;
}

/* Base image */
.kstaff-image-wrap img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle color overlays replicating the screenshot */
.kstaff-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0.65;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Image overlays by child or class */
.c-overlay-1 { background: linear-gradient(to bottom, rgba(59, 58, 110, 0.1), rgba(59, 58, 110, 0.8)); } /* Purple/Blue */
.c-overlay-2 { background: linear-gradient(to bottom, rgba(17, 66, 43, 0.1), rgba(17, 66, 43, 0.8)); } /* Deep Green */
.c-overlay-3 { background: linear-gradient(to bottom, rgba(31, 54, 71, 0.1), rgba(31, 54, 71, 0.8)); } /* Deep Blue */
.c-overlay-4 { background: linear-gradient(to bottom, rgba(11, 61, 43, 0.1), rgba(11, 61, 43, 0.8)); } /* Deep Teal */

.kstaff-card:hover .kstaff-overlay {
  opacity: 0.3; /* reveal real image smoothly on hover */
}

/* The Blob Button */
.kstaff-blob-btn {
  position: absolute;
  left: 20px;
  bottom: -25px; /* overlaps the bottom edge */
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #FF4B9E, #E0287D);
  color: #ffffff;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 10px 20px rgba(224, 40, 125, 0.3);
  /* Organic blob shape */
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  cursor: pointer;
  transition: transform 0.3s ease, border-radius 0.3s ease;
}

.kstaff-blob-btn:hover {
  transform: translateY(-5px);
  /* Shift blob shape on hover */
  border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
}

.kstaff-info {
  text-align: center;
  margin-top: 5px;
}

.kstaff-info h4 {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: 1.25rem;
  color: #112A46;
  margin-bottom: 5px;
}

.kstaff-info p {
  font-size: 0.95rem;
  color: #8C98A4;
  margin: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KIDBA STORIES SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.kidba-stories-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.kstories-header {
  text-align: center;
  margin-bottom: 60px;
}
.kstories-header h2 {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #112A46;
  margin-bottom: 15px;
}
.kstories-header p {
  color: #6B7B8F;
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Story Card */
.kstory-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.kstory-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Image area */
.kstory-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.kstory-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.kstory-card:hover .kstory-img img {
  transform: scale(1.05);
}

/* Tag badge */
.kstory-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 18px;
  border-radius: 4px;
  color: #ffffff;
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3;
}

/* Body area */
.kstory-body {
  padding: 25px 25px 20px;
}
.kstory-body h5 {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: 1.3rem;
  color: #112A46;
  margin-bottom: 8px;
}
.kstory-time {
  font-size: 0.9rem;
  color: #8C98A4;
  margin-bottom: 12px;
}
.kstory-time i {
  margin-right: 6px;
  color: #32B74A;
}
.kstory-body p {
  font-size: 0.95rem;
  color: #6B7B8F;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Metadata footer */
.kstory-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}
.kstory-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.kstory-meta .meta-label {
  font-size: 0.85rem;
  color: #8C98A4;
}
.kstory-meta .meta-value {
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: 1rem;
  color: #32B74A;
}
.kstory-divider {
  width: 1px;
  height: 30px;
  background: #e0e0e0;
}

/* Green CTA button */
.btn-kidba-green {
  display: inline-block;
  padding: 16px 45px;
  background: linear-gradient(135deg, #4CD964, #32B74A);
  color: #ffffff;
  font-family: 'Fredoka One', cursive, var(--f-head);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(50, 183, 74, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-kidba-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(50, 183, 74, 0.45);
  color: #ffffff;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â–¸ xs 0â€“575
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width:575.98px) {
  :root { --sec-py: 50px; }
  .hero-slide .row  { padding: 80px 0 40px; }
  .hero-title       { font-size: 1.7rem; }
  .hero-characters  { gap: 14px; }
  .char-body        { width: 82px; }
  .section-title    { font-size: 1.5rem; }
  .gallery-grid     { grid-template-columns: 1fr; grid-auto-rows: 170px; }
  .gallery-item.gi-large { grid-column: span 1; }
  .gallery-item.gi-tall  { grid-row: span 1; }
  .sc-number      { font-size: 2rem; }
  .stats-section  { padding: 50px 0; }
  .team-card      { max-width: 320px; margin-left: auto; margin-right: auto; }
  .footer-top     { padding: 40px 0 30px; }
  .btn-contact-submit { width: 100%; justify-content: center; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   KIDBA ANIMATIONS & KEYFRAMES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* 1. Floating / Bouncing (for decorative elements & diamonds) */
@keyframes kidbaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes kidbaFloatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes kidbaBounce {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(-12px) rotate(45deg); }
}

.kstat-diamond {
  animation: kidbaBounce 3s ease-in-out infinite;
}
.kstat-item:nth-child(2) .kstat-diamond { animation-delay: 0.4s; }
.kstat-item:nth-child(3) .kstat-diamond { animation-delay: 0.8s; }
.kstat-item:nth-child(4) .kstat-diamond { animation-delay: 1.2s; }

/* 2. Play Button Ripple / Pulse */
@keyframes playRipple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.kw-play-btn {
  position: absolute;
  bottom: 0; right: 0;
}
.kw-play-btn::before,
.kw-play-btn::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: inherit;
  border-radius: 0;
  z-index: -1;
  animation: playRipple 2s ease-out infinite;
}
.kw-play-btn::after {
  animation-delay: 0.6s;
}

/* 3. Button Glossy Sweep Effect */
@keyframes glossySweep {
  0% { left: -100%; }
  100% { left: 100%; }
}
.btn-kidba-green,
.btn-kidba-orange {
  position: relative;
  overflow: hidden;
}
.btn-kidba-green::after,
.btn-kidba-orange::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: none;
}
.btn-kidba-green:hover::after,
.btn-kidba-orange:hover::after {
  animation: glossySweep 0.6s ease;
}

/* 4. Staff Card Social Icons Slide-Up on Hover */
.kstaff-social {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 15;
}
.kstaff-card:hover .kstaff-social {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.kstaff-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #112A46;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.kstaff-social a:hover {
  background: #32B74A;
  color: #fff;
  transform: translateY(-3px);
}

/* 5. Enhanced Card Hover Lift (global) */
.kstory-card,
.kidba-programs-card,
.kw-feature-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* 6. Icon Box Bounce on Hover */
.kw-icon-box {
  transition: transform 0.3s ease;
}
.kw-feature-item:hover .kw-icon-box {
  transform: scale(1.15) rotate(-5deg);
}

/* 7. Smooth Counter Animation (via CSS for visual polish) */
.kstat-item .sc-number {
  transition: color 0.3s ease;
}
.kstat-item:hover .sc-number {
  color: #FFD700; /* Gold flash on hover */
}

/* 8. Staff Blob Button constant gentle pulse */
@keyframes blobPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
.kstaff-blob-btn {
  animation: blobPulse 2.5s ease-in-out infinite;
}
.kstaff-card:nth-child(2) .kstaff-blob-btn { animation-delay: 0.3s; }
.kstaff-card:nth-child(3) .kstaff-blob-btn { animation-delay: 0.6s; }
.kstaff-card:nth-child(4) .kstaff-blob-btn { animation-delay: 0.9s; }

/* 9. Newsletter Input Focus Glow */
.kn-form input:focus {
  box-shadow: 0 0 0 4px rgba(76, 217, 100, 0.3);
  outline: none;
}

/* 10. Floating decorative shapes (for hero/about sections) */
@keyframes kidbaRotateFloat {
  0% { transform: rotate(0deg) translateY(0); }
  25% { transform: rotate(5deg) translateY(-10px); }
  50% { transform: rotate(0deg) translateY(-5px); }
  75% { transform: rotate(-5deg) translateY(-10px); }
  100% { transform: rotate(0deg) translateY(0); }
}

/* 11. Smooth page-load fade for body */
body {
  animation: fadeInBody 0.6s ease-out;
}
@keyframes fadeInBody {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* 12. Image wrapper hover zoom (Welcome section) */
.kw-image-wrapper:hover img {
  transform: scale(1.03);
}
.kw-image-wrapper img {
  transition: transform 0.5s ease;
}

/* 13. Story tag badge subtle entrance */
.kstory-tag {
  transition: transform 0.3s ease;
}
.kstory-card:hover .kstory-tag {
  transform: translateY(-2px);
}
