:root {
    --primary-blue: #004a99;
    --teal: #00c2a8;
    --dark-blue: #002d5b;
    --text-gray: #555;
    --light-bg: #f8fafd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header */
header {
    padding: 20px 10%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.logo span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-gray);
    font-weight: 400;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 0.9rem;
}

.nav-links a.active {
    color: var(--primary-blue);
    font-weight: 600;
}

.btn-book-nav {
    background: var(--primary-blue);
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&q=80&w=2000'); /* Placeholder image */
    background-size: cover;
    background-position: center;
    padding: 100px 10%;
    text-align: left;
}

.location-tag {
    background: #e0f2f1;
    color: var(--teal);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.hero h1 {
    font-size: 3rem;
    color: var(--dark-blue);
    max-width: 700px;
    margin: 20px 0;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--teal);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 15px;
    display: inline-block;
}

.btn-secondary {
    border: 1px solid #ccc;
    color: #444;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

/* Stats Bar */
.stats-container {
    padding: 0 10%;
    margin-top: -50px;
}

.stats-card {
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-item h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* Common Section Styling */
.services, .why-us {
    padding: 80px 10%;
    text-align: center;
}

.section-tag {
    color: var(--teal);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2rem;
    color: var(--dark-blue);
    margin: 10px 0;
}

.section-desc {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    border: 1px solid #eee;
    transition: 0.3s;
}

.service-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.icon { font-size: 2rem; margin-bottom: 20px; color: var(--teal); }

.service-card h3 { font-size: 1.1rem; margin-bottom: 15px; color: var(--dark-blue); }

.service-card p { font-size: 0.9rem; color: var(--text-gray); margin-bottom: 20px; height: 60px; }

.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.learn-more {
    text-decoration: none;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Why Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    text-align: left;
}

/* CTA Banner */
.cta-banner {
    margin: 50px 10%;
    background: var(--primary-blue);
    padding: 80px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.cta-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.cta-content p { margin-bottom: 30px; opacity: 0.9; }

.btn-primary-white {
    background: var(--teal);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: white;
    padding: 80px 10% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 50px;
}

.footer-col h3, .footer-col h4 { margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; opacity: 0.8; }
.footer-col p { opacity: 0.8; font-size: 0.9rem; margin-bottom: 10px; }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Button Styling */
.dropbtn {
    cursor: pointer;
    padding-bottom: 10px; /* Space for hover area */
}

.arrow {
    font-size: 0.7rem;
    margin-left: 3px;
    vertical-align: middle;
}

/* Hidden Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    margin-top: 5px;
    border-top: 3px solid var(--teal); /* Branding color line */
}

/* Individual Links inside Dropdown */
.dropdown-content li {
    margin: 0 !important; /* Reset margin */
}

.dropdown-content li a {
    color: #333 !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: 0.3s;
}

/* Hover Effect on Links */
.dropdown-content li a:hover {
    background-color: #f1f1f1;
    color: var(--primary-blue) !important;
    padding-left: 25px; /* Slight movement effect */
}

/* Show Menu on Hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Arrow Rotate on Hover (Optional) */
.dropdown:hover .arrow {
    display: inline-block;
    transform: rotate(180deg);
}

/* --- ANIMATION KEYFRAMES --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 194, 168, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 194, 168, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 194, 168, 0); }
}

/* --- HERO ANIMATION --- */
.hero-content {
    animation: fadeInUp 1.2s ease-out;
}

/* --- FLOATING STATS --- */
.floating-card {
    animation: float 4s ease-in-out infinite;
    transition: 0.3s;
}

/* --- REVEAL ON SCROLL --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- CARD HOVER EFFECTS --- */
.service-card {
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 74, 153, 0.15);
    border-color: #00c2a8;
}

.service-card .icon {
    transition: transform 0.6s ease;
}

.service-card:hover .icon {
    transform: rotateY(360deg);
}

/* --- BUTTON ANIMATIONS --- */
.pulse-btn {
    animation: pulse 2.5s infinite;
}

.btn-primary:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* --- NAV HOVER LINE --- */
.nav-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #00c2a8;
    transition: width .3s;
}

.nav-links a:hover::after {
    width: 100%;
}


/* --- BUTTONS FIX & ANIMATIONS --- */

/* 1. Navbar Book Now Button */
.btn-book-nav {
    background: var(--primary-blue);
    color: white !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--primary-blue);
}

