        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #FFFFFF;
            color: #1A2C3E;
            overflow-x: hidden;
            width: 100%;
            scroll-behavior: smooth;
        }

        /* PREMIUM COLOR PALETTE */
        :root {
            --primary: #0A2F44;
            --primary-dark: #051E2C;
            --secondary: #D4AF7A;
            --secondary-dark: #B88A4A;
            --accent: #2C6E6B;
            --accent-light: #E6F0EF;
            --bg-light: #FBF9F5;
            --bg-card: #FFFFFF;
            --text-dark: #1F3A4B;
            --text-light: #5D7184;
            --shadow-sm: 0 12px 30px rgba(0,0,0,0.05);
            --shadow-md: 0 20px 40px rgba(0,0,0,0.08);
            --shadow-lg: 0 30px 55px rgba(0,0,0,0.12);
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 28px;
            --transition: all 0.3s ease;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        /* ===== RESPONSIVE CONTAINER ===== */
        .container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* ===== STICKY HEADER - FULLY RESPONSIVE ===== */
        .sticky-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(212, 175, 122, 0.2);
            width: 100%;
        }

        .nav-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            flex-wrap: wrap;
            width: 100%;
        }

        .logo h1 {
            font-size: clamp(1.3rem, 5vw, 1.8rem);
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo p {
            font-size: clamp(0.6rem, 3vw, 0.75rem);
            color: var(--secondary-dark);
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            gap: clamp(1rem, 3vw, 2.2rem);
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 600;
            color: var(--text-dark);
            font-size: clamp(0.8rem, 3vw, 0.95rem);
            transition: var(--transition);
            white-space: nowrap;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--secondary);
        }

        .menu-toggle {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--primary);
        }

        /* ===== RESPONSIVE NAVIGATION ===== */
        @media (max-width: 850px) {
            .menu-toggle {
                display: block;
            }
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                text-align: center;
                padding: 1.5rem 0;
                gap: 1.2rem;
                background: white;
                border-radius: 20px;
                margin-top: 0.8rem;
                box-shadow: var(--shadow-sm);
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                white-space: normal;
            }
        }

        /* Buttons */
        .btn-primary, .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            padding: 0.8rem 1.6rem;
            font-size: clamp(0.8rem, 3.5vw, 0.95rem);
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            text-align: center;
        }
        .btn-primary {
            background: linear-gradient(105deg, var(--primary), #1A4A60);
            color: white;
            border: none;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--secondary);
            color: var(--primary);
        }
        .btn-outline:hover {
            background: var(--secondary);
            color: white;
        }

        /* Hero Section - Fluid */
        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: clamp(1.5rem, 5vw, 3rem);
            padding: clamp(2rem, 6vw, 5rem) 0;
        }
        .hero-content {
            flex: 1.2;
            min-width: 250px;
            padding:5px;

        }
        .hero-badge {
            background: var(--accent-light);
            color: var(--accent);
            padding: 0.3rem 1rem;
            border-radius: 40px;
            display: inline-block;
            font-size: clamp(0.7rem, 3vw, 0.8rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .hero-content h1 {
            font-size: clamp(1.8rem, 6vw, 3.5rem);
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        .hero-content p {
            font-size: clamp(0.85rem, 3.5vw, 1rem);
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        .hero-image {
            flex: 1;
            text-align: center;
        }
        .hero-image img {
            width: 100%;
            max-width: 480px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            object-fit: cover;
        }
        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        /* Sections */
        .section {
            padding: clamp(2.5rem, 8vw, 5rem) 0;
            border-bottom: 1px solid #F0EBE3;
            width: 100%;
        }
        .section-title {
            font-size: clamp(1.6rem, 6vw, 2.5rem);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            color: var(--primary);
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }

        /* Responsive Grids */
        .services-grid, .doctors-grid, .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.8rem;
            width: 100%;
        }
        .service-card, .doctor-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 1.8rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid #F0EAE0;
            height: 100%;
        }
        .doctor-card {
            text-align: center;
        }
        .doctor-card img {
            width: clamp(100px, 25vw, 130px);
            height: clamp(100px, 25vw, 130px);
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 3px solid var(--secondary-light);
        }
        .service-icon {
            font-size: 2.2rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        /* Process Steps - Responsive */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .step {
            text-align: center;
            padding: 1.5rem;
            background: var(--bg-light);
            border-radius: var(--radius-md);
        }
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 800;
            margin: 0 auto 1rem;
        }

        /* Why Choose Us Grid */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.8rem;
            margin-top: 1rem;
        }
        .why-card {
            text-align: center;
            padding: 1.5rem;
        }
        .why-card i {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 0.8rem;
        }

        /* Contact Section - Fully Responsive */
        .contact-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            width: 100%;
        }
        .contact-form, .contact-info, .map-box {
            flex: 1;
            min-width: 260px;
            background: var(--bg-light);
            padding: 1.8rem;
            border-radius: var(--radius-md);
        }
        input, textarea, select {
            width: 100%;
            padding: 0.85rem;
            border-radius: 12px;
            border: 1px solid #E0D8CE;
            margin-bottom: 1rem;
            font-family: inherit;
            font-size: 0.9rem;
        }
        .working-hours {
            background: white;
            border-radius: var(--radius-sm);
            padding: 1rem;
            margin-top: 1rem;
            border-left: 4px solid var(--secondary);
        }

        /* Footer */
        footer {
            background: var(--primary-dark);
            color: #CBD5E1;
            padding: 2.5rem 0 1.5rem;
            width: 100%;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .social-icons a {
            background: rgba(255,255,255,0.08);
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 0.6rem;
            transition: var(--transition);
            color: var(--secondary);
        }

        /* Floating Buttons - Responsive */
        .whatsapp-float, .call-float {
            position: fixed;
            width: clamp(48px, 12vw, 55px);
            height: clamp(48px, 12vw, 55px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(1.3rem, 5vw, 1.8rem);
            box-shadow: var(--shadow-md);
            z-index: 99;
            transition: var(--transition);
        }
        .whatsapp-float {
            bottom: 20px;
            right: 20px;
            background: #25D366;
            color: white;
        }
        .call-float {
            bottom: 20px;
            left: 20px;
            background: var(--secondary);
            color: var(--primary-dark);
        }
        @media (max-width: 550px) {
            .whatsapp-float, .call-float {
                width: 45px;
                height: 45px;
                font-size: 1.4rem;
            }
            .hero-buttons .btn-primary, .hero-buttons .btn-outline {
                padding: 0.7rem 1.2rem;
                font-size: 0.8rem;
            }
        }

        /* Map Responsive */
        .map-placeholder {
            width: 100%;
            height: 250px;
            border-radius: 1rem;
            overflow: hidden;
        }
        iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 1rem; }
        @media (max-width: 600px){

        .container{
        padding-left:20px;
        padding-right:20px;
        }

        .section{
        padding-left:20px;
        padding-right:20px;
        }

        .hero{
        padding-left:10px;
        padding-right:10px;
        }

        }