



 :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 */
        .hero {
            padding: 180px 0 100px;
            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;
        }
        
        /* Contact Section */
        .contact-section {
            background: var(--accent);
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        
        .contact-info {
          
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        
        .contact-info h2 {
            color: var(--primary);
            margin-bottom: 30px;
            font-size: 2rem;
        }
        
        .contact-details {
            margin-bottom: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .contact-text h4 {
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .contact-text p {
            color: var(--gray);
        }
        
        .specialist-notes {
            background: rgba(78, 205, 196, 0.1);
            padding: 20px;
            border-radius: var(--radius);
            margin-top: 30px;
            border-left: 4px solid var(--secondary);
        }
        
        .specialist-notes h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .whatsapp-section {
            margin-top: 40px;
        }
        
        .whatsapp-section h3 {
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .whatsapp-buttons {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .whatsapp-btn {
            display: flex;
            align-items: center;
            padding: 15px;
            background: white;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid #e2e8f0;
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        
        .whatsapp-icon {
            width: 40px;
            height: 40px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .whatsapp-text h4 {
            font-size: 1rem;
            margin-bottom: 5px;
        }
        
        .whatsapp-text p {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .contact-form-container {
            background: white;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        
        .contact-form-container h2 {
            color: var(--primary);
            margin-bottom: 30px;
            font-size: 2rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .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);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-submit {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 15px;
            border-radius: var(--radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }
        
        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        /* Location Guide */
        .location-guide {
            background: white;
        }
        
        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .location-text h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .location-text p {
            margin-bottom: 20px;
            color: var(--gray);
        }
        
        .directions-list {
            margin: 25px 0;
        }
        
        .directions-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .directions-list li i {
            color: var(--secondary);
            margin-right: 10px;
            margin-top: 5px;
        }
        
        .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);
        }
        
        .map-container {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            height: 400px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* 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;
        }
        
        /* 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;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .contact-content,
            .location-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                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: 160px 0 80px;
            }
            
            .contact-info,
            .contact-form-container {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 576px) {
            .hero-text h1 {
                font-size: 1.8rem;
            }
            
            .hero-text p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            
            .whatsapp-buttons {
                grid-template-columns: 1fr;
            }
        }