   :root {
            --primary: #0E7C7B; /* Teal */
            --primary-dark: #0A5E5D; /* Darker Teal */
            --secondary: #4ECDC4; /* Soft Mint Green */
            --secondary-dark: #3AA69D; /* Darker Mint */
            --accent: #FFEEDB; /* Warm Beige */
            --light: #f8fafc;
            --dark: #1e293b;
            --gray: #64748b;
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --radius: 12px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #ffffff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        ul {
            list-style: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 0.95rem;
            gap: 8px;
        }
        
        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: var(--shadow);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }
        
        .btn-secondary {
            background: var(--secondary);
            color: white;
        }
        
        .btn-secondary:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
        }
        
        .btn-sm {
            padding: 8px 16px;
            font-size: 0.85rem;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 16px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Promo Banner */
        .promo-banner {
            background: var(--primary);
            color: white;
            padding: 10px 0;
            text-align: center;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* IMPROVED NAVBAR - Reduced Height & Optimized */
        .app-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            height: 64px; /* Reduced height */
        }
        
        .app-header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0; /* Reduced padding */
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo img {
            height: 36px; /* Reduced logo size */
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-text .clinic-name {
            font-weight: 700;
            font-size: 1.1rem; /* Slightly smaller */
            color: var(--primary);
        }
        
        .logo-text .clinic-location {
            font-size: 0.75rem; /* Slightly smaller */
            color: var(--gray);
        }
        
        .nav-links {
            display: flex;
            gap: 28px; /* Slightly reduced gap */
        }
        
        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem; /* Slightly smaller font */
            position: relative;
            padding: 6px 0;
            color: var(--dark);
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: var(--transition);
        }
        
        .nav-links a:hover:after,
        .nav-links a.active:after {
            width: 100%;
        }
        
        .nav-links a.active {
            color: var(--primary);
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .mobile-toggle {
            display: none;
            font-size: 1.3rem; /* Slightly smaller */
            cursor: pointer;
            color: var(--primary);
            padding: 4px;
        }
        
        /* Language Switcher */
        .language-switcher {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-left: 12px;
        }
        
        .lang-btn {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            padding: 4px 10px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.85rem;
            transition: var(--transition);
        }
        
        .lang-btn.active {
            background: var(--primary);
            color: white;
        }
        
        /* Hero Section - Adjusted for new navbar height */
        .hero {
            padding: 150px 0 100px; /* Reduced top padding to account for smaller navbar */
            background: linear-gradient(135deg, rgba(14, 124, 123, 0.9) 0%, rgba(78, 205, 196, 0.9) 100%), url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-text h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.1;
        }
        
        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* Services Overview */
        .services-overview {
            background: var(--accent);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            transform: translateY(50px);
            opacity: 0;
        }
        
        .service-card.animate-in {
            transform: translateY(0);
            opacity: 1;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 24px;
        }
        
        .service-content h3 {
            margin-bottom: 12px;
            font-size: 1.3rem;
            color: var(--primary);
        }
        
        .service-content p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .specialist-badge {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .service-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        
        .service-features span {
            background: var(--accent);
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 500;
        }
        
        .service-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }
        
        .price-tag {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        /* Detailed Services */
        .detailed-services {
            background: white;
        }
        
        .service-detail {
            margin-bottom: 80px;
            transform: translateY(50px);
            opacity: 0;
            transition: transform 0.6s ease, opacity 0.6s ease;
        }
        
        .service-detail.animate-in {
            transform: translateY(0);
            opacity: 1;
        }
        
        .service-detail:last-child {
            margin-bottom: 0;
        }
        
        .service-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 2rem;
        }
        
        .service-detail-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .service-info h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .service-info p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .benefits-list {
            margin: 20px 0;
        }
        
        .benefits-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .benefits-list li i {
            color: var(--secondary);
            margin-right: 10px;
            margin-top: 5px;
        }
        
        .specialist-card {
            background: var(--accent);
            padding: 25px;
            border-radius: var(--radius);
            margin-top: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
            transform: translateX(-50px);
            opacity: 0;
            transition: transform 0.6s ease, opacity 0.6s ease;
        }
        
        .specialist-card.animate-in {
            transform: translateX(0);
            opacity: 1;
        }
        
        .specialist-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
        }
        
        .specialist-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .specialist-info h4 {
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .specialist-info p {
            margin-bottom: 0;
            font-size: 0.9rem;
        }
        
        .service-image-large {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transform: translateX(50px);
            opacity: 0;
            transition: transform 0.6s ease, opacity 0.6s ease;
        }
        
        .service-image-large.animate-in {
            transform: translateX(0);
            opacity: 1;
        }
        
        .service-image-large img {
            width: 100%;
            height: auto;
        }
        
        .hindi-text {
            font-family: 'Noto Sans', Arial, sans-serif;
            font-size: 1.1rem;
            color: var(--dark);
            margin-top: 20px;
            padding: 20px;
            background: rgba(78, 205, 196, 0.1);
            border-radius: var(--radius);
            border-right: 3px solid var(--secondary);
        }
        
        /* Technology Section */
        .technology {
            background: var(--accent);
        }
        
        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .tech-card {
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            transform: scale(0.9);
            opacity: 0;
        }
        
        .tech-card.animate-in {
            transform: scale(1);
            opacity: 1;
        }
        
        .tech-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .tech-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Resources Section */
        .resources {
            background: white;
        }
        
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .resource-card {
            background: var(--accent);
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            text-align: center;
            transition: var(--transition);
            transform: translateY(50px);
            opacity: 0;
        }
        
        .resource-card.animate-in {
            transform: translateY(0);
            opacity: 1;
        }
        
        .resource-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .resource-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .resource-card a {
            display: inline-block;
            margin-top: 15px;
            color: var(--primary);
            font-weight: 600;
        }
        
        /* CTA Footer */
        .cta-footer {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-footer h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-footer p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .specialist-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            transform: translateY(50px);
            opacity: 0;
            transition: transform 0.6s ease, opacity 0.6s ease;
        }
        
        .specialist-form.animate-in {
            transform: translateY(0);
            opacity: 1;
        }
        
        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e2e8f0;
            border-radius: var(--radius);
            font-family: 'Inter', sans-serif;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(14, 124, 123, 0.1);
        }
        
        .form-submit {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }
        
        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 14px;
        }
        
        /* Mobile Bottom Navigation */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: white;
            display: none;
            justify-content: space-around;
            padding: 12px 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            font-size: 0.8rem;
            color: var(--gray);
        }
        
        .nav-item.active {
            color: var(--primary);
        }
        
        .nav-item i {
            font-size: 1.2rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .service-detail-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 64px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: var(--shadow);
                transform: translateY(-150%);
                transition: var(--transition);
                z-index: 999;
                gap: 0;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .header-actions .btn {
                display: none;
            }
            
            .language-switcher {
                margin-top: 15px;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .hero {
                padding: 130px 0 80px;
            }
            
            .service-header {
                flex-direction: column;
                text-align: center;
            }
            
            .specialist-card {
                flex-direction: column;
                text-align: center;
            }
            
            .mobile-bottom-nav {
                display: flex;
            }
        }
        
        @media (max-width: 576px) {
            .hero-text h1 {
                font-size: 1.8rem;
            }
            
            .hero-text p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }