      /* --- Custom Theme Variables to match original design --- */
      :root {
        --primary-50: #f0f9ff;
        --primary-100: #e0f2fe;
        --primary-500: #0ea5e9;
        --primary-600: #0284c7;
        
        --accent-50: #f0fdfa;
        --accent-100: #ccfbf1;
        --accent-500: #14b8a6;
        --accent-600: #0d9488;
        --accent-700: #0f766e;
        
        --slate-50: #f8fafc;
        --slate-100: #f1f5f9;
        --slate-400: #94a3b8;
        --slate-600: #475569;
        --slate-900: #0f172a;
        
        --bs-body-font-family: 'Nunito', 'Inter', sans-serif;
        --bs-body-color: var(--slate-600);
      }

      /* --- Global Styles --- */
      html {
        scroll-behavior: smooth;
        scroll-padding-top: 100px;
        
        font-family: 'Nunito', serif;
      }
      body {
        color:#000000;
      }

      h1, h2, h3, h4, h5 {
        font-family: 'Nunito', serif;
        color: var(--slate-900);
      }

      a { text-decoration: none; }
      
      .text-primary-custom { color: var(--primary-500); }
      .text-accent-custom { color: var(--accent-600); }
      .bg-primary-soft { background-color: var(--primary-50); }
      .bg-accent-soft { background-color: var(--accent-50); }
      .bg-slate-soft { background-color: var(--slate-50); }
      .text-warning {
        color: #FFAE00;
      }
      /* --- Rounded Corners & Shadows --- */
      .rounded-4xl { border-radius: 2rem !important; }
      .rounded-5xl { border-radius: 2.5rem !important; }
      .shadow-soft { box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05); }
      
      /* --- Header --- */
      .navbar {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        padding-top: 0rem;
        padding-bottom: 0rem;
      }
      .nav-link {
        font-weight: 600;
        color: var(--slate-600);
        padding: 0.5rem 1rem !important;
        border-radius: 50rem;
        transition: all 0.2s;
      }
      .nav-link:hover {
        color: var(--primary-600);
        background-color: var(--slate-50);
      }
      .btn-primary-custom {
        background-color: var(--primary-500);
        color: white;
        border: none;
        padding: 0.75rem 1.5rem;
        font-weight: 700;
        border-radius: 50rem;
        box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.2);
        transition: all 0.3s;
      }
      .btn-primary-custom:hover {
        background-color: var(--primary-600);
        transform: translateY(-2px);
        color: white;
      }

      /* --- Hero Section --- */
      .hero-section {
        background: linear-gradient(271.03deg, rgba(139, 203, 237, 0.7) 2.05%, rgba(248, 242, 244, 0.7) 50.06%);
        padding-top: 3rem;
        padding-bottom: 6rem;
      }
      .hero-text-gradient {
        background: linear-gradient(90deg, #0D9693 0%, #0EA4E5 51.92%, #0D9489 92.88%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        display: inline-block;
      }
      .hero-image-wrapper {
        width: 450px;
        height: 600px;
        border-radius: 3rem;
        /* border: 8px solid white; */
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        overflow: hidden;
        position: relative;
      }
      .hero-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      /* Floating Badges */
      .floating-badge {
        position: absolute;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(4px);
        z-index: 10;
        transition: transform 0.3s ease;
      }
      .badge-satisfaction {
        top: 3rem; right: 0;
        border-top-left-radius: 50rem;
        border-bottom-left-radius: 50rem;
        padding: 0.75rem 1.5rem 0.75rem 1.5rem;
        border-right: 4px solid #f87171; /* Red-400 */
        transform: translateX(1rem);
      }
      .badge-satisfaction:hover { transform: translateX(0); }

      .badge-reviews {
        bottom: 8rem; right: -1.5rem;
        border-radius: 1rem;
        padding: 0.75rem 1.5rem;
        border-bottom: 4px solid #facc15; /* Yellow-400 */
        transform: rotate(3deg);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      }
      .badge-reviews:hover { transform: rotate(0); }

      .badge-sameday {
        bottom: 3rem; left: 0;
        border-top-right-radius: 1rem;
        border-bottom-right-radius: 1rem;
        padding: 1rem 2rem 1rem 1rem;
        border-left: 4px solid var(--accent-500);
        transform: translateX(-1rem);
      }
      .badge-sameday:hover { transform: translateX(0); }


      /* --- Doctor Section --- */
      .doctor-img-container {
        position: relative;
        border-radius: 2.5rem;
        overflow: hidden;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      }
      .quote-overlay {
        position: absolute;
        bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
        background: rgba(19, 78, 74, 0.9); /* Accent-900 */
        backdrop-filter: blur(4px);
        border-radius: 1rem;
        padding: 1.5rem;
        color: white;
      }

      /* --- Tag Pills --- */
      .tag-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background-color: var(--accent-50);
        border: 1px solid var(--slate-100);
        border-radius: 50rem;
        color: var(--slate-600);
        font-weight: 600;
        font-size: 0.875rem;
        transition: all 0.2s;
        box-shadow: 0 1px 2px rgba(0,0,0,0.05);
      }
      .tag-pill:hover {
        border-color: var(--primary-200);
        color: var(--primary-600);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      }
      .tag-pill i {
        color: var(--slate-400);
        transition: color 0.2s;
      }
      .tag-pill:hover i {
        color: var(--primary-500);
      }


      /* --- Cards & Services --- */
      .service-card {
        background: white;
        border-radius: 2rem;
        padding: 2rem;
        height: 100%;
        border: 1px solid transparent;
        transition: all 0.3s;
        text-align: center;
      }
      .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        border-color: var(--accent-100);
      }
      .icon-box {
        width: 4rem; height: 4rem;
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem auto;
        transition: all 0.3s;
      }
      .service-card:hover .icon-box {
        background-color: var(--accent-500) !important;
        color: white !important;
        transform: scale(1.1);
      }

      /* --- Parent Resources --- */
      .resource-card {
        background-color: var(--primary-50);
        border-radius: 2rem;
        padding: 2rem;
        position: relative;
        border: 1px solid var(--primary-100);
        transition: all 0.2s;
        height: 100%;
        cursor: pointer;
      }
      .resource-card:hover {
        background-color: var(--primary-100);
        border-color: var(--primary-100);
        transform: scale(1.01);
      }
      .resource-icon {
        background: white;
        width: 4rem; height: 4rem;
        border-radius: 1rem;
        display: flex; align-items: center; justify-content: center;
        color: var(--primary-500);
        margin-bottom: 1.5rem;
      }

       /* --- Testimonials --- */
      .testimonial-card {
        background-color: white;
        border: 1px solid var(--slate-100);
        border-radius: 1.5rem;
        padding: 2rem;
        position: relative;
        margin-top: 1rem;
        transition: all 0.3s;
        
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      }
      .testimonial-card:hover {
        transform: translateY(-5px);
        
        box-shadow: 1px 2px 20px 0px #A3D9F5;
      }

      .quote-badge {
        display: inline-block;
        background-color: #A3D9F5;
        border-radius: 50%;
        padding: 10px 12px;
        position: absolute;
        top: -5px;
        left: -5px;
      }

      
      /* --- Contact & Forms --- */
      .contact-card-icon {
        background-color: #bef7e2; /* Light mint/teal */
        color: #0f766e;
        width: 3rem;
        height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.75rem;
      }
      .form-control {
        background-color: var(--slate-50);
        border: 1px solid var(--slate-100);
        border-radius: 0.75rem;
        padding: 1rem 1.5rem;
        color: var(--slate-600);
      }
      .form-control:focus {
        background-color: white;
        border-color: var(--accent-500);
        box-shadow: 0 0 0 4px var(--accent-50);
      }
      .btn-form-submit {
        background-color: #bae6fd; /* Light Sky Blue - Matching screenshot */
        color: #0f172a;
        width: 100%;
        padding: 1rem;
        border-radius: 2rem; /* Rounded pill shape */
        font-weight: 700;
        border: none;
        transition: all 0.3s;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
      }
      .btn-form-submit:hover {
        background-color: #7dd3fc; /* Darker Sky Blue */
        transform: translateY(-2px);
        color: #0f172a;
      }
      .emergency-box {
        background-color: #a7f3d0; /* Match screenshot green/mint */
        border: none;
        border-radius: 2rem;
        padding: 2rem;
        color: #064e3b;
      }

