/* 
  OmKilkari Child Development Centre - Custom CSS
  Fluorescent / Neon Kids Design System & Official PNG Logo Engine
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary-navy: #0a2540;
  --primary-navy-dark: #061a2e;
  --primary-navy-black: #030d19;
  
  /* FLUORESCENT / NEON KIDS COLOR PALETTE */
  --fluo-rose: #ff007f;
  --fluo-rose-hover: #e0006c;
  --fluo-cyan: #00f0ff;
  --fluo-teal: #0284c7;
  --fluo-lime: #00ff88;
  --fluo-amber: #ffcc00;
  
  --accent-rose: #ff007f;
  --light-bg: #f8fafc;
  --soft-border: #e2e8f0;
  --dark-slate: #0f172a;
  --body-gray: #1e293b;
  --shadow-sm: 0 4px 12px rgba(3, 13, 25, 0.08);
  --shadow-md: 0 10px 25px -5px rgba(3, 13, 25, 0.15);
  --shadow-lg: 0 20px 40px -10px rgba(3, 13, 25, 0.25);
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--body-gray);
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-navy-black);
}

/* --- LOGO STYLING --- */
.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.brand-logo-img:hover {
  transform: scale(1.02);
}

.footer-logo-box {
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-logo-img {
  height: 56px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

@media (max-width: 576px) {
  .brand-logo-img {
    height: 42px;
    max-width: 210px;
  }
  .footer-logo-img {
    height: 46px;
    max-width: 220px;
  }
}

/* --- PULSE GLOW --- */
.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--fluo-lime);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--fluo-lime);
  animation: pulse-glow 1.5s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

/* --- FLUORESCENT BUTTONS & BADGES --- */
.btn-rose {
  background: linear-gradient(135deg, var(--fluo-rose) 0%, #d90062 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 16px rgba(255, 0, 127, 0.45);
  transition: all 0.25s ease;
}

.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 0, 127, 0.6);
}

.btn-navy {
  background: var(--primary-navy-dark);
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 12px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 4px 14px rgba(6, 26, 46, 0.3);
  transition: all 0.25s ease;
}

.btn-navy:hover {
  background: var(--primary-navy-black);
  border-color: var(--fluo-cyan);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* --- HIGH-CONTRAST THERAPY CARDS --- */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  border: 2px solid #e2e8f0;
  border-top: 5px solid var(--fluo-rose);
  box-shadow: 0 8px 24px rgba(3, 13, 25, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(3, 13, 25, 0.16);
  border-top-color: var(--fluo-cyan);
  border-color: var(--fluo-cyan);
}

.badge-fluo-rose {
  background-color: rgba(255, 0, 127, 0.12) !important;
  color: #d90062 !important;
  font-weight: 800 !important;
  border: 1px solid rgba(255, 0, 127, 0.3);
}

.badge-fluo-cyan {
  background-color: rgba(0, 240, 255, 0.15) !important;
  color: #0284c7 !important;
  font-weight: 800 !important;
  border: 1px solid rgba(0, 240, 255, 0.4);
}

.badge-fluo-lime {
  background-color: rgba(0, 255, 136, 0.15) !important;
  color: #059669 !important;
  font-weight: 800 !important;
  border: 1px solid rgba(0, 255, 136, 0.4);
}

.badge-fluo-amber {
  background-color: rgba(255, 204, 0, 0.2) !important;
  color: #b45309 !important;
  font-weight: 800 !important;
  border: 1px solid rgba(255, 204, 0, 0.5);
}

/* --- CREATIVE INNER PAGE BANNER STYLING --- */
.inner-page-banner {
  background: radial-gradient(circle at 80% 20%, rgba(0, 240, 255, 0.25) 0%, rgba(3, 13, 25, 1) 80%);
  color: #ffffff;
  padding: 55px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--fluo-rose);
}

.inner-page-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: rgba(255, 0, 127, 0.2);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.inner-page-banner .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.inner-banner-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 12px;
  line-height: 1.15;
}

.inner-banner-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 4px solid rgba(255, 255, 255, 0.95);
  max-height: 230px;
  object-fit: cover;
  width: 100%;
}

/* --- CREATIVE HOME PAGE BANNER STYLING --- */
.creative-banner {
  background: radial-gradient(circle at 85% 15%, rgba(0, 240, 255, 0.25) 0%, rgba(3, 13, 25, 1) 75%);
  color: #ffffff;
  padding: 65px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--fluo-rose);
}

.creative-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 0, 127, 0.2);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
}

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

.banner-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: #ffffff;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-title {
  font-size: 3.35rem;
  line-height: 1.12;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.banner-title span {
  background: linear-gradient(135deg, #ffffff 0%, var(--fluo-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.condition-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.condition-tag {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.creative-banner-img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 6px solid rgba(255, 255, 255, 0.95);
  transition: transform 0.3s ease;
}

/* ==========================================
   FAIL-PROOF LANGUAGE SWITCHER ENGINE
   ========================================== */
.lang-en, .lang-hi {
  transition: all 0.2s ease;
}

body.show-en .lang-hi { display: none !important; }
body.show-en .lang-en { display: inline !important; }

body.show-hi .lang-en { display: none !important; }
body.show-hi .lang-hi { display: inline !important; }

body.show-dual .lang-en { display: inline !important; }
body.show-dual .lang-hi { display: inline !important; }
body.show-dual .lang-hi::before {
  content: ' • ';
  opacity: 0.6;
  font-weight: normal;
}

.lang-toggle-box {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: 30px;
  padding: 3px;
}

.nav-lang-box {
  background: #f1f5f9;
  border: 1px solid var(--soft-border);
}

.lang-btn {
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-lang-box .lang-btn {
  color: var(--body-gray);
}

.lang-btn.active {
  background: var(--fluo-rose) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(255, 0, 127, 0.5);
}

/* --- HEADER & DROPDOWN STYLING --- */
.top-bar {
  background-color: var(--primary-navy-black);
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 0, 127, 0.3);
}

.top-bar a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-bar a:hover {
  color: var(--fluo-cyan);
}

.navbar-omkilkari {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 25px rgba(3, 13, 25, 0.12);
  padding: 10px 0;
  border-bottom: 3px solid var(--fluo-rose);
}

.nav-link {
  font-weight: 700;
  color: var(--primary-navy-dark) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--fluo-rose) !important;
  background-color: rgba(255, 0, 127, 0.08);
}

.dropdown-menu {
  border-radius: 16px;
  border: 1px solid var(--soft-border);
  box-shadow: var(--shadow-lg);
  padding: 8px;
}

.dropdown-item {
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 14px;
}

.dropdown-item:hover {
  background-color: rgba(0, 240, 255, 0.1);
  color: var(--primary-navy-black);
}

/* --- FLOATING ACTIONS --- */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease;
  text-decoration: none;
}

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

.float-wa { background: #25d366; }
.float-phone { background: var(--fluo-rose); }

/* --- FOOTER --- */
.footer-main {
  background: var(--primary-navy-dark);
  color: #cbd5e1;
  padding: 70px 0 30px;
  border-top: 4px solid var(--fluo-rose);
}

.footer-heading {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--fluo-rose);
  border-radius: 2px;
}

.footer-link-list a {
  color: #cbd5e1;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link-list a:hover {
  color: var(--fluo-cyan);
  transform: translateX(3px);
}