.btn-book-nav:hover {
    background: transparent;
    color: var(--primary-blue) !important;
    transform: translateY(-2px);
}

/* 2. Hero & Main Primary Buttons */
.btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 74, 153, 0.2);
}

/* 3. The Pulse Animation Fix (Jo button ko hila raha tha) */
.pulse-btn {
    position: relative;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 74, 153, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(0, 74, 153, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 74, 153, 0);
    }
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-3px);
    background: var(--dark-blue);
    box-shadow: 0 10px 25px rgba(0, 74, 153, 0.3);
}

/* 4. White Button (CTA Banner) */
.btn-primary-white {
    background: white;
    color: var(--primary-blue);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary-white:hover {
    transform: scale(1.05);
    background: #f0f0f0;
}

/* Mobile Fix for Buttons */
@media (max-width: 768px) {
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}



/* --- HERO SECTION LAYOUT FIX --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 100px 8% 60px; /* Thoda padding adjust kiya */
    overflow: hidden;
}

.hero-content {
    flex: 1;
}

/* --- DOCTOR IMAGE STYLING --- */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: fadeInRight 1.5s ease-out; /* Premium entry animation */
}

.hero-image img {
    width: 100%;
    max-width: 450px; /* Photo ka size yahan se control kar sakte ho */
    border-radius: 30px; /* Modern curved edges */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); /* Soft shadow */
    border: 5px solid white; /* Frame look */
}

/* Entry Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive Fix */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    
    .hero-image img {
        max-width: 300px; /* Mobile par thodi choti */
        margin-top: 30px;
    }

    .hero-badge-logo{
        margin-top: -2rem;
    }
}



/* --- NAV LINKS EXPANSION & FONT --- */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 45px; /* Links ke beech ka gap badha diya (Broad look) */
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem; /* Font halka sa bada kiya (16px se 17.6px) */
    font-weight: 600; /* Thoda bold look professional lagta hai */
    letter-spacing: 0.5px; /* Aksharon ke beech thodi jagah */
    transition: all 0.3s ease;
    display: inline-block;
}

/* Hover Effect: Halka sa blue color aur underline */
.nav-links li a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px); /* Hover pe halka upar uthega */
}

/* Dropdown Arrow spacing */
.arrow {
    margin-left: 5px;
    font-size: 0.8rem;
    vertical-align: middle;
}

/* Special styling for the Book Now button in Nav to keep it aligned */
.nav-links .btn-primary.pulse-btn {
    padding: 12px 28px; /* Button ko thoda broad kiya */
    font-size: 1rem;
    margin-left: 10px; /* Baki links se thoda alag dikhne ke liye */
}

/* --- RESPONSIVE FIX --- */
@media (max-width: 1100px) {
    .nav-links {
        gap: 25px; /* Choti screens (laptop) par gap thoda kam kar diya taaki screen se bahar na jaye */
    }
}






/* --- LUXURY STATS SECTION --- */
.stats-container {
    padding: 60px 8%;
    background: #f8faff; /* Halka sa bluish tint background */
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.stats-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Barabar 4 columns */
    width: 100%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px); /* Glass effect */
    padding: 50px 30px;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 74, 153, 0.12); /* Deep soft shadow */
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: -80px; /* Hero section ke upar float karne ke liye */
}

/* Stats Item Styling */
.stat-item {
    text-align: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Divider lines between items */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #ddd, transparent);
}

.stat-item h2 {
    font-size: 2.7rem;
    font-weight: 600;
    margin-bottom: 8px;
    /* Gradient Text Effect */
    background: linear-gradient(135deg, #004a99 0%, #00c2a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.stat-item p {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover Effects */
.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item:hover h2 {
    filter: brightness(1.2);
}

/* Luxury Glow in Background */
.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 194, 168, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 968px) {
    .stats-card {
        grid-template-columns: repeat(2, 1fr); /* Tablet par 2x2 grid */
        gap: 40px;
        margin-top: -40px;
    }
    
    .stat-item:nth-child(2)::after {
        display: none; /* Mobile pe second item ke baad line hatao */
    }
}

@media (max-width: 550px) {
    .stats-card {
        grid-template-columns: 1fr; /* Mobile par 1 column */
        padding: 40px 20px;
    }
    
    .stat-item::after {
        display: none;
    }
}




/* --- COMPACT LUXURY STATS --- */
.stats-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: 1100px; /* Thoda narrow kiya taaki compact lage */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    /* Padding kam kar di height ghatane ke liye */
    padding: 30px 20px; 
    border-radius: 20px; /* Thoda kam roundness for a sharper look */
    box-shadow: 0 15px 35px rgba(0, 74, 153, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin: -60px auto 0; /* Hero ke thoda aur paas */
    position: relative;
    z-index: 20;
}

.stat-item h2 {
    /* Font size thoda chota kiya */
    font-size: 2.2rem; 
    font-weight: 800;
    margin-bottom: 2px;
    background: linear-gradient(135deg, #004a99 0%, #00c2a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    /* Label ko thoda compact kiya */
    font-size: 0.85rem; 
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Divider line ki height bhi kam kar di */
.stat-item:not(:last-child)::after {
    height: 40%; 
    top: 30%;
}

/* Mobile responsive compact version */
@media (max-width: 768px) {
    .stats-card {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 10px;
        gap: 20px;
    }
    .stat-item h2 {
        font-size: 1.8rem;
    }
}






/* --- TADAGTI PHADAKTI WHY-US SECTION --- */
.why-us {
    padding: 100px 8%;
    background: #ffffff;
    text-align: center;
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Card Styling with 3D Effect */
.why-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Background Animated Circle on Hover */
.why-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 194, 168, 0.1), rgba(0, 74, 153, 0.1));
    border-radius: 50%;
    transition: all 0.6s ease;
    z-index: -1;
}

.why-card:hover {
    transform: translateY(-15px) rotateX(5deg); /* 3D tilt effect */
    box-shadow: 0 30px 60px rgba(0, 74, 153, 0.12);
    border-color: #00c2a8;
}

.why-card:hover::before {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: 0;
    background: linear-gradient(135deg, #004a99 0%, #00c2a8 100%);
    opacity: 0.05; /* Halka sa rang badlega background ka */
}

/* Icon Animation */
.small-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.why-card:hover .small-icon {
    transform: scale(1.3) rotate(360deg); /* Icon ghumega aur bada hoga */
}

.why-card h3 {
    font-size: 1.5rem;
    color: #004a99;
    margin-bottom: 15px;
    font-weight: 700;
    transition: color 0.3s;
}

.why-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* Section Title Animations */
.section-tag {
    color: #00c2a8;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    animation: pulseText 2s infinite;
}

@keyframes pulseText {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Responsive Fix */
@media (max-width: 768px) {
    .why-us {
        padding: 60px 5%;
    }
}




/* --- LUXURY STATS SECTION --- */
.stats-container {
    padding: 60px 8%;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.stats-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 74, 153, 0.2);
    text-align: center;
    color: white;
}

.stat-item {
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item h2 {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #00c2a8 0%, #00c2a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plus {
    font-size: 2rem;
    font-weight: 700;
    color: #00c2a8;
    margin-left: 5px;
}

.stat-item p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 10px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats-card-wrapper { grid-template-columns: 1fr 1fr; padding: 30px; }
    .stat-item h2 { font-size: 2.5rem; }
}


.stat-item {
    cursor: pointer; /* Pointer dikhega toh user hover karega */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover h2 {
    transform: scale(1.1); /* Number halka sa bada hoga hover pe */
    filter: drop-shadow(0 0 10px rgba(0, 194, 168, 0.5)); /* Glow effect */
}

.counter {
    display: inline-block;
    transition: transform 0.3s ease;
}



/* --- RESPONSIVE FIXES BY GEMINI --- */

/* Logo aur Nav ko sambhalne ke liye */
.nav-logo { height: 6rem !important; width: auto !important; max-width: 100%; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 10px 5%; position: relative; }

/* Hamburger Menu Design */
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 1001; }
.hamburger span { width: 30px; height: 3px; background: #333; transition: 0.3s; }

/* Tablet aur Mobile ke liye Media Query */
@media (max-width: 1024px) {
    /* Hero section ke margins zero karna taaki screen se bahar na jaye */
    .hero-content { margin-left: 0 !important; text-align: center; padding: 20px; }
    .main-hero-img { margin-right: 0 !important; max-width: 90%; height: auto; margin-top: 20px; }
    .hero { flex-direction: column; text-align: center; }
    
    /* Stats aur Footer ke margins reset */
    .footer-bottom p, .footer-links { margin-left: 0 !important; margin-top: 10px !important; text-align: center; position: static; }
    .footer-bottom { flex-direction: column; }

    /* Hamburger Menu Logic */
    .hamburger { display: flex; }
    .nav-links {
        display: none; /* Mobile pe chhupa do */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    .nav-links.active { display: flex; } /* Button dabane pe dikhega */
    .nav-links li { margin: 15px 0; width: 100%; text-align: center; }
    .dropdown-content { position: static; box-shadow: none; display: none; }
    .dropdown:hover .dropdown-content { display: block; }
}

/* Chhote Mobile ke liye mazeed adjustments */
@media (max-width: 600px) {
    .stats-card-wrapper { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.8rem; }
}

/* --- MOBILE & TABLET SPECIFIC FIXES --- */

@media (max-width: 1024px) {
    /* 1. Hero Section Fix (Margins hatao) */
    .hero-content { 
        margin-left: 0 !important; 
        padding: 20px;
        text-align: center;
    }
    .main-hero-img { 
        margin-right: 0 !important; 
        max-width: 100%; 
        height: auto; 
    }
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* 2. Stats Section Fix */
    .stats-card-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        margin: 0 !important;
        padding: 20px;
    }

    /* 3. FOOTER ADDRESS & LINKS FIX (Sabse important) */
    .footer-bottom {
        display: flex !important;
        flex-direction: column !important; /* Stack vertically on mobile */
        align-items: center !important;
        text-align: center !important;
        margin: 0 !important;
        padding: 20px !important;
    }

    /* Purane fixed margins ko reset karna */
    .footer-bottom p, 
    .footer-links {
        margin-left: 0 !important; 
        margin-top: 10px !important;
        position: static !important; /* Absolute/Fixed position hatane ke liye */
        width: 100% !important;
        display: block !important;
    }

    .footer-links a {
        display: inline-block;
        margin: 5px 10px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important; /* Har column full width */
        text-align: center;
    }
}

/* Tablet (iPad) ke liye thoda sa adjustment */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns for tablet */
    }
}

/* --- Rios Enterprise Navbar Button (Pill Shape) --- */
.btn-primary-nav {
    position: relative;
    padding: 12px 28px;
    background: #001a2c;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    z-index: 1;
}

/* --- Hero Section & CTA Banner Buttons --- */
.btn-primary, .btn-primary-white {
    position: relative;
    padding: 16px 35px;
    background: #001a2c;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    z-index: 1;
    overflow: visible;
}

/* --- The Magic Oceanic Pulse Effect --- */
.btn-primary-nav::before, 
.btn-primary::before,
.btn-primary-white::before {
    content: '';
    position: absolute;
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    background: linear-gradient(45deg, #00d4ff, #004e92, #00d4ff, #00fbff);
    background-size: 400%;
    z-index: -1;
    border-radius: inherit;
    animation: flowColors 5s linear infinite;
    filter: blur(4px);
    opacity: 0.8;
}

/* --- Hover Glow Aura --- */
.btn-primary-nav::after,
.btn-primary::after,
.btn-primary-white::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, #00d4ff, #004e92, #00fbff);
    background-size: 400%;
    z-index: -1;
    border-radius: inherit;
    filter: blur(15px);
    animation: flowColors 5s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* --- Interaction Effects --- */
.btn-primary:hover, .btn-primary-white:hover, .btn-primary-nav:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
}

.btn-primary:hover::after, .btn-primary-white:hover::after, .btn-primary-nav:hover::after {
    opacity: 1;
}

/* --- Color Flow Animation --- */
@keyframes flowColors {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Responsive Fix --- */
@media (max-width: 768px) {
    .hero-content {
        margin-left: 0 !important; /* Mobile pe margin reset */
        text-align: center;
    }
    .hero-image img {
        margin-right: 0 !important;
        width: 100%;
    }
}

/* Container to center the button */
.cta-container {
    text-align: center;
    padding: 40px 20px;
    margin-top: 20px;
}

/* The Call Button Styling */
.call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff, #0056b3); /* Professional blue gradient */
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px; /* Rounded pill shape */
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

/* Icon spacing */
.btn-icon {
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Hover Effect */
.call-btn:hover {
    transform: translateY(-3px); /* Chhota sa bounce effect */
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #004085);
    color: #fff;
}

/* Active/Click Effect */
.call-btn:active {
    transform: translateY(-1px);
}

/* Mobile responsive font size */
@media (max-width: 480px) {
    .call-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
}

.chat-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #00d4ff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1000;
    animation: floatPulse 2s infinite;
}


/* Unique HIPAA Section Styles */
.hpc-outer-wrapper {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background-color: transparent; /* Adjust based on your site theme */
}

.hpc-main-frame {
    max-width: 850px;
    width: 100%;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: center;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hpc-identity-side {
    background: #f9fbfc;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-right: 1px solid #f0f0f0;
}

.hpc-logo-box {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.hpc-brand-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.hpc-status-label {
    font-size: 11px;
    font-weight: 700;
    color: #00529B;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.hpc-info-side {
    padding: 40px 50px;
}

.hpc-title {
    font-size: 24px;
    color: #1a202c;
    margin-bottom: 15px;
    font-weight: 700;
}

.hpc-description {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 25px;
}

.hpc-perk-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hpc-pill {
    background: #eff6ff;
    color: #1e40af;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.hpc-indicator {
    height: 6px;
    width: 6px;
    background-color: #3b82f6;
    border-radius: 50%;
    margin-right: 8px;
}

/* Responsive Mobile View */
@media (max-width: 768px) {
    .hpc-main-frame {
        grid-template-columns: 1fr;
    }
    
    .hpc-identity-side {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 30px;
    }
    
    .hpc-info-side {
        padding: 30px 20px;
        text-align: center;
    }
    
    .hpc-perk-list {
        justify-content: center;
    }
}


/* Tablet and Mobile Styles */
@media screen and (max-width: 1024px) {
    .hpc-outer-wrapper {
        margin-top: 0 !important; /* Tablet par negative margin aksar layout kharab karta hai */
        padding: 20px;
    }

    .hpc-main-frame {
        display: flex;
        flex-direction: column; /* Stack vertically for tablets */
        align-items: center;
        text-align: center;
        gap: 2rem;
        padding: 40px 20px;
    }

    .hpc-identity-side {
        width: 100%;
        border-right: none; /* Agar pehle koi border tha toh usey hata dein */
        border-bottom: 1px solid #eee; /* Halka divider niche ke liye */
        padding-bottom: 20px;
    }

    .hpc-info-side {
        width: 100%;
    }

    .hpc-perk-list {
        display: flex;
        flex-wrap: wrap; /* Pills ko multiple lines mein allow karega */
        justify-content: center;
        gap: 10px;
    }

    .hpc-title {
        font-size: 1.8rem; /* Tablet ke liye optimized font size */
    }

    .hpc-description {
        max-width: 600px;
        margin: 0 auto 1.5rem; /* Center aligned paragraph */
    }
}

/* Specific for small tablets/large phones */
@media screen and (max-width: 768px) {
    .hpc-pill {
        width: 100%; /* Choti screens par pills full width ho jayenge */
        display: block;
        margin-bottom: 8px;
    }


}


/* Tablet Responsive Styles (768px se 1024px tak) */
@media screen and (max-width: 1024px) {
    .insurance-tall-card {
        /* Card ko thoda wide karenge taaki text read-ability badhe */
        width: 90%; 
        max-width: 500px;
        margin: 20px auto; /* Screen ke center mein lane ke liye */
        padding: 30px 20px;
        min-height: auto; /* Agar height fixed thi, toh usey auto kar rahe hain */
        
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        
        /* Modern Look ke liye thoda shadow aur border-radius agar pehle nahi tha */
        border-radius: 15px;
        background: #ffffff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .insurance-main-text {
        font-size: 1.1rem; /* Tablet par thoda bada font accha lagta hai */
        line-height: 1.6;
        margin: 15px 0;
    }

    .card-status-dot {
        width: 12px;
        height: 12px;
        margin-bottom: 10px;
    }

    .card-footer-line {
        width: 60px; /* Line ko chota aur clean dikhane ke liye */
        height: 3px;
        background-color: #eee; /* Aap apne brand color se change kar sakte hain */
        margin-top: 10px;
    }
}

/* Extra Small Devices (Phones) */
@media screen and (max-width: 480px) {
    .insurance-main-text {
        font-size: 1rem;
        padding: 0 10px;
    }
}