@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Outfit", sans-serif;
    overflow-x: hidden;
}

/* ==================== NAVBAR ==================== */
.custom-navbar {
    backdrop-filter: blur(12px);
    background: #ffffff;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 82%;
}

.nav-link-custom {
    font-weight: 700;
    color: #070707;
    transition: all 0.3s ease;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
}

.nav-btn {
    background-color: #0d6efd;
    color: white;
    border-radius: 25px;
    padding: 8px 15px 8px 15px;
    border: none;
}

.dr {
    font-size: 15px;
}

.mb {
    font-size: 7px;
    font-weight: 800;
}

.st {
    font-size: 7px;
}

/* Dropdown container */
.dropdown-hover {
    padding: 10px 0;
}

/* Dropdown menu */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

/* Show on hover */
.dropdown-hover:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown links */
.dropdown-menu-custom li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.dropdown-menu-custom li a:hover {
    /* background: #f1f5ff;
    color: #0d6efd; */
    padding-left: 25px;
}

/* ================= RESPONSIVE FIXES ONLY ================= */

/* Navbar container scaling */
@media (max-width: 1200px) {
    .custom-navbar {
        width: 95%;
    }
}

/* Tablet */
@media (max-width: 992px) {
    nav {
        top: 0;
        margin-top: 10px !important;
    }

    .custom-navbar {
        border-radius: 25px;
        padding: 10px 15px;
    }

    .dr {
        font-size: 14px;
    }

    .mb,
    .st {
        font-size: 9px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    /* Navbar width & spacing */
    .custom-navbar {
        width: 100%;
        border-radius: 18px;
        padding: 8px 12px;
    }

    /* Logo text scaling */
    .dr {
        font-size: 13px;
    }

    .mb,
    .st {
        display: none;
    }

    /* Book consultation button */
    .nav-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    /* Mobile menu */
    .mobile-menu {
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .mobile-menu a {
        font-size: 14px;
        font-weight: 600;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    /* min-height: 90vh; */
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-tex {
    margin-left: 20rem;
    border: 2px solid #0d6efd;
    background-color: red;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.3) 100%);
}

.hero-content-home {
    position: relative;
    z-index: 2;
    color: white;
    padding-left: 90px;
    padding-top: 95px;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 95px;
}

.hero-pera {
    font-size: 14px;
}

.hero-btn {
    border-radius: 25px;
}

.hero h1 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    background: #fff;
    border-top: 1px solid #eee;
    border-radius: 0 0 20px 20px;
}

.mobile-menu a {
    color: #555;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #0d6efd;
    padding-left: 10px;
}

/* ================= FEATURE SECTION ================= */

.feature-wrapper {
    padding: 80px 0;
    background: #ffffff;
}

.feature-card {
    height: 100%;
    background: #eef5ff;
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

/* ICON – Figma exact */
.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;

    background: #2563eb;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.feature-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    /* Agar SVG white hai → filter ki zarurat nahi */
}

/* TEXT */
.feature-card h6 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    margin: 0;
}

/* ================= MOBILE FIX ================= */

