* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* Fix: Push content below fixed header */
body {
    padding-top: 100px;
}

/* Tablet: Adjust padding for medium header */
@media (max-width: 1024px) {
    body {
        padding-top: 85px;
    }
}

/* Mobile: Adjust padding for smaller header */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

/* NAVBAR */
.nav-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
    padding-bottom: 6px;
}

/* BRAND */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-left: -0px;
}

.brand span {
    color: #7fffd4;
}

/* LOGO */
.logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #7fffd4;
}

/* MENU */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 40px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    position: relative;
}

/* underline */
.nav-menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #7fffd4;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* CTA */
.cta {
    background: #7fffd4;
    padding: 8px 18px;
    border-radius: 25px;
    color: #000 !important;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        padding: 20px 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 12px 0;
        font-size: 16px;
    }
}


.hero {
    height: 100vh;
    background: url("Images/yoga.avif") left/cover no-repeat;
    display: flex;
    align-items: center;
}

/* HERO SECTION IMPROVED */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* TEXT */
.hero-text {
    margin-top: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;

}

.hero-text h1 {
    font-size: 48px;
    color: #080808;
    line-height: 1.3;
    font-weight: 700;
}

.hero-text p {
    color: #0f0f0f;
    max-width: 480px;
    line-height: 1.6;
    font-size: 16px;
}

