 /* Custom Theme Variables to match original design */
        :root {
            --primary-color: #41b592; /* Teal */
            --secondary-color: #F26522; /* Orange */
              --third-color: #14749c; /* Blue */
            --dark-color: #0F172A; /* Dark Navy */
            --light-bg: #F8FAFC;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-color);
            background-color: white;
            -webkit-font-smoothing: antialiased;
        }

        /* Color Utilities Overrides */
        .text-primary { color: var(--primary-color) !important; }
        .bg-primary { background-color: var(--primary-color) !important; }
        .text-secondary { color: var(--secondary-color) !important; }
        .bg-secondary { background-color: var(--secondary-color) !important; }
        .text-dark { color: var(--dark-color) !important; }
        .blue-dark { color: var(--third-color) !important; }
        .bg-dark { background-color: var(--dark-color) !important; }
        .text-muted { color: #64748b !important; } /* Slate-500 equivalent */

        /* Custom Button Styling */
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        .btn-primary:hover {
            background-color: #43BA96;
            border-color: #43BA96;
        }
        
        .btn-secondary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: white;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .btn-secondary:hover {
            background-color: #d65113;
            border-color: #d65113;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
            border-width: 2px;
        }
        .btn-outline-primary:hover {
            background-color: #effcfd;
            color: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }

        .btn-pill { border-radius: 50rem; }

        /* Typography & Spacing */
        .fs-7 { font-size: 0.75rem; }
        .fw-bold { font-weight: 700 !important; }
        .fw-extrabold { font-weight: 800 !important; }
        .tracking-tight { letter-spacing: -0.025em; }
        
        /* Navbar Customization */
        .navbar {
            padding-top: 1rem;
            padding-bottom: 1rem;
            background: white;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        }
        .nav-link {
            color: #374151 !important;
            font-weight: 500;
            font-size: 0.875rem;
            transition: color 0.2s;
            padding-left: 1rem !important;
            padding-right: 1rem !important;
        }
        .nav-link:hover, .nav-link.show { color: var(--primary-color) !important; }
        
        .navbar-toggler { border: none; padding: 0; }
        .navbar-toggler:focus { box-shadow: none; }

        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border-radius: 0.5rem;
            padding: 0.5rem;
            margin-top: 0;
        }
        .dropdown-item {
            border-radius: 0.25rem;
            font-size: 0.875rem;
            padding: 0.5rem 1rem;
            font-weight: 500;
            color: #4b5563;
        }
        .dropdown-item:hover {
            background-color: #f0fdfa;
            color: var(--primary-color);
        }

        /* Hover Dropdown & Arrow Animation (Desktop Only) */
        @media (min-width: 992px) {
            .dropdown:hover .dropdown-menu {
                display: block;
                animation: fadeIn 0.3s ease;
            }
            .dropdown-toggle::after {
                transition: transform 0.3s ease-in-out;
            }
            .dropdown:hover .dropdown-toggle::after {
                transform: rotate(180deg);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(to bottom, #f0fdfa, #ffffff);
            position: relative;
            overflow: hidden;
            padding-top: 4rem;
            padding-bottom: 3rem;
        }
        .hero-blob {
            position: absolute;
            z-index: 0;
            filter: blur(60px);
            opacity: 0.3;
        }
        .hero-blob-teal { top: 0; right: 0; width: 33%; height: 100%; background: #ccfbf1; border-bottom-left-radius: 100%; }
        .hero-blob-orange { bottom: 0; left: 0; width: 25%; height: 50%; background: #ffedd5; border-top-right-radius: 100%; }

        /* Step Process */
        .step-item { position: relative; }
        .step-bg-number {
            position: absolute;
            top: -2.5rem;
            left: 50%;
            transform: translateX(-50%);
            font-size: 6rem;
            font-weight: 800;
            color: #f8fafc; /* Very light slate, almost white/invisible on white bg but visible if overlaying */
            /* Using a darker shade for better visibility on white background as per reference style usually */
            color: #f1f5f9; 
            line-height: 1;
            z-index: 0;
            opacity: 1;
            user-select: none;
        }
        .step-icon-box {
            position: relative;
            z-index: 2;
            width: 4rem; height: 4rem;
            background-color: var(--primary-color);
            transform: rotate(45deg);
            display: flex; align-items: center; justify-content: center;
            border-radius: 0.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .step-item:hover .step-icon-box { background-color: var(--secondary-color); }
        .step-icon-inner { transform: rotate(-45deg); color: white; font-size: 1.5rem; }
        
        .connector-line {
            position: absolute;
            /* Align with the center of the 4rem icon box (2rem down) */
            top: 2rem; 
            left: 12%; right: 12%;
            height: 2px;
            background-color: #e2e8f0; /* Light gray */
            z-index: 0;
        }

        /* Feature Cards */
        .card-hover {
            transition: all 0.3s;
            border: 1px solid #f1f5f9;
        }
        .card-hover:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        /* Doctor Cards */
        .doctor-card {
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid #f1f5f9;
            transition: all 0.3s;
        }
        .doctor-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .doctor-img-container {
            width: 6rem; height: 6rem;
            border-radius: 1rem;
            border: 4px solid white;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .doctor-rating {
            position: absolute;
            bottom: 0; left: 4rem;
            background-color: #facc15;
            font-size: 0.625rem;
            padding: 0.125rem 0.5rem;
            border-radius: 9999px;
            font-weight: bold;
            display: flex; align-items: center; gap: 2px;
        }

        /* Appointment Form */
        .appointment-card {
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .form-control, .form-select {
            padding: 0.75rem 1rem;
            font-size: 0.875rem;
            border-radius: 0.5rem;
            border-color: #e5e7eb;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(0, 109, 119, 0.1);
        }

        /* CSR Section */
        .csr-image-wrapper {
            position: relative;
            background-color: #38bdf8;
            min-height: 300px;
        }
        .mix-blend-multiply { mix-blend-mode: multiply; }
        
        /* News Cards */
        .news-img-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 0.75rem;
            aspect-ratio: 16/9;
        }
        .news-img-wrapper img {
            transition: transform 0.5s;
        }
        .news-card:hover img { transform: scale(1.05); }

        /* Testimonials */
        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid #f1f5f9;
            position: relative;
        }
        .testimonial-avatar {
            width: 3.5rem; height: 3.5rem;
            border-radius: 50%;
            border: 2px solid white;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-top: -3rem; /* half of avatar size + padding offset */
            position: relative;
            z-index: 10;
        }

        /* Partner Logos Placeholder Style */
        .partner-logo {
            font-weight: bold;
            font-size: 1.5rem;
            color: #94a3b8;
            filter: grayscale(100%);
            opacity: 0.5;
        }

        /* Footer */
        .social-btn {
            width: 2rem; height: 2rem;
            background-color: #1e293b;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #cbd5e1;
            transition: all 0.2s;
            text-decoration: none;
        }
        .social-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }
        footer a { text-decoration: none; color: inherit; }
        .topbr a{color: #fff; text-decoration: none;}