@media (max-width: 575px) {
    .feature-wrapper {
        padding: 50px 0;
    }

    .feature-card {
        padding: 22px 16px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .feature-icon img {
        width: 20px;
        height: 20px;
    }

    .feature-card h6 {
        font-size: 14px;
    }

    .feature-card p {
        font-size: 12px;
    }

    .hero-content-home {
        padding-left: 0px;
    }
}


/* ================= ABOUT SECTION ================= */

.about-section {
    background: #ffffff;
}

.about-card {
    position: relative;
    background: linear-gradient(135deg,
            #fde7ea 0%,
            #e6ebfa 50%,
            #fde7ea 100%);
    border-radius: 36px;
    padding: 80px 70px;
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 3;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    color: #0f172a;
}

.about-text {
    font-size: 16px;
    line-height: 1.75;
    color: #1f2937;
}

.about-subtext {
    font-size: 15px;
    line-height: 1.75;
    color: #475569;
    margin-top: 14px;
}

.about-btn {
    display: inline-block;
    margin-top: 26px;
    padding: 14px 38px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
    transition: all 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
}

.about-images {
    position: relative;
    z-index: 2;
}

.about-img {
    width: 100%;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 4;
}

img.about-img.img-left {
    width: 286px;
    height: 390px;
}

img.about-img.img-right {
    width: 364px;
    height: 400px;
    border-radius: 20px;
    right: 40px;
}

.img-left {
    transform: translateY(60px);
}

.img-right {
    transform: translateY(-20px);
}

.about-blob {
    position: absolute;
    width: 400px;
    height: 335px;
    background-image: url('../images/about-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    bottom: -78px;
    left: 102px;
    z-index: 1;
}


@media (max-width: 991px) {
    .about-card {
        padding: 50px 30px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-img {
        height: 260px;
    }

    img.about-img.img-right {
        right: 0px;
    }

    .img-left,
    .img-right {
        transform: none;
    }

    .about-blob {
        display: none;
    }
}

@media (max-width: 767px) {

    .about-card {
        padding: 40px 22px;
        border-radius: 24px;
    }

    .about-title {
        font-size: 26px;
    }

    .about-text,
    .about-subtext {
        font-size: 14px;
    }

    .about-images .row {
        flex-direction: column;
        align-items: center;
    }

    .about-images .col-6 {
        width: 100%;
        max-width: 100%;
    }

    .about-img {
        width: 100% !important;
        height: auto !important;
        max-height: 360px;
        margin-bottom: 20px;
        border-radius: 20px;
    }

    .img-left,
    .img-right {
        transform: none !important;
    }

    .about-blob {
        display: none !important;
    }
}

/* ==================== SERVICES SECTION ==================== */

.services-section {
    padding: 70px 0;
    width: 100%;
    overflow: hidden;
}

.service-box {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.services-section p {
    color: #475569;
}

.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 4px;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    background: #faf7f8;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
    border-color: #3b82f6;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 24px;
    margin-bottom: 20px;
}

.custom-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-btn-left {
    left: -20px;
}

.carousel-btn-right {
    right: -20px;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }

    .service-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 768px) {

    .services-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .services-section p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .carousel-track {
        padding-left: 12px;
        padding-right: 12px;
        gap: 16px;
    }

    .service-card {
        flex: 0 0 85%;
        max-width: 85%;
        padding: 24px;
    }

    .carousel-btn {
        display: none !important;
    }
}

/* ================= TREATMENTS ================= */
.treatments-wrap {
    width: 95%;
    margin: 0 auto;
}

.treatments-card {
    background: linear-gradient(135deg, #fde7ea 0%, #d4daf3 50%, #fde7ea 100%);
    border-radius: 32px;
    padding: 80px;
}

.treat-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0f172a;
}

.treat-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
}

.treat-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 24px;
    transition: opacity 0.35s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.treat-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.treat-item {
    background: #fff;
    border-radius: 18px;
    padding: 22px 26px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.treat-item.active {
    background: #dbeafe;
}

.treat-head {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
}

.treat-body {
    display: none;
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
    margin-top: 12px;
}

.treat-item.active .treat-body {
    display: block;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
    .treatments-card {
        padding: 40px 24px;
    }

    .treat-title {
        font-size: 30px;
    }

    .treat-img {
        margin-bottom: 30px;
        max-height: 300px;
    }
}

/* ================= WHY CHOOSE ================= */
.why-choose {
    padding: 80px 0;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px;
}

.why-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #0f172a;
}

.why-header p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.why-stats {
    display: flex;
    flex-direction: column;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #0f172a;
}

.stat-item span {
    font-size: 15px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
}

.stat-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    max-width: 520px;
}

/*.divider {*/
/*    height: 1px;*/
/*    background: #e5e7eb;*/
/*    margin: 26px 0;*/
/*}*/

.divider {
    height: 1px;
    background: #e5e7eb;
    margin: 10px 0;
}
@media (max-width: 992px) {
    .why-header h2 {
        font-size: 30px;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-image img {
        max-height: 320px;
    }

    .stat-item h3 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .why-header {
        margin-bottom: 40px;
    }

    .why-header h2 {
        font-size: 26px;
    }

    .why-header p {
        font-size: 14px;
    }

    .stat-item p {
        font-size: 13px;
    }
}

/* ==================== TESTIMONIALS ==================== */

.testimonials-section {
    padding: 0px 0;
}

.testimonials-wrap {
    width: 95%;
    margin: auto;
    background: linear-gradient(135deg, #fde7ea 0%, #d4daf3 50%, #fde7ea 100%);
    border-radius: 36px;
    padding: 60px 40px;
}

.testimonials-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.testimonials-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.testimonials-header p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.testimonial-slider-wrapper {
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 360px;
    background: #fff;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial-card .quote {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 18px;
}

.testimonial-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.testimonial-card span {
    font-size: 12px;
    color: #64748b;
}

.testimonial-arrows {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.testimonial-arrows button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #2563eb;
    background: transparent;
    font-size: 22px;
    color: #2563eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-arrows button:hover {
    background: #2563eb;
    color: #fff;
}


@media (max-width: 768px) {
    .testimonials-wrap {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .testimonials-header h2 {
        font-size: 26px;
    }

    .testimonial-card {
        flex: 0 0 280px;
    }

    .testimonial-arrows {
        display: none;
    }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 70px 0;
}

.cta-wrapper-home {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.45) 45%,
            rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 60px;
}

.cta-text {
    max-width: 520px;
    color: #fff;
}

.cta-text h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.cta-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #e5e7eb;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 34px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .cta-wrapper-home {
        min-height: 360px;
    }

    .cta-content {
        padding: 40px;
    }

    .cta-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .cta-wrapper-home {
        min-height: auto;
        border-radius: 22px;
    }

    .cta-content {
        padding: 30px 24px;
    }

    .cta-text {
        max-width: 100%;
        text-align: left;
    }

    .cta-text h2 {
        font-size: 26px;
    }

    .cta-text p {
        font-size: 14px;
    }

    .cta-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 80px 0;
    padding-bottom: 190px;
}

.faq-wrapper {
    max-width: 95%;
    margin: 0 auto;
    background: linear-gradient(135deg, #fde7ea 0%, #e9efff 50%, #fde7ea 100%);
    border-radius: 32px;
    padding: 70px 20px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.faq-header p {
    max-width: 720px;
    margin: 0 auto 50px;
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

.faq-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 22px;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    transition: max-height 0.35s ease, padding-top 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 14px;
}

.faq-item.active .faq-icon {
    background: #2563eb;
    color: #fff;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 28px;
    }

    .faq-wrapper {
        padding: 50px 16px;
        border-radius: 24px;
    }

    .faq-question {
        font-size: 14px;
        gap: 10px;
    }

    .faq-answer {
        font-size: 13px;
    }
}

/* ================= FOOTER ================= */
.footer-section {
    background: linear-gradient(135deg, #fde2e4 0%, #cfe3ff 50%, #fde2e4 100%);
    border-radius: 50px 50px 0 0;
    padding-top: 220px;
    position: relative;
}

.appointment-wrapper {
    position: absolute;
    top: -140px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.appointment-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 1100px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.appointment-card h3 {
    font-weight: 700;
}

.appointment-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.appointment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.appointment-grid input,
.appointment-grid select {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}

.appointment-grid button {
    grid-column: span 4;
    background: #3083ff;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.appointment-grid button:hover {
    background: #1e6fe0;
}

.footer-content {
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-grid h5,
.footer-grid h6 {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-grid p,
.footer-grid a {
    font-size: 14px;
    color: #555;
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}

.footer-grid a:hover {
    color: #3083ff;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3083ff;
    font-size: 16px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #3083ff;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
    text-align: center;
    color: #666;
}

@media (max-width: 992px) {

    .appointment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .appointment-grid button {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .footer-content {
        padding: 245px 90px;
        padding-bottom: 20px;
    }


    .appointment-card {
        padding: 25px;
    }

    .appointment-grid {
        grid-template-columns: 1fr;
    }

    .appointment-grid button {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* ==================== RESPONSIVE ADJUSTMENTS ==================== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about-box,
    .treatment-section,
    .faq-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .stat-box h2 {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .about-img {
        height: 220px;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* ===================================== */
/* ==============CONTACT PAGE============ */
/* ===================================== */

.sub-hero {
    min-height: 50vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.sub-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

.hero h1 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.pera {
    font-size: 12px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    background: #fff;
    border-top: 1px solid #eee;
    border-radius: 0 0 20px 20px;
}

.mobile-menu a {
    color: #555;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #0d6efd;
    padding-left: 10px;
}

/* ==================== FEATURE CARDS ==================== */
.feature-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    height: 100%;
}

.feature-card:hover {
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.2);
    transform: translateY(-8px);
    border-color: #2563eb;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.contact-form-box {
    background: linear-gradient(135deg, #fde7ea 0%, #d4daf3 50%, #fde7ea 100%);
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid #dbeafe;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 0.15rem rgba(59, 130, 246, 0.25);
}

.map-box {
    min-height: 100%;
}

@media (max-width: 768px) {
    .map-box {
        height: 300px;
    }
}

/* ============================== */
/* =========SERVICE PAGE========= */
/* ============================== */



/* ---------- HERO / CTA ---------- */

.cta-wrapper {
    background: linear-gradient(135deg, #fde7ea 0%, #d4daf3 50%, #fde7ea 100%);
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 30px;
}

/* ---------- SECOND CTA WRAPPER ---------- */

.cta-wrapper-way {
    background: linear-gradient(135deg, #fde7ea 0%, #d4daf3 50%, #fde7ea 100%);
    width: 95%;
    margin: 0 auto;
    border-radius: 30px;
    padding: 3rem 2rem;
}


.cta-wrapper-kid {
    background: linear-gradient(135deg,
            #fde7ea 0%,
            #d4daf3 50%,
            #fde7ea 100%);
    width: 93%;
    margin: 0 auto;
    border-radius: 30px;
}

.kidney-img-wrap img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* ================= STONE GRID (4 + 2 LAYOUT) ================= */

.stone-text {
    max-width: 1100px;
    margin: 2.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    justify-content: start;
}

/* Center last two cards */
.stone-text .card:nth-child(5) {
    grid-column: 2;
}

.stone-text .card:nth-child(6) {
    grid-column: 3;
}

/* ---------- STONE CARDS ---------- */

.stone-text .card {
    width: 20rem;
    border-radius: 16px;
}



.card-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ================= CTA IMAGE & CONTENT ================= */

.cta-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    color: #fff;
}

/* ================= OTHER UTILS ================= */

.cta-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    padding-left: 40px;
}

.service-text {
    max-width: 900px;
    margin: 0 auto;
}

.service-pera {
    font-size: 15px;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .stone-text {
        grid-template-columns: repeat(2, 1fr);
    }

    .stone-text .card:nth-child(5),
    .stone-text .card:nth-child(6) {
        grid-column: auto;
    }
}

@media (max-width: 576px) {
    .stone-text {
        grid-template-columns: 1fr;
    }

    .cta-wrapper-way {
        padding: 2rem 1.2rem;
    }
}

/* ================= GUIDING PRINCIPLES SECTION ================= */

/* Top heading section */
.service-text {
    max-width: 900px;
}

.service-text h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}

.service-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* Info card (image background like figma) */
.info-card {
    background: linear-gradient(135deg,
            rgba(253, 226, 228, 0.6),
            rgba(207, 227, 255, 0.6));
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Image inside card */
.info-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

/* Text column spacing */
.row h2 {
    font-size: 32px;
    font-weight: 800;
}

.row h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.row p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;
}

section.mission.py-5 {
    margin-top: -20px;
}

section.vission.py-5 {
    margin-top: -20px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .service-text h1 {
        font-size: 32px;
    }

    .row h2 {
        font-size: 28px;
    }

    .row h5 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {

    section.py-5 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    section.vission.py-5 {
        margin-top: -80px;
        margin-bottom: -70px;

    }

    .service-text {
        text-align: center;
        padding: 0 10px;
    }

    .service-text h1 {
        font-size: 28px;
    }

    .service-text p {
        font-size: 15px;
    }

    .row {
        text-align: center;
    }

    .row h2 {
        font-size: 26px;
    }

    .row h5 {
        font-size: 16px;
    }

    .info-card {
        padding: 18px;
    }
}

@media (max-width: 576px) {

    .service-text h1 {
        font-size: 24px;
    }

    .row h2 {
        font-size: 22px;
    }

    .row h5 {
        font-size: 15px;
    }

    .row p {
        font-size: 14px;
    }

    .info-card {
        border-radius: 18px;
    }
}

/* ================= WHAT SETS US APART ================= */

.apart-section {
    padding: 80px 0;
}

.apart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.apart-card {
    background: linear-gradient(135deg, #fde7ea 0%, #e7efff 100%);
    border-radius: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    padding: 50px;
}

/* IMAGE */
.apart-image img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* CONTENT */
.apart-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
}

.apart-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.apart-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 32px;
    background: #3083ff;
    color: #fff;
    border-radius: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.apart-btn:hover {
    background: #1e6fe0;
    transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .apart-card {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }

    .apart-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .apart-section {
        padding: 60px 0;
    }

    .apart-card {
        padding: 28px 22px;
        gap: 30px;
    }

    .apart-content h2 {
        font-size: 24px;
    }

    .apart-content p {
        font-size: 14px;
    }

    .apart-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
}

.breadcrumb-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.breadcrumb-link:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.pera {
    color: #ffffff;
}

/* ================= KIDNEY SERVICE SECTION ================= */
.kidney-service-section {
    background: #ffffff;
}

.kidney-service-row {
    max-width: 1200px;
    margin: auto;
}

.kidney-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 16px;
}

.kidney-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;
    max-width: 95%;
}

.kidney-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 26px;
    background: #3083ff;
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s ease;
}

.kidney-btn:hover {
    background: #1e6fe0;
    transform: translateY(-1px);
}

.kidney-image-card {
    /*background: #ffffff;*/
    padding: 22px;
    border-radius: 20px;
    /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);*/
    text-align: center;
}

.kidney-image-card img {
    width: 100%;
    max-width: 420px;
    border-radius: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

    .kidney-content h2 {
        font-size: 28px;
    }

    .kidney-content p {
        font-size: 14px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {

    .kidney-service-section {
        padding-top: 30px;
    }

    .kidney-content {
        text-align: center;
    }

    .kidney-content h2 {
        font-size: 24px;
    }

    .kidney-btn {
        width: 100%;
        text-align: center;
    }

    .kidney-image-card {
        padding: 16px;
    }
}

/* ================= KIDNEY PROCEDURE SECTION ================= */
.kidney-procedure-section {
    padding: 80px 16px;
}

.kidney-procedure-card {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px;
    background: linear-gradient(135deg, #fde2e4 0%, #e6f0ff 50%, #fde2e4 100%);
    border-radius: 40px;
}

.kidney-image {
     
    border-radius: 24px;
    padding: 24px;
    display: flex;
    justify-content: center;
}

.kidney-image img {
    max-width: 100%;
    border-radius: 16px;
}

.kidney-procedure-card h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
}

.kidney-procedure-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;
}

@media (max-width: 992px) {
    .kidney-procedure-card {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .kidney-procedure-section {
        padding: 50px 12px;
    }

    .kidney-procedure-card {
        padding: 26px 18px;
        border-radius: 26px;
    }

    .kidney-procedure-card h2 {
        font-size: 22px;
        text-align: center;
    }

    .kidney-procedure-card p {
        font-size: 14px;
        text-align: center;
    }

    .kidney-image {
        padding: 16px;
    }
}

/* ================= COST SECTION ================= */
.cost-section {
    padding: 0px 16px;
}

.cost-card {
    max-width: 1244px;
    margin: 0 auto;
    padding: 36px 60px;
    border-radius: 28px;
}

.cost-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111;
}

.cost-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

@media (max-width: 992px) {
    .cost-card {
        padding: 30px 36px;
    }

    .cost-card h2 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .cost-section {
        padding: 40px 12px;
    }

    .cost-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .cost-card h2 {
        font-size: 20px;
    }

    .cost-card p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ===== Kidney Stone Who Needs Section ===== */
.stone-section {
    padding: 80px 16px;
}

.stone-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 50px;
    border-radius: 28px;
    background: linear-gradient(
        135deg,
        #fde7ea 0%,
        #eaf0ff 50%,
        #fde7ea 100%
    );
    text-align: center;
}

.stone-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0f172a;
}

.stone-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.stone-card {
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    color: #334155;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    max-width: 280px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .stone-wrapper {
        padding: 50px 30px;
    }

    .stone-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .stone-section {
        padding: 60px 14px;
    }

    .stone-wrapper {
        padding: 40px 20px;
        border-radius: 22px;
    }

    .stone-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .stone-card {
        max-width: 100%;
        font-size: 14px;
    }
}

/* ===== Causes & Risk Section ===== */
.kidney-cause-section {
    background: #ffffff;
    padding: 90px 0;
}

.kidney-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 28px;
}

.kidney-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kidney-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
}

.kidney-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
}

.kidney-image-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.kidney-image-box img {
    border-radius: 14px;
    width: 100%;
}

@media (max-width: 992px) {
    .kidney-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .kidney-cause-section {
        padding: 60px 0;
    }

    .kidney-title {
        font-size: 24px;
        text-align: center;
    }

    .kidney-list li {
        font-size: 14px;
    }

    .kidney-image-box {
        padding: 18px;
    }
}

/* ===== Diagnosis Section ===== */
.diagnosis-section {
    background: #ffffff;
    padding: 90px 0;
}

.diagnosis-title {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

.diagnosis-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 22px;
}

.diagnosis-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diagnosis-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #1e293b;
}

.diagnosis-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2563eb;
    font-weight: 700;
}

.diagnosis-image-box {
    background: linear-gradient(135deg, #fde2e4, #e0ecff);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.diagnosis-image-box img {
    border-radius: 16px;
    width: 100%;
}

@media (max-width: 992px) {
    .diagnosis-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .diagnosis-section {
        padding: 60px 0;
    }

    .diagnosis-title {
        font-size: 24px;
        text-align: center;
    }

    .diagnosis-desc {
        text-align: center;
    }

    .diagnosis-list li {
        font-size: 14px;
    }

    .diagnosis-image-box {
        padding: 20px;
    }
}

/* ===== Treatment Options Section ===== */
.treatment-option-section {
    background: #ffffff;
    padding: 90px 0;
}

.treatment-title {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

.treatment-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 22px;
}

.treatment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.treatment-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #1e293b;
}

.treatment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2563eb;
    font-weight: 700;
}

.treatment-image-box {
    background: linear-gradient(135deg, #fde2e4, #e0ecff);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.treatment-image-box img {
    width: 100%;
    border-radius: 16px;
}

@media (max-width: 992px) {
    .treatment-title {
        font-size: 28px;
    }
}
@media (max-width: 576px) {
    .treatment-option-section {
        padding: 60px 0;
    }

    .treatment-title,
    .treatment-desc {
        text-align: center;
    }

    .treatment-list li {
        font-size: 14px;
    }

    .treatment-image-box {
        padding: 20px;
    }
}

/* ================= KIDNEY PROCEDURE SECTION ================= */

.kidney-procedure-section {
    background: #ffffff;
}

.procedure-box {
    background: linear-gradient(135deg, #eaf0ff  0%, #fde7eb 100%);
    border-radius: 28px;
    padding: 50px 40px;
}

.procedure-head h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.procedure-head p {
    font-size: 15px;
    color: #555;
    max-width: 760px;
    margin: 0 auto;
}

.procedure-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
}

.procedure-tab {
    border: none;
    background: #ffffff;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.procedure-tab.active {
    background: #2f80ff;
    color: #fff;
}
.procedure-pane {
    display: none;
}

.procedure-pane.active {
    display: block;
}

/* list */
.procedure-list {
    list-style: none;
    padding: 0;
}

.procedure-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.procedure-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #2f80ff;
    font-weight: bold;
}

.procedure-img {
    background: #ffffff;
    padding: 18px;
    border-radius: 20px;
    display: inline-block;
}

.procedure-img img {
    max-width: 100%;
    border-radius: 16px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .procedure-box {
        padding: 30px 20px;
        border-radius: 22px;
    }

    .procedure-tabs {
        flex-direction: column;
        align-items: center;
    }

    .procedure-tab {
        width: 100%;
        max-width: 260px;
    }

    .procedure-head h2 {
        font-size: 22px;
    }

    .procedure-list li {
        font-size: 14px;
    }
}

/* ================= WHY DR SECTION ================= */

.why-dr-section {
    background: #ffffff;
}

/* heading */
.why-dr-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: #111;
    max-width: 900px;
    margin: 0 auto;
}