/* SEARCH BAR */
.hero-search {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.hero-search input {
    padding: 14px 20px;
    border-radius: 30px;
    border: none;
    width: 100%;
    max-width: 320px;
    outline: none;
    font-size: 14px;
}

.hero-search button {
    padding: 14px 28px;
    border-radius: 30px;
    border: none;
    background: #7fffd4;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.hero-search button:hover {
    background: #5fe5c4;
}

/* IMAGE */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 850px;
    height: auto;
    border-radius: 20px;
    border: 3px solid #7fffd4;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}

.hero-image img:hover {
    transform: scale(1.03);
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-search input,
    .hero-search button {
        padding: 12px 18px;
        font-size: 14px;
    }
}

.hero-search {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.hero-search input {
    padding: 14px 20px;
    border-radius: 30px;
    border: 2px solid #7fffd4;
    /* SAME BORDER */
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: 320px;
    outline: none;
    font-size: 14px;
    box-sizing: border-box;
}

.hero-search input:focus {
    border-color: #7fffd4;
    /* color same, no jump */
    box-shadow: none;
    /* no box / no glow */
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-search {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-image img {
        max-width: 100%;
    }
}

@media (max-width: 375px) {
    .hero-container {
        padding-top: 10px;
        /* header ke neeche space badhaya */
    }
}


/* MOBILE */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-search {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-text h1 {
        font-size: 36px;
    }
}
































/* SEARCH BAR - Overlay on Hero Background Image */
.hero-image-search {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 70px;
    padding: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 50;
    backdrop-filter: blur(12px);
    border: 3px solid rgba(127, 255, 212, 0.5);
}

.hero-image-search input {
    flex: 1;
    padding: 22px 32px;
    border: none;
    border-radius: 60px;
    background: transparent;
    font-size: 18px;
    outline: none;
    color: #1a4d44;
    font-weight: 500;
    min-width: 0;
    transition: all 0.3s ease;
}

.hero-image-search input::placeholder {
    color: #94a3b8;
    font-weight: 400;
    font-size: 17px;
}

.hero-image-search input:focus {
    background: rgba(127, 255, 212, 0.12);
    box-shadow: inset 0 2px 8px rgba(127, 255, 212, 0.15);
}

.hero-image-search button {
    padding: 20px 40px;
    border-radius: 60px;
    border: none;
    background: linear-gradient(135deg, #7fffd4 0%, #5fe5c4 100%);
    color: #1a4d44;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(127, 255, 212, 0.5);
}

.hero-image-search button:hover {
    background: linear-gradient(135deg, #5fe5c4 0%, #4dd4b3 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(127, 255, 212, 0.6);
}

.hero-image-search button:active {
    transform: translateY(-1px);
}

.hero-image-search button i {
    font-size: 20px;
}







/* ==============Luxury Section ========*/

:root {
    --lux-gold: #4da572;
    --lux-dark: #1a1a1a;
    --lux-light: #f9f9f9;
    --lux-grey: #666;
}

/* Luxury Hero Section */
.lux-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    width: 100%;
}

.lux-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Luxury Search Input */
#lux-searchInput {
    padding: 15px;
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    border: 2px solid var(--lux-gold);
    /* Gold border for luxury feel */
    margin-top: 20px;
    font-size: 1rem;
    outline: none;
}

/* Luxury Grid Layout */
.lux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

/* Luxury Cards */
.lux-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: left;
    /* Align text to left inside card */
}

.lux-card:hover {
    transform: translateY(-10px);
}

.lux-card-img {
    height: 200px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.lux-card-content {
    padding: 20px;
}

.lux-card-content h3 {
    margin: 0;
    color: var(--lux-gold);
    font-size: 1.4rem;
}

.lux-location {
    font-size: 0.9rem;
    color: var(--lux-grey);
    margin-bottom: 10px;
    display: block;
}

/* Luxury Tags */
.lux-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.lux-tag {
    background: #f0f0f0;
    padding: 5px 12px;
    font-size: 0.75rem;
    border-radius: 20px;
    color: var(--lux-dark);
    border: 1px solid #ddd;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .lux-hero h1 {
        font-size: 2rem;
    }

    .lux-grid {
        grid-template-columns: 1fr;
    }
}





























.filter-controls {
    padding: 40px 0;
    text-align: center;
    background: #f8fafc;
}

.button-group {
    display: inline-flex;
    gap: 15px;
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.filter-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 40px;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.filter-btn i {
    font-size: 18px;
}

/* Hover Effect */
.filter-btn:hover {
    color: #10b981;
    background: #f0fdf4;
}

/* Active State Design */
.filter-btn.active {
    background: #10b981;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        border-radius: 20px;
        width: 90%;
    }
}

































































/* --- ULTIMATE TRUSTED SECTION CSS --- */

.trust-wrapper {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff, #f0fffb);
    /* Subtle gradient background */
}

/* Section Header styling */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1a4d44;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.section-title .underline {
    width: 80px;
    height: 4px;
    background: #7fffd4;
    margin: 0 auto;
    border-radius: 2px;
}

/* Grid Layout */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Luxury Trust Card */
.trust-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(78, 143, 121, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;

}

.trust-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(26, 77, 68, 0.15);
    border-color: #7fffd4;
}

/* Verified Badge with Animation */
.trust-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(40, 167, 97, 0.9);
    backdrop-filter: blur(5px);
    color: white;
    padding: 6px 15px;
    font-size: 12px;
    border-radius: 30px;
    z-index: 10;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Image Zoom Effect */
.trust-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trust-card:hover .trust-img {
    transform: scale(1.1);
}

.img-container {
    overflow: hidden;
    /* Important for zoom effect */
    height: 220px;
}

/* Card Body Content */
.trust-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rating-stars {
    color: #ffc107;
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-count {
    color: #888;
    font-size: 13px;
    font-weight: 400;
}

.trust-card h3 {
    font-size: 1.4rem;
    color: #5ba179;
    margin-bottom: 10px;
    font-weight: 700;
}

.trust-loc {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Attractive CTA Button */
.trust-btn {
    margin-top: auto;
    background: transparent;
    border: 2px solid #54b4a3;
    color: #10b981;
    ;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.trust-btn:hover {
    background: #10b981;
    ;
    color: #fff;
    box-shadow: 0 5px 15px rgba(26, 77, 62, 0.3);
}

/* Responsive Mobile view */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}














.hosp-wrapper {
    padding: 100px 0;
    background: #f8fafc;
    /* Very light medical blue/grey */
}

.hosp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.hosp-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hosp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 102, 204, 0.1);
    border-color: #10b981;
    ;
}

.hosp-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #10b981;
    ;
    color: white;
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 5px;
    font-weight: 600;
    z-index: 5;
}

.hosp-img-container {
    height: 200px;
    overflow: hidden;
}

.hosp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.hosp-card:hover .hosp-img {
    transform: scale(1.1);
}

.hosp-body {
    padding: 25px;
}

.hosp-rating {
    color: #f59e0b;
    /* Amber Gold */
    font-size: 14px;
    margin-bottom: 10px;
}

