/* --- GLOBAL RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

/* --- HEADER & NAV (INDEX STYLE) --- */
nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 8%; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-logo { height: 60px; }
.nav-links { display: flex; align-items: center; gap: 45px; list-style: none; }
.nav-links li a { text-decoration: none; color: #333; font-weight: 600; font-size: 1.1rem; }
.btn-primary.pulse-btn { background: #004a99; padding: 12px 28px; border-radius: 8px; animation: pulse 2s infinite; }

/* --- PRIVACY CONTENT --- */
.policy-container { padding: 100px 15%; background: #f8faff; min-height: 80vh; }

.policy-header { text-align: center; margin-bottom: 60px; }
.tag { color: #00c2a8; font-weight: 700; letter-spacing: 2px; }
.policy-header h1 { font-size: 3.5rem; color: #004a99; margin-top: 10px; }

.policy-content { display: grid; gap: 30px; max-width: 900px; margin: 0 auto; }
.policy-card { 
    background: white; 
    padding: 40px; 
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0, 74, 153, 0.05); 
    border-left: 5px solid #00c2a8; /* High-end medical touch */
}
.policy-card h3 { color: #004a99; margin-bottom: 15px; font-size: 1.4rem; }
.policy-card p { color: #64748b; line-height: 1.8; }

/* --- FOOTER (BROAD STYLE) --- */
.footer-lux { background: #002d5a; color: white; padding: 60px 8%; }
.footer-container { display: flex; justify-content: space-between; align-items: center; }
.footer-links { display: flex; gap: 30px; }
.footer-links a { color: white; text-decoration: none; opacity: 0.8; transition: 0.3s; }
.footer-links a:hover { color: #00c2a8; opacity: 1; }

/* Animation */
@keyframes pulse {
    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); }
}



: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;
    }
}



/* --- 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;
}


/* --- PRIVACY POLICY RESPONSIVE --- */

.nav-logo { height: 6rem !important; width: auto !important; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 10px 5%; background: #fff; position: relative; }

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; z-index: 1001; }
.hamburger span { width: 30px; height: 3px; background: #333; transition: 0.3s; }

/* Fixing Footer Margins */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    margin-left: 0 !important; /* Resetting -77rem */
}

.footer-bottom p, .footer-links {
    margin: 0 !important; /* Resetting all fixed margins */
}

@media (max-width: 1024px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none; 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; }
    .nav-links li { margin: 15px 0; text-align: center; }

    /* Policy Content */
    .policy-content {
        padding: 20px !important;
    }
    .policy-card {
        margin-bottom: 20px !important;
    }

    /* Footer Bottom Mobile */
    .footer-bottom {
        flex-direction: column !important;
        text-align: center;
        gap: 15px;
    }
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

/* Hamburger X Animation */
.toggle span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle span:nth-child(2) { opacity: 0; }
.toggle span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }


/* --- 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;
}

/* Oceanic Pulse for Navbar Button */
.btn-primary-nav::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;
}

/* --- Privacy Card Hover Effect --- */
.policy-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 78, 146, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.policy-card:hover {
    transform: translateY(-5px);
    border-color: #00d4ff;
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.1);
}

/* --- Tag Styling --- */
.tag {
    background: linear-gradient(90deg, #004e92, #00d4ff);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* --- Animation Logic --- */
@keyframes flowColors {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Footer & Bottom Fixes */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}