/* intro */
.why-dr-intro {
    font-weight: 600;
    color: #333;
    margin-bottom: 22px;
}

/* list */
.why-dr-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.why-dr-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #333;
}

.why-dr-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #2f80ff;
    font-weight: 700;
}

/* button */
.why-dr-btn {
    display: inline-block;
    background: #2f80ff;
    color: #fff;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.why-dr-btn:hover {
    background: #1e6fe0;
    color: #fff;
}

/* image wrapper */
.why-dr-image-wrap {
    position: relative;
    display: inline-block;
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
}

/* background blob effect */
.why-dr-image-wrap::before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 80%;
    height: 80%;
    background: #e8f0ff;
    border-radius: 40px;
    z-index: -1;
}

.why-dr-image-wrap img {
    max-width: 100%;
    border-radius: 18px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .why-dr-title {
        font-size: 24px;
    }

    .why-dr-intro {
        font-size: 14px;
        text-align: center;
    }

    .why-dr-list li {
        font-size: 14px;
    }

    .why-dr-btn {
        display: block;
        width: 100%;
        text-align: center;
    }

    .why-dr-image-wrap::before {
        right: -10px;
        bottom: -10px;
        border-radius: 28px;
    }
}

/* ================= FLOATING BUTTON WRAPPER ================= */

.floating-buttons {
    position: fixed;
    left: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
}


.float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


.call-btn {
    background: linear-gradient(135deg, #3083ff, #1e6fe0);
}

.call-btn:hover {
    transform: translateY(-5px) scale(1.05);
}


.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.float-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 1.8s infinite;
    z-index: -1;
}

.call-btn::after {
    background: rgba(48, 131, 255, 0.4);
}

.whatsapp-btn::after {
    background: rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 576px) {

    .floating-buttons {
        left: 16px;
        bottom: 16px;
        gap: 12px;
    }

    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
}


/* ================= BLOG SECTION ================= */

.blog-section {
    background: #f9fafb;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 22px;
}

.blog-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.blog-link {
    font-weight: 600;
    color: #3083ff;
    text-decoration: none;
    transition: 0.3s;
}

.blog-link:hover {
    color: #1e6fe0;
    text-decoration: underline;
}

/* ================= MOBILE ================= */

@media (max-width: 576px) {
    .blog-content {
        padding: 18px;
    }

    .blog-img img {
        height: 200px;
    }
}


/* ================= BLOG DETAILS ================= */

.blog-details-section {
    background: #f9fafb;
    padding-bottom: 12rem !important;
}
.blog-details-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.blog-details-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
}

.blog-meta {
    font-size: 14px;
    color: #777;
}

.blog-details-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* ===== SIDEBAR WRAPPER ===== */
.blog-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ===== CATEGORY CARD ===== */
.blog-category-card {
    background: linear-gradient(135deg, #F9E8ED, #E8EBF9);
    border-radius: 20px;
    padding: 28px;
}

/* ===== FORM CARD ===== */
.blog-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Titles */
.blog-sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
}

/* Category list */
.blog-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-list li {
    background: rgba(255,255,255,0.7);
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
}

.blog-category-list li.active {
    background: #aebbd3;
    color: #fff;
}

/* ===== FORM ===== */
.blog-form-card input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    margin-bottom: 14px;
    font-size: 14px;
}

.blog-form-card button {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: #3083ff;
    color: #fff;
    font-weight: 600;
}

@media (max-width: 991px) {
    .blog-sidebar {
        position: static;  
    }
}