.hosp-body h3 {
    font-size: 1.3rem;
    color: #5ba179;
    margin-bottom: 8px;
}

.hosp-info {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hosp-btn {
    width: 100%;
    padding: 12px;
    background: #f1f5f9;
    border: none;
    color: #10b981;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.hosp-btn:hover {
    background: #10b981;
    ;
    color: #fff;
}





















/* --- CLINIC SECTION IMPROVED CSS --- */
.clinic-wrapper {
    padding: 80px 0;
    background: #ffff;
}

.clinic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        line-height: 1.6;
        overflow-x: hidden;
        /* horizontal scroll prevent karega */
    }

    /* ===== NAVBAR ===== */
    .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(12, 12, 12, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        /* Safari support */
        z-index: 1000;
    }

    .nav-container {
        max-width: 1200px;
        margin: auto;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        /* small screens me break ho sake */
    }

    .brand {
        font-size: 22px;
        font-weight: 600;
        color: #1d9b66;
        ;
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        /* agar anchor hai to underline remove */
        white-space: nowrap;
        /* text break na ho */
    }

    /* ===== Mobile Responsive ===== */
    @media (max-width:768px) {
        .nav-container {
            padding: 12px 15px;
        }

        .brand {
            font-size: 18px;
        }
    }


    .brand span {
        color: #10b981;
        ;
    }

    .logo {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        object-fit: cover;
        /* image distort na ho */
    }

    .nav-menu {
        display: flex;
        gap: 25px;
        align-items: center;
    }

    .nav-menu a {
        text-decoration: none;
        color: #fff;
        font-size: 15px;
        transition: all .3s ease;
        position: relative;
    }

    /* Hover Effect (clean underline animation) */
    .nav-menu a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        background: #10b981;
        transition: .3s;
    }

    .nav-menu a:hover::after {
        width: 100%;
    }

    /* ===== Tablet ===== */
    @media (max-width:992px) {
        .nav-menu {
            gap: 18px;
        }
    }

    /* ===== Mobile ===== */
    @media (max-width:768px) {
        .nav-menu {
            gap: 15px;
        }

        .nav-menu a {
            font-size: 14px;
        }
    }


    .nav-menu a:hover {
        color: #10b981;
        ;
    }

    .cta {
        background: #10b981;
        ;
        padding: 8px 14px;
        border-radius: 6px;
    }

    .cta:hover {
        background: #10b981;
    }

    .hamburger {
        display: none;
        font-size: 24px;
        color: #fff;
        cursor: pointer;
    }

    .hero {
        min-height: 100vh;
        background:
            linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)),
            url("Images/yoga.avif") center/cover no-repeat;
        display: flex;
        align-items: center;
        position: relative;
        width: 100%;
        padding: 140px 20px 60px;
        /* single clean padding */
    }

    max-width: 1200px;
    margin: 0 auto;
}

.clinic-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(5, 4, 4, 0.05);
}

.clinic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.15);
}

/* Image Container for Clinic */
.clinic-img-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.clinic-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.clinic-card:hover .clinic-img-box img {
    transform: scale(1.1);
}

/* Category Badge over image */
.clinic-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #21aa71;
    /* Teal */
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    border-radius: 50px;
    font-weight: 500;
    z-index: 2;

}

.clinic-content {
    padding: 25px;
    text-align: left;
}

.clinic-content h3 {
    font-size: 1.4rem;
    color: #5ba179;
    margin-bottom: 5px;
}

.clinic-location {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.clinic-rating-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #fbbf24;
    /* Star Gold */
}

.clinic-desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    height: 45px;
    /* Text alignment */
    overflow: hidden;
}

.clinic-action-btn {
    width: 100%;
    padding: 12px;
    background: #f0fdfa;
    border: 1px solid #10b981;
    color: #10b981;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.clinic-action-btn:hover {
    background: #0d9488;
    color: white;
}






/* --- FILTER SECTION & BUTTONS --- */
.filter-navigation {
    background: #f8fafc;
    padding: 40px 20px;
    text-align: center;
}

/* Paragraph and Heading Styling */
.filter-intro h2 {
    color: #1a4d44;
    font-size: clamp(24px, 5vw, 32px);
    /* Responsive font size */
    font-weight: 700;
    margin-bottom: 10px;
}

.filter-intro p {
    color: #64748b;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Button Group Container */
.btn-group-wrapper {
    display: inline-flex;
    background: white;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    gap: 5px;
}

/* Base Button Style */
.tab-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    background: transparent;
    color: #475569;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    /* Text break nahi hoga */
}

/* Active Button State */
.tab-btn.active {
    background: #10b981;
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

/* --- SECTION & CARD STABILITY --- */
/* Transitions for smooth switching */
.trust-wrapper,
.hosp-wrapper,
.clinic-wrapper,
.lux-wrapper,
.container {
    transition: opacity 0.3s ease;
    width: 100%;
}

/* Card Reset (Extra transform effects hataye gaye) */
.trust-card,
.hosp-card,
.clinic-card {
    transform: none;
    opacity: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* --- RESPONSIVE DESIGN (MOBILE FIX) --- */
@media (max-width: 768px) {
    .filter-navigation {
        padding: 30px 15px;
    }

    .btn-group-wrapper {
        display: flex;
        /* Mobile par flexbox */
        flex-direction: row;
        /* Buttons ek line mein rahenge */
        overflow-x: auto;
        /* Agar screen chhoti ho toh scroll honge */
        width: 100%;
        border-radius: 15px;
        padding: 5px;
        scrollbar-width: none;
        /* Firefox scrollbar hide */
    }

    .btn-group-wrapper::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari scrollbar hide */
    }

    .tab-btn {
        flex: 1;
        /* Buttons barabar jagah lenge */
        justify-content: center;
        padding: 10px 15px;
        font-size: 14px;
    }
}






























/* --- BROWSE SECTION CSS --- */
.browse-wrapper {
    padding: 80px 0;
    background: #fdfdfd;
}

.browse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.browse-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.browse-card:hover {
    transform: translateY(-10px);
    border-color: #7fffd4;
    box-shadow: 0 15px 35px rgba(127, 255, 212, 0.2);
}

.browse-icon {
    width: 70px;
    height: 70px;
    background: #f0fdfa;
    color: #0d9488;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: 0.3s;
}

.browse-card:hover .browse-icon {
    background: #0d9488;
    color: #fff;
    transform: rotateY(360deg);
}

.browse-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 12px;
}

.browse-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
}

.count-tag {
    font-size: 12px;
    font-weight: 600;
    color: #0d9488;
    background: #e0fff6;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Scroll Smoothing for links */
html {
    scroll-behavior: smooth;
}



































.treatment-section {
    padding: 100px 0;
    background: #fff;
}

.treatment-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Image Grid Styling */
.treatment-image-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    min-width: 350px;
}

.leaf-img {
    overflow: hidden;
    height: 200px;
}

.leaf-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Shapes matched to your image */
.img-1 {
    grid-row: span 2;
    height: 415px;
    border-radius: 100px 0 100px 100px;
    /* Left long petal */
}

.img-2 {
    border-radius: 0 100px 0 100px;
    /* Top right petal */
}

.img-3 {
    border-radius: 100px 0 100px 0;
    /* Bottom right circle-ish */
}

/* Content Styling */
.treatment-content {
    flex: 1.2;
}

.treatment-header h2 {
    font-size: 2.8rem;
    color: #111;
    margin-bottom: 20px;
    font-weight: 700;
}

.treatment-header p {
    color: #666;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Pills Grid */
.treatment-pills {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.pill {
    background: #f1f5f4;
    padding: 18px 25px;
    border-radius: 50px;
    text-align: center;
    font-size: 15px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.pill:hover {
    background: #e2e8e7;
}

.pill.active {
    background: #1a5d4e;
    /* Dark green from your image */
    color: white;
}

@media (max-width: 768px) {
    .treatment-flex {
        flex-direction: column;
        text-align: center;
    }

    .treatment-header p {
        margin: 0 auto 40px;
    }
}





























/* --- BLOG SECTION STYLING --- */
.blog-section {
    padding: 100px 0;
    background-color: #fcfdfd;
    /* Light neutral background */
}

/* Header Styling */
.center-header {
    text-align: center;
    margin-bottom: 60px;
}

.center-header h2 {
    font-size: 48px;
    color: #1a4d44;
    /* Your theme dark green */
    margin-bottom: 15px;
    font-weight: 700;
}

.center-header p {
    color: #64748b;
    font-size: 35px;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Blog Card Design */
.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 77, 68, 0.1);
    border-color: #1a4d44;
}

/* Image Hover Zoom */
.blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover img {
    transform: scale(1.1);
}

/* Body Content */
.blog-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-body small {
    color: #10b981;
    /* Accent Green */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.blog-body h4 {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-body p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Read More Link */
.blog-body a {
    text-decoration: none;
    color: #1a4d44;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-body a:hover {
    gap: 12px;
    color: #10b981;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }

    .center-header h2 {
        font-size: 28px;
    }
}














































.main-footer {
    background-color: #1a4d44;
    /* Dark Green matched with your image */
    color: #ffffff;
    padding: 60px 8% 20px;
    font-family: 'Arial', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    padding: 2px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: bold;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #c9d6d4;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #a4c7bc;
    /* Accent color from your logo */
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #c9d6d4;
    font-size: 14px;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons img {
    width: 24px;
    filter: invert(1);
    /* Makes black icons white */
    transition: 0.3s;
}

.social-icons img:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #a4c7bc;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }
}

/* Specific Style for Footer Mission Paragraph */
.footer-top-info {
    max-width: 1100px;
    margin: 0 auto 50px auto;
    /* Centering and bottom gap */
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    /* Very subtle light glow */
    border-radius: 15px;
    border-left: 5px solid #10b981;
    /* Dark green accent line */
    position: relative;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.footer-top-info p {
    font-size: 15px;
    line-height: 1.8;
    /* Better readability */
    color: #94a3b8;
    /* Professional slate grey color */
    text-align: justify;
    /* Clean edges on both sides */
    margin: 0;
    font-weight: 400;
}

/* Styling the "Rehab Care" text inside paragraph */
.footer-top-info p strong {
    color: #10b981;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-right: 5px;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .footer-top-info {
        padding: 20px;
        margin: 0 15px 40px 15px;
        border-left: none;
        border-top: 5px solid #10b981;
        /* Border moves to top on mobile */
    }

    .footer-top-info p {
        text-align: center;
        /* Center text for smaller screens */
        font-size: 14px;
    }
}

/* End of file (responsive overrides removed as requested) */


/* ===============================
   SEARCH RESULTS STYLES
   =============================== */

/* Search Results Container */
.search-results {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 500px;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #7fffd4;
}

.search-results-header h3 {
    color: #1a4d44;
    font-size: 18px;
    margin: 0;
}

.close-search {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.close-search:hover {
    color: #1a4d44;
}

.search-results-content {
    max-height: 400px;
    overflow-y: auto;
}

/* Loading State */
.search-results-content .loading {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
}

/* No Results */
.search-results-content .no-results {
    text-align: center;
    padding: 20px;
    color: #666;
}

.search-results-content .no-results p {
    margin-bottom: 10px;
}

/* Error State */
.search-results-content .search-error {
    text-align: center;
    padding: 20px;
    background: #fee2e2;
    border-radius: 10px;
    margin: 10px 0;
}

.search-results-content .search-error p {
    color: #dc2626;
    margin-bottom: 5px;
}

.search-results-content .error-detail {
    font-size: 12px;
    color: #991b1b;
}

.search-results-content .help-text {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    background: #f1f5f9;
    padding: 8px;
    border-radius: 5px;
}

/* Results Count */
.results-count {
    font-size: 14px;
    color: #1a4d44;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Results List */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Individual Result Card */
.search-result-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.search-result-card:hover {
    background: #f0fdfa;
    border-color: #7fffd4;
    transform: translateX(5px);
}

.search-result-card .result-info h4 {
    color: #1a4d44;
    font-size: 16px;
    margin-bottom: 5px;
}

.search-result-card .result-info p {
    font-size: 13px;
    color: #64748b;
    margin: 3px 0;
}

/* Mobile Responsive for Search */
@media (max-width: 768px) {
    .search-results {
        max-width: 100%;
        margin-top: 15px;
    }

    .hero-search {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-search input {
        max-width: 100%;
    }
}





















