@import url("variables.css");
@import url("base.css");
@import url("buttons.css");
@import url("animation.css");
@import url("responsive.css");



/*==============================
 Topbar Styling
===============================*/
.topbar {
    background: var(--primary, #C40D2E);
    padding: 4px 0;
    font-size: 12px;
    position: relative;
    /* Sticky সরিয়ে দেওয়া হয়েছে জাতে স্ক্রোল করলে উপরে চলে যায় */
    z-index: 1000;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.topbar-left a,
.topbar-left span {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
}

.topbar-left i {
    margin-right: 5px;
    color: var(--secondary, #F39C12);
}

.topbar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.topbar-right a {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    transition: .35s;
    font-size: 12px;
}

.topbar-right a:hover {
    background: var(--secondary, #F39C12);
    color: #fff;
    transform: translateY(-2px);
}

/*==============================
 Navbar & Sticky Behavior
===============================*/
.custom-navbar {
    position: sticky;
    top: 0;
    /* স্ক্রোল করার পর এটি একবারে স্ক্রিনের টপে আটকে থাকবে */
    width: 100%;
    z-index: 2000 !important;
    transition: all 0.3s ease-in-out;
    background: #ffffff;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    border-bottom: 2px solid rgba(0, 128, 128, 0.08) !important;
}

/* Scroll Active State (JS Class) */
.custom-navbar.scrolled {
    box-shadow: 0 10px 30px rgba(0, 128, 128, 0.06);
    border-bottom: 2px solid var(--primary, #008080) !important;
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.custom-navbar-logo,
.navbar-brand img {
    height: 70px !important;
    width: auto !important;
    max-height: 90px !important;
    object-fit: contain;
    transition: all 0.3s ease;
}

.custom-navbar.scrolled .custom-navbar-logo {
    height: 70px !important;
    /* স্ক্রোল করলে লোগো হালকা ছোট হবে জাতে স্ক্রিন স্পেস বাঁচে */
}

.navbar-nav {
    gap: 12px;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark, #1a2f2f) !important;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary, #008080), var(--secondary, #2ecc71));
    transition: .35s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary, #008080) !important;
}

.dropdown-menu {
    border: none;
    border-radius: 15px;
    padding: 12px;
    box-shadow: 0 20px 45px rgba(0, 128, 128, 0.08);
}

.dropdown-item {
    padding: 10px 16px;
    border-radius: 10px;
    transition: .3s;
    color: var(--dark, #1a2f2f);
}

.dropdown-item:hover {
    background: var(--light, #f0fdfa);
    color: var(--primary, #008080);
    padding-left: 22px;
}

.appointment-btn {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary, #008080), var(--secondary, #2ecc71));
    color: #fff !important;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: .35s;
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.15);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid transparent !important;
}

.appointment-btn:hover {
    transform: translateY(-2px);
    background: var(--light, #f0fdfa) !important;
    color: var(--primary, #008080) !important;
    border-color: var(--primary, #008080) !important;
    box-shadow: 0 10px 25px rgba(0, 128, 128, 0.15) !important;
}

.btn-outline-custom {
    color: var(--primary, #008080);
    border: 2px solid var(--primary, #008080);
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: var(--light, #f0fdfa) !important;
    color: var(--primary, #008080) !important;
    border-color: var(--primary, #008080) !important;
}

#patientDropdown {
    border-color: var(--primary, #008080) !important;
    color: var(--primary, #008080) !important;
}

#patientDropdown:hover,
#patientDropdown:focus {
    background-color: var(--light, #f0fdfa) !important;
    color: var(--primary, #008080) !important;
}

.navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary, #008080);
    position: relative;
}

/* Toggle menu icons display based on collapsed class state */
.navbar-toggler .icon-close {
    display: none;
}

.navbar-toggler.collapsed .icon-hamburger {
    display: inline-block;
}

.navbar-toggler.collapsed .icon-close {
    display: none;
}

.navbar-toggler:not(.collapsed) .icon-hamburger {
    display: none;
}

.navbar-toggler:not(.collapsed) .icon-close {
    display: inline-block;
}

/* 📱 Mobile Specific Styling Improvements */
@media (max-width: 991px) {
    .topbar-left {
        justify-content: center;
        gap: 12px;
    }

    .topbar-right {
        justify-content: center;
        margin-top: 4px;
    }

    .topbar-address {
        display: none;
        /* মোবাইলে জায়গা কম থাকলে এড্রেস হাইড থাকবে, চাইলে ডিসপ্লে ব্লক রাখতে পারেন */
    }
}

@media (max-width: 1199px) {
    .custom-navbar .container {
        position: relative;
    }

    .custom-navbar-logo,
    .navbar-brand img {
        height: 60px !important;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        background: #fff;
        padding: 20px;
        margin-top: 10px;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0, 128, 128, .06);
        border: 1px solid rgba(0, 128, 128, 0.08);
        z-index: 9999 !important;
    }

    .navbar-nav {
        gap: 6px;
        margin-bottom: 15px;
    }

    .nav-actions-wrapper {
        flex-direction: column !important;
        width: 100%;
        gap: 12px !important;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px dashed rgba(0, 128, 128, 0.08);
    }

    .appointment-btn,
    .w-100-mobile,
    .login-btn-mobile {
        width: 100%;
        text-align: center;
    }
}

/*=========================
Hero Section (Red & Gold Re-branded)
=========================*/

.hero-section {
    /* লোগোর সফট পিঙ্ক টোন এবং সাদা ব্যাকগ্রাউন্ডের প্রিমিয়াম গ্র্যাডিয়েন্ট */
    background: linear-gradient(135deg, var(--light, #f0fdfa), #ffffff);
    position: relative;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    /* ডার্ক চারকোল কালার */
    color: var(--dark, #1F1F1F);
    line-height: 1.15;
    margin-top: 20px;
}

.hero-subtitle {
    /* গোল্ডেন ইয়েলো টোন */
    color: #D37A00;
    font-weight: 700;
    margin: 20px 0 15px;
    font-size: 19px;
}

/* ===== NEW: Decorative Icon Pattern (Burn & Plastic Surgery watermark) ===== */
.hero-icon-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero-icon-pattern .icon-item {
    position: absolute;
    color: var(--primary, #C40D2E);
    opacity: .05;
}

.hero-icon-pattern .i1 {
    font-size: 90px;
    top: 8%;
    left: 42%;
    transform: rotate(-12deg);
}

.hero-icon-pattern .i2 {
    font-size: 60px;
    top: 65%;
    left: 6%;
    transform: rotate(15deg);
}

.hero-icon-pattern .i3 {
    font-size: 70px;
    top: 25%;
    left: 88%;
    transform: rotate(8deg);
}

.hero-icon-pattern .i4 {
    font-size: 55px;
    top: 78%;
    left: 46%;
    transform: rotate(-10deg);
}

.hero-icon-pattern .i5 {
    font-size: 80px;
    top: 4%;
    left: 4%;
    transform: rotate(-18deg);
}

.hero-icon-pattern .i6 {
    font-size: 65px;
    top: 55%;
    left: 92%;
    transform: rotate(20deg);
}

/* Ensure real content stays above the watermark pattern */
.hero-section .container {
    position: relative;
    z-index: 1;
}

/* ===== NEW: Specialty Icon Badge on Doctor Image (Burn + Plastic Surgery) ===== */
.specialty-icon-badge {
    position: absolute;
    top: 6%;
    right: 2%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 4;
}

.specialty-icon-circle {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 28px rgba(196, 13, 46, .18);
    border: 2px solid rgba(196, 13, 46, .1);
    animation: floatCard 4s ease-in-out infinite;
}

.specialty-icon-circle:nth-child(1) {
    background: linear-gradient(135deg, var(--primary, #C40D2E), #ff5b5b);
    animation-delay: 0s;
}

.specialty-icon-circle:nth-child(1) i {
    color: #fff;
    font-size: 22px;
}

.specialty-icon-circle:nth-child(2) {
    background: linear-gradient(135deg, var(--secondary, #F39C12), #ffcf5c);
    animation-delay: 1.5s;
}

.specialty-icon-circle:nth-child(2) i {
    color: #fff;
    font-size: 22px;
}

/* ===== END: Icon Badge ===== */

.hero-description {
    font-size: 16px;
    line-height: 30px;
    color: #667085;
    max-width: 620px;
    white-space: pre-line;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    /* হালকা রেড/পিঙ্ক ব্যাকগ্রাউন্ড */
    background: rgba(0, 128, 128, 0.08);
    border-radius: 50px;
    /* প্রাইমারি ক্রিমসন রেড */
    color: var(--primary, #C40D2E);
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(196, 13, 46, 0.15);
}

.hero-badge i {
    color: var(--secondary, #F39C12);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn-book {
    padding: 16px 34px;
    /* প্রাইমারি রেড থেকে গোল্ডেন গ্র্যাডিয়েন্ট */
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    color: #fff;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(196, 13, 46, .25);
    transition: .35s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-book:hover {
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 20px 40px rgba(196, 13, 46, .35);
}

.hero-counter {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.counter-box {
    background: #fff;
    padding: 22px 25px;
    border-radius: 20px;
    min-width: 170px;
    box-shadow: 0 15px 35px rgba(196, 13, 46, .06);
    border: 1px solid rgba(196, 13, 46, 0.08);
}

.counter-box h2 {
    font-weight: 800;
    color: var(--primary, #C40D2E);
    margin-bottom: 5px;
}

.counter-box p {
    margin: 0;
    font-weight: 600;
    color: #667085;
    font-size: 14px;
}

.doctor-wrapper {
    position: relative;
    display: inline-block;
}

.doctor-bg {
    position: absolute;
    width: 480px;
    height: 480px;
    /* রেড ও গোল্ডেন গ্লোয়িং ব্যাকগ্রাউন্ড সার্কেল */
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    border-radius: 50%;
    filter: blur(50px);
    opacity: .12;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.doctor-image {
    max-height: 600px;
    position: relative;
    z-index: 2;
    animation: floatDoctor 5s ease-in-out infinite;
}

@keyframes floatDoctor {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

.floating-box {
    position: absolute;
    background: #fff;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    font-weight: 700;
    font-size: 13px;
    z-index: 3;
    animation: floatCard 4s ease-in-out infinite;
    border-left: 4px solid var(--primary, #C40D2E);
    color: #1F1F1F;
    white-space: nowrap;
}

.floating-box i {
    color: var(--secondary, #F39C12);
    margin-right: 6px;
    font-size: 15px;
}

.one {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.two {
    right: -20px;
    top: 45%;
    animation-delay: 1.3s;
}

.three {
    bottom: 10%;
    left: 10px;
    animation-delay: 2.6s;
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(196, 13, 46, .05);
}

.hero-circle-1 {
    width: 300px;
    height: 300px;
    left: -120px;
    top: -120px;
}

.hero-circle-2 {
    width: 220px;
    height: 220px;
    right: -80px;
    bottom: 100px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Mobile & Tablet Responsiveness Fine-Tuned */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 30px !important;
        padding-bottom: 0px !important;
        text-align: center;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 26px !important;
        line-height: 1.25;
        margin-top: 10px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin: 10px 0;
    }

    .hero-icon-pattern .icon-item {
        opacity: .04;
        transform: scale(.6);
    }

    .specialty-icon-badge {
        top: 2%;
        right: 4%;
    }

    .specialty-icon-circle {
        width: 38px;
        height: 38px;
    }

    .specialty-icon-circle i {
        font-size: 16px !important;
    }

    .hero-description {
        font-size: 13px;
        line-height: 22px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 25px;
        width: 100%;
        display: flex;
    }

    .btn-book {
        padding: 12px 28px;
        font-size: 14px;
        text-align: center;
        border-radius: 30px;
        width: 100%;
        max-width: 280px;
        box-shadow: 0 10px 25px rgba(196, 13, 46, 0.2);
        display: inline-block;
    }

    .hero-counter {
        justify-content: center;
        gap: 6px !important;
        margin-top: 15px !important;
        display: flex;
        flex-wrap: nowrap !important;
        padding: 0 5px;
    }

    .counter-box {
        padding: 10px 4px !important;
        min-width: 0 !important;
        flex: 1;
        border-radius: 12px;
    }

    .counter-box h2 {
        font-size: 14px !important;
        font-weight: 800;
        margin-bottom: 2px;
        white-space: nowrap;
    }

    .counter-box p {
        font-size: 9px !important;
        line-height: 11px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .doctor-image {
        max-height: 300px;
        margin-top: 20px;
    }

    .doctor-bg {
        width: 240px;
        height: 240px;
    }

    .one,
    .two,
    .three {
        display: none;
    }
}

/*==================================
  Modern Quick Action Section
==================================*/

.quick-action-section {
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.quick-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 35px rgba(196, 13, 46, 0.06);
    height: 100%;
    border: 1px solid rgba(196, 13, 46, 0.08);
    position: relative;
    overflow: hidden;
}

.quick-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: 0.35s;
}

.quick-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(196, 13, 46, 0.12);
}

.quick-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

/* Icon Styles with Theme Color Accents */
.quick-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 26px;
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.quick-card:hover .quick-icon {
    transform: scale(1.08) rotate(-3deg);
}

/* Card Variances matched with Logo Colors */
.card-primary .quick-icon {
    background: linear-gradient(135deg, #C40D2E, #E62A4A);
    box-shadow: 0 8px 20px rgba(196, 13, 46, 0.25);
}

.card-primary::before {
    background: #C40D2E;
}

.card-secondary .quick-icon {
    background: linear-gradient(135deg, #F39C12, #F1C40F);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.25);
}

.card-secondary::before {
    background: #F39C12;
}

.card-dark .quick-icon {
    background: linear-gradient(135deg, #1F1F1F, #4A4A4A);
    box-shadow: 0 8px 20px rgba(31, 31, 31, 0.25);
}

.card-dark::before {
    background: #1F1F1F;
}

.card-accent .quick-icon {
    background: linear-gradient(135deg, #E67E22, #D35400);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.25);
}

.card-accent::before {
    background: #E67E22;
}

/* Content Formatting */
.quick-card h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--dark, #1F1F1F);
}

.quick-card p {
    color: #667085;
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 12px;
}

.quick-link {
    text-decoration: none;
    color: var(--primary, #C40D2E);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.quick-link i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.quick-card:hover .quick-link i {
    transform: translateX(5px);
}

.quick-link:hover {
    color: var(--secondary, #F39C12);
}


/* 📱 Compact Mobile Viewport Optimization */
@media (max-width: 767px) {
    .quick-action-section {}

    .quick-card {
        padding: 14px 12px;
        border-radius: 16px;
    }

    /* 🔹 মোবাইলে বামে আইকন এবং ডানে টেক্সট করার জন্য */
    .quick-card-body {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .quick-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 12px;
    }

    .quick-card h5 {
        font-size: 13px;
        line-height: 1.2;
        margin-bottom: 4px;
    }

    .quick-link {
        font-size: 11px;
    }

    .quick-link i {
        font-size: 11px;
    }
}

/*=====================================
Why Choose
======================================*/

.why-section {

    background: #fff;

    position: relative;

}

.section-badge {

    display: inline-block;

    padding: 8px 18px;

    background: #EAF5FF;

    color: #0B6EFD;

    border-radius: 50px;

    font-weight: 700;

    font-size: 14px;

}

.section-title {

    font-size: 42px;

    font-weight: 800;

    color: #16324F;

}

.section-description {

    max-width: 700px;

    margin: auto;

    margin-top: 20px;

    color: #667085;

    font-size: 17px;

    line-height: 30px;

}

.why-card {

    background: #fff;

    padding: 40px 30px;

    border-radius: 24px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);

    transition: .35s;

    height: 100%;

    border: 1px solid #EEF3F8;

}

.why-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 60px rgba(0, 0, 0, .10);

}

.why-card .icon {

    width: 75px;

    height: 75px;

    background: linear-gradient(135deg, #0B6EFD, #00B894);

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

}

.why-card .icon i {

    font-size: 32px;

    color: #fff;

}

.why-card h5 {

    font-weight: 700;

    margin-bottom: 15px;

    color: #16324F;

}

.why-card p {

    margin: 0;

    line-height: 28px;

    color: #667085;

}

/*==================================
  About Doctor (Updated Color Theme)
==================================*/

.about-section {
    background: linear-gradient(180deg, #FFFFFF 0%, var(--light, #f0fdfa) 100%);
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(0, 128, 128, 0.08);
    color: var(--primary, #C40D2E);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(196, 13, 46, 0.12);
}

.section-title {
    color: var(--dark, #1F1F1F);
    font-weight: 800;
    font-size: 36px;
    line-height: 1.25;
}

.doctor-designation {
    color: #D37A00;
    /* Sophisticated Amber/Gold */
    font-weight: 700;
    font-size: 18px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(196, 13, 46, 0.1);
    border: 4px solid #ffffff;
}

/* Red-Gold Gradient Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 0 15px 35px rgba(196, 13, 46, 0.3);
    border: 5px solid #ffffff;
}

.experience-badge h2 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: -2px;
    line-height: 1;
}

.experience-badge span {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    padding: 0 10px;
}

.about-text {
    font-size: 16px;
    line-height: 28px;
    color: #555555;
    white-space: pre-line;
}

/* Info Cards with Brand Accent */
.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    padding: 16px 18px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(196, 13, 46, 0.08);
    transition: all 0.35s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(196, 13, 46, 0.1);
    border-color: rgba(196, 13, 46, 0.2);
}

.info-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 128, 128, 0.08);
    color: var(--primary, #C40D2E);
    border-radius: 14px;
    font-size: 24px;
    flex-shrink: 0;
    transition: 0.35s ease;
}

.info-card:hover .info-icon {
    background: var(--primary, #C40D2E);
    color: #ffffff;
}

.info-content h6 {
    margin-bottom: 3px;
    font-weight: 700;
    font-size: 15px;
    color: var(--dark, #1F1F1F);
}

.info-content p {
    margin: 0;
    color: #667085;
    font-size: 13px;
    line-height: 18px;
}

/* Call to Action Button */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(196, 13, 46, 0.25);
    transition: all 0.35s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(196, 13, 46, 0.35);
}


/* 📱 Mobile & Tablet Viewport Optimization */
@media (max-width: 991px) {
    .section-title {
        font-size: 26px;
    }

    .doctor-designation {
        font-size: 15px;
    }

    .about-text {
        font-size: 14px;
        line-height: 24px;
    }

    .experience-badge {
        right: 10px;
        bottom: -15px;
        width: 110px;
        height: 110px;
        border-width: 3px;
    }

    .experience-badge h2 {
        font-size: 28px;
    }

    .experience-badge span {
        font-size: 10px;
    }

    .info-card {
        padding: 12px 14px;
        gap: 12px;
    }

    .info-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
        border-radius: 10px;
    }

    .info-content h6 {
        font-size: 14px;
    }

    .info-content p {
        font-size: 12px;
    }

    .btn-primary-custom {
        width: 100%;
        justify-content: center;
    }
}

/*==================================
  Expertise Section (Updated Theme)
==================================*/

.expertise-section {
    background: #ffffff;
    position: relative;
}

.expertise-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(196, 13, 46, 0.08);
    transition: all 0.35s ease;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(196, 13, 46, 0.05);
}

.expertise-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* Primary Red to Gold Gradient */
    background: linear-gradient(90deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    transform: scaleX(0);
    transition: 0.35s ease;
    transform-origin: left;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(196, 13, 46, 0.12);
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 22px;
    transition: 0.35s ease;
    box-shadow: 0 8px 20px rgba(196, 13, 46, 0.25);
}

.expertise-card:hover .expertise-icon {
    transform: rotate(6deg) scale(1.06);
}

.expertise-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark, #1F1F1F);
    font-size: 18px;
}

.expertise-card p {
    color: #667085;
    line-height: 26px;
    margin-bottom: 18px;
    font-size: 14px;
}

.read-more {
    color: var(--primary, #C40D2E);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.read-more i {
    transition: 0.3s ease;
}

.read-more:hover {
    color: var(--secondary, #F39C12);
}

.read-more:hover i {
    transform: translateX(5px);
}


/*==================================
  Services Section (Updated Theme)
==================================*/

/*.services-section {
    background: linear-gradient(180deg, var(--light, #f0fdfa) 0%, #FFFFFF 100%);
}*/

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(196, 13, 46, 0.06);
    border: 1px solid rgba(196, 13, 46, 0.08);
    transition: 0.35s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(196, 13, 46, 0.12);
}

.service-image {
    height: 230px;
    overflow: hidden;
    position: relative;
}

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

.service-card:hover img {
    transform: scale(1.08);
}

.service-content {
    padding: 28px 24px;
    position: relative;
}

.service-number {
    position: absolute;
    top: -22px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 6px 15px rgba(196, 13, 46, 0.25);
    border: 3px solid #ffffff;
}

.service-content h4 {
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--dark, #1F1F1F);
    font-size: 20px;
}

.service-content p {
    color: #667085;
    line-height: 26px;
    margin-bottom: 18px;
    font-size: 14px;
}

.service-content a {
    color: var(--primary, #C40D2E);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.service-content a i {
    transition: 0.3s ease;
}

.service-content a:hover {
    color: var(--secondary, #F39C12);
}

.service-content a:hover i {
    transform: translateX(5px);
}


/*==================================
  Treatment Process (Updated Theme)
==================================*/

.process-section {
    background: var(--light, #f0fdfa);
    position: relative;
}

.process-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(196, 13, 46, 0.05);
    border: 1px solid rgba(196, 13, 46, 0.08);
    transition: 0.35s ease;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(196, 13, 46, 0.12);
}

.process-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 42px;
    font-weight: 800;
    color: #FFE5E9;
    /* Soft Pink Accent */
    line-height: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    transition: 0.35s ease;
    box-shadow: 0 10px 25px rgba(196, 13, 46, 0.25);
}

.process-card:hover .process-icon {
    transform: rotate(8deg) scale(1.08);
}

.process-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark, #1F1F1F);
    font-size: 18px;
}

.process-card p {
    color: #667085;
    line-height: 26px;
    margin-bottom: 0;
    font-size: 14px;
}


/*==================================
  Statistics (Updated Gradient Theme)
==================================*/

.stats-section {
    padding: 80px 0;
    /* Crimson Red & Golden Amber Solid Gradient Background */
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    position: relative;
}

.stats-wrapper {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box {
    color: #ffffff;
    text-align: center;
}

.stat-box i {
    font-size: 38px;
    margin-bottom: 15px;
    color: #FFE6A8;
    /* Warm Gold Tone for Icons */
    display: inline-block;
}

.stat-box h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1;
}

.stat-box p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* 📱 Mobile Responsiveness Optimization */
@media (max-width: 991px) {
    .stats-section {
        padding: 50px 0;
    }

    .stats-wrapper {
        padding: 25px 15px;
        border-radius: 18px;
    }

    .stat-box i {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .stat-box h2 {
        font-size: 32px;
    }

    .stat-box p {
        font-size: 12px;
    }

    .expertise-card,
    .process-card {
        padding: 24px 20px;
    }
}

/*==================================
  Hospital Section (Updated Theme)
==================================*/

.hospital-section {
    padding: 90px 0;
    background: #ffffff;
}

.hospital-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(196, 13, 46, 0.08);
    box-shadow: 0 10px 30px rgba(196, 13, 46, 0.04);
    transition: all 0.35s ease;
    height: 100%;
}

.hospital-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(196, 13, 46, 0.1);
    border-color: rgba(196, 13, 46, 0.2);
}

.hospital-card img {
    height: 65px;
    margin: 0 auto 18px auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
}

.hospital-card h6 {
    margin: 0;
    font-weight: 700;
    color: var(--dark, #1F1F1F);
    font-size: 16px;
}


/*==================================
  Testimonials Section (Updated Theme)
==================================*/

.testimonial-section {
    background: linear-gradient(180deg, var(--light, #f0fdfa) 0%, #FFFFFF 100%);
    padding: 90px 0;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(196, 13, 46, 0.06);
    border: 1px solid rgba(196, 13, 46, 0.08);
    position: relative;
    height: 100%;
    transition: all 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(196, 13, 46, 0.12);
}

.quote-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(196, 13, 46, 0.25);
}

.quote-icon i {
    font-size: 26px;
    color: #ffffff;
}

.rating {
    margin-bottom: 16px;
}

.rating i {
    color: var(--secondary, #F39C12);
    margin-right: 2px;
    font-size: 15px;
}

.testimonial-text {
    line-height: 28px;
    color: #555555;
    margin-bottom: 25px;
    font-style: italic;
    font-size: 15px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary, #C40D2E);
}

.testimonial-user h5 {
    margin: 0;
    font-weight: 700;
    color: var(--dark, #1F1F1F);
    font-size: 16px;
}

.testimonial-user span {
    font-size: 13px;
    color: #667085;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(196, 13, 46, 0.2);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 20px;
    background: var(--primary, #C40D2E);
}


/*==================================
  Chamber Section (Updated Theme)
==================================*/

.chamber-section {
    background: #ffffff;
    padding: 90px 0;
}

.chamber-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 15px 40px rgba(196, 13, 46, 0.06);
    border: 1px solid rgba(196, 13, 46, 0.08);
    transition: all 0.35s ease;
    height: 100%;
}

.chamber-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(196, 13, 46, 0.12);
}

.status-open {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #EAFBF3;
    color: #16A34A;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    border: 1px solid rgba(22, 163, 74, 0.15);
}

.status-open i {
    font-size: 9px;
}

.chamber-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark, #1F1F1F);
}

.chamber-info {
    padding: 0;
    margin: 0;
    list-style: none;
}

.chamber-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: #555555;
    font-size: 15px;
    line-height: 22px;
}

.chamber-info i {
    color: var(--primary, #C40D2E);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.direction-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(0, 128, 128, 0.08);
    font-weight: 700;
    color: var(--primary, #C40D2E);
    text-decoration: none;
    transition: all 0.35s ease;
    font-size: 14px;
}

.direction-btn:hover {
    background: var(--primary, #C40D2E);
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(196, 13, 46, 0.25);
}

.chamber-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    justify-content: center;
}

.chamber-actions .btn-primary-custom,
.chamber-actions .btn-outline-custom,
.chamber-actions .direction-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}


/*==================================
  Gallery Custom Styles (Updated Theme)
==================================*/

.gallery-section {
    padding: 90px 0;
    background: var(--light, #f0fdfa);
}

.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(196, 13, 46, 0.08);
    background: rgba(0, 128, 128, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease-in-out;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    /* Red-Gold Gradient Overlay */
    background: linear-gradient(to top, rgba(196, 13, 46, 0.88), rgba(243, 156, 18, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

.gallery-icon i {
    font-size: 22px;
    color: var(--primary, #C40D2E);
}


/*==================================
  FAQ & Contact Card Styling (Updated Theme)
==================================*/

.faq-section {
    padding: 90px 0;
    background: #ffffff;
}

.faq-contact-card {
    /* Primary Red to Golden Accent Solid Gradient */
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    border-radius: 24px;
    padding: 45px 30px;
    color: #ffffff;
    text-align: center;
    height: 100%;
    box-shadow: 0 18px 45px rgba(196, 13, 46, 0.22);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faq-big-icon {
    font-size: 54px;
    margin-bottom: 18px;
    color: #FFE6A8;
}

.faq-contact-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.faq-contact-card p {
    line-height: 24px;
    margin-bottom: 18px;
    font-size: 14px;
    opacity: 0.95;
}

.faq-contact-info {
    margin-bottom: 22px;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    opacity: 0.95;
}

/* Button Wrapper for Flex Layout */
.faq-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
}

/* Common Button Style */
.faq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

/* Primary Appointment Button */
.faq-btn-primary {
    background: #ffffff;
    color: var(--primary, #C40D2E) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-btn-primary:hover {
    background: rgba(0, 128, 128, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

/* WhatsApp Button */
.faq-btn-whatsapp {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.faq-btn-whatsapp:hover {
    background: #25D366;
    /* WhatsApp Green */
    color: #ffffff !important;
    border-color: #25D366;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
}


/* 📱 Mobile Responsive View Optimization */
@media (max-width: 767px) {

    .hospital-section,
    .testimonial-section,
    .chamber-section,
    .gallery-section,
    .faq-section {
        padding: 50px 0;
    }

    .gallery-item img {
        height: 220px;
    }

    .faq-contact-card {
        padding: 30px 18px;
        margin-top: 20px;
    }

    .faq-btn-group {
        flex-direction: column;
        gap: 10px;
    }

    .faq-btn {
        width: 100%;
    }
}


/*==================================
  Custom Accordion Theming (FAQ Section)
  — Matches logo's Red & Gold theme instead of Bootstrap's default blue
==================================*/

.custom-accordion .accordion-item {
    border: 1px solid rgba(196, 13, 46, 0.12);
    border-radius: 14px !important;
    margin-bottom: 14px;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark, #1F1F1F);
    background: #ffffff;
    padding: 18px 22px;
    box-shadow: none;
}

/* Active / Expanded Question Header — Red to Gold gradient (matches logo) */
.custom-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    color: #ffffff;
    box-shadow: none;
}

/* Toggle Arrow Icon Color */
.custom-accordion .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(40%);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    /* White arrow icon when header is active */
    filter: brightness(0) invert(1);
}

/* Remove Bootstrap's default blue focus ring/shadow */
.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.custom-accordion .accordion-body {
    padding: 18px 22px 22px;
    font-size: 14.5px;
    line-height: 24px;
    color: #667085;
    background: #fff;
}

/*==================================
  Latest Blog (Updated Theme)
==================================*/

.blog-section {
    padding: 90px 0;
    background: var(--light, #f0fdfa);
}

.blog-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(196, 13, 46, 0.06);
    border: 1px solid rgba(196, 13, 46, 0.08);
    transition: all 0.35s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(196, 13, 46, 0.12);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-date {
    position: absolute;
    left: 20px;
    top: 20px;
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 6px 15px rgba(196, 13, 46, 0.25);
}

.blog-content {
    padding: 28px 24px;
}

.blog-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 128, 128, 0.08);
    color: var(--primary, #C40D2E);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.blog-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content h4 a {
    text-decoration: none;
    color: var(--dark, #1F1F1F);
    transition: color 0.3s ease;
}

.blog-content h4 a:hover {
    color: var(--primary, #C40D2E);
}

.blog-content p {
    color: #667085;
    line-height: 26px;
    margin-bottom: 18px;
    font-size: 14px;
}

.blog-content .read-more {
    text-decoration: none;
    font-weight: 700;
    color: var(--primary, #C40D2E);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.blog-content .read-more i {
    transition: transform 0.3s ease;
}

.blog-content .read-more:hover {
    color: var(--secondary, #F39C12);
}

.blog-content .read-more:hover i {
    transform: translateX(5px);
}


/*==================================
  Final CTA Section Styling (Updated Theme)
==================================*/

.final-cta-section {
    padding: 90px 0;
    background: #ffffff;
}

.final-cta-wrapper {
    /* Primary Red to Golden Accent Gradient */
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    border-radius: 32px;
    padding: 55px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(196, 13, 46, 0.22);
}

/* Background circles styling */
.final-cta-wrapper::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -180px;
    right: -120px;
    pointer-events: none;
}

.final-cta-wrapper::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.06);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.badge-light {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
}

.cta-description {
    font-size: 15px;
    line-height: 1.8;
    margin: 18px 0 28px 0;
    color: rgba(255, 255, 255, 0.95);
    max-width: 620px;
}

/* Feature List (Desktop) */
.cta-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}

.cta-feature-item {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-feature-item i {
    font-size: 18px;
    color: #FFE6A8;
    /* Warm Gold Tone */
    flex-shrink: 0;
}

/* Action Box Right Side */
.cta-action-box {
    background: #ffffff;
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.cta-action-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    padding: 13px 20px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: var(--primary, #C40D2E);
    color: #ffffff !important;
}

.cta-btn-primary:hover {
    background: #a50a26;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 13, 46, 0.3);
}

.cta-btn-outline {
    border: 2px solid var(--primary, #C40D2E);
    color: var(--primary, #C40D2E) !important;
}

.cta-btn-outline:hover {
    background: var(--primary, #C40D2E);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.cta-btn-whatsapp {
    background: #25D366;
    color: #ffffff !important;
}

.cta-btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.cta-btn-map {
    background: var(--light, #f0fdfa);
    color: var(--dark, #1F1F1F) !important;
}

.cta-btn-map:hover {
    background: rgba(0, 128, 128, 0.08);
    color: var(--primary, #C40D2E) !important;
    transform: translateY(-2px);
}


/*==================================
  Footer (Updated Theme)
==================================*/

.footer-section {
    background: var(--light, #6fd3bc);
    color: var(--text, #334e4e);
    padding-top: 45px;
    position: relative;
    border-top: 3px solid var(--primary, #008080);
}

.footer-logo img {
    height: 50px;
}

.footer-about {
    line-height: 28px;
    font-size: 14px;
    color: var(--text, #334e4e);
}

.footer-social {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

@media (max-width: 991px) {
    .footer-social {
        justify-content: center;
    }
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 128, 128, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #008080);
    text-decoration: none;
    transition: all 0.35s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary, #008080), var(--secondary, #2ecc71));
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 128, 128, 0.2);
}

.footer-section h5 {
    color: var(--dark, #1a2f2f);
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 18px;
}

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text, #334e4e);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary, #008080);
    padding-left: 6px;
}

.footer-contact {
    padding: 0;
    margin: 0;
    list-style: none;
    color: var(--text, #334e4e);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    line-height: 26px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary, #008080);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: 35px;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 128, 128, 0.08);
    font-size: 14px;
    color: var(--text, #334e4e);
}


/*==================================
  Back To Top (Updated Gradient Theme)
==================================*/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 16px;
    /* Primary Red to Gold Gradient Background */
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.35s ease;
    box-shadow: 0 12px 30px rgba(196, 13, 46, 0.35);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top i {
    font-size: 30px;
    line-height: 1;
    transition: transform 0.35s ease;
}

.back-to-top:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(196, 13, 46, 0.45);
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

.back-to-top::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.back-to-top::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 2px solid rgba(196, 13, 46, 0.4);
    animation: pulseTop 2s infinite;
}

@keyframes pulseTop {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


/* 📱 Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .final-cta-section {
        padding: 50px 0;
    }

    .final-cta-wrapper {
        padding: 35px 20px;
        text-align: center;
        border-radius: 24px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .cta-feature-list {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 280px;
        margin: 0 auto;
        text-align: left;
    }

    .cta-feature-item {
        justify-content: flex-start;
    }

    .cta-action-box {
        margin-top: 15px;
        padding: 20px;
    }

    .footer-section {
        padding-top: 60px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 40px;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .back-to-top {
        right: 18px;
        bottom: 20px;
        width: 48px;
        height: 48px;
    }

    .back-to-top i {
        font-size: 26px;
    }
}

/*==================================
  Appointment Layout (Updated Theme)
==================================*/

.appointment-section {
    padding: 70px 0;
    background: var(--light, #f0fdfa);
    position: relative;
    overflow: hidden;
}

.appointment-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.appointment-shape.one {
    width: 280px;
    height: 280px;
    background: var(--primary, #C40D2E);
    top: -80px;
    left: -80px;
}

.appointment-shape.two {
    width: 240px;
    height: 240px;
    background: var(--secondary, #F39C12);
    right: -60px;
    bottom: -60px;
}

.appointment-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 45px rgba(196, 13, 46, 0.06);
    border: 1px solid rgba(196, 13, 46, 0.08);
    position: relative;
    z-index: 2;
}

.appointment-form-card {
    padding-right: 10px;
}

.appointment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 26px;
    flex-wrap: wrap;
    gap: 10px;
}

.mini-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary, #C40D2E);
    text-transform: uppercase;
}

.appointment-header h3 {
    margin-top: 6px;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark, #1F1F1F);
}

.secure-badge {
    padding: 8px 16px;
    background: rgba(0, 128, 128, 0.08);
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    color: var(--primary, #C40D2E);
    white-space: nowrap;
    border: 1px solid rgba(196, 13, 46, 0.15);
}

.secure-badge i {
    margin-right: 6px;
}

.doctor-info-card {
    /* Primary Red to Golden Gradient */
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    border-radius: 20px;
    padding: 26px;
    color: #ffffff;
    position: sticky;
    top: 100px;
    box-shadow: 0 15px 40px rgba(196, 13, 46, 0.22);
}

.doctor-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 14px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.doctor-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
    color: #ffffff;
}

.doctor-info-card>span {
    display: block;
    text-align: center;
    opacity: 0.95;
    font-size: 13px;
    margin-bottom: 14px;
}

.doctor-rating {
    text-align: center;
    margin-bottom: 20px;
}

.doctor-rating i {
    color: #FFE6A8;
    /* Warm Gold Tone for Rating Stars */
    font-size: 14px;
}

.doctor-rating small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.95;
}

.doctor-stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.12);
    padding: 12px 16px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.doctor-stat div {
    text-align: center;
}

.doctor-stat strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.doctor-stat span {
    font-size: 11px;
    opacity: 0.9;
}

.booking-info>div {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    align-items: flex-start;
}

.booking-info i {
    font-size: 18px;
    margin-top: 2px;
    color: #FFE6A8;
}

.booking-info strong {
    font-size: 13px;
    display: block;
}

.booking-info span {
    font-size: 13px;
    opacity: 0.9;
}


/*==================================
  Floating Form (Updated Theme)
==================================*/

.floating-group {
    position: relative;
}

.floating-group i {
    position: absolute;
    left: 18px;
    top: 16px;
    font-size: 15px;
    color: var(--primary, #C40D2E);
    z-index: 2;
    transition: color 0.3s ease;
}

.floating-input,
.floating-select {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    border: 1px solid #E4E7EC;
    padding-left: 46px;
    padding-right: 16px;
    font-size: 14px;
    background: #ffffff;
    transition: all 0.35s ease;
    color: var(--dark, #1F1F1F);
}

.textarea-group textarea {
    height: 110px;
    padding-top: 16px;
    resize: none;
}

.floating-input:focus,
.floating-select:focus {
    border-color: var(--primary, #C40D2E);
    box-shadow: 0 6px 18px rgba(196, 13, 46, 0.12);
    outline: none;
}

.floating-group label {
    position: absolute;
    left: 46px;
    top: 15px;
    background: #ffffff;
    padding: 0 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    color: #98A2B3;
    pointer-events: none;
}

.floating-input:focus+label,
.floating-input:not(:placeholder-shown)+label,
.textarea-group textarea:focus+label,
.textarea-group textarea:not(:placeholder-shown)+label {
    top: -9px;
    font-size: 11.5px;
    color: var(--primary, #C40D2E);
    font-weight: 700;
}

.floating-group .active {
    top: -9px;
    font-size: 11.5px;
    color: var(--primary, #C40D2E);
    font-weight: 700;
}


/*==================================
  Gender Selection (Updated Theme)
==================================*/

.input-title {
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
    font-size: 14px;
    color: var(--dark, #1F1F1F);
}

.gender-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gender-card {
    flex: 1;
    cursor: pointer;
}

.gender-card input {
    display: none;
}

.gender-card div {
    border: 2px solid #E8EDF5;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    transition: all 0.35s ease;
    background: #ffffff;
}

.gender-card div:hover {
    border-color: rgba(196, 13, 46, 0.3);
}

.gender-card i {
    font-size: 20px;
    color: var(--primary, #C40D2E);
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.gender-card span {
    font-size: 13px;
    font-weight: 600;
    color: #555555;
}

.gender-card input:checked+div {
    border-color: var(--primary, #C40D2E);
    background: rgba(0, 128, 128, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(196, 13, 46, 0.12);
}

.gender-card input:checked+div span {
    color: var(--primary, #C40D2E);
}


/* 📱 Mobile Responsiveness Optimization */
@media (max-width: 991px) {
    .appointment-form-card {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .doctor-info-card {
        position: static;
    }
}

@media (max-width: 575px) {
    .appointment-wrapper {
        padding: 20px 15px;
    }

    .gender-wrapper {
        flex-direction: row;
    }
}

/*==================================
  Schedule Section (Updated Theme)
==================================*/

.schedule-section {
    margin-top: 32px;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.schedule-header h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--dark, #1F1F1F);
}

.schedule-header h4 i {
    color: var(--primary, #C40D2E);
    margin-right: 6px;
}

.schedule-header p {
    margin: 0;
    font-size: 13px;
    color: #667085;
}

.schedule-count {
    padding: 6px 14px;
    background: rgba(0, 128, 128, 0.08);
    color: var(--primary, #C40D2E);
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    border: 1px solid rgba(196, 13, 46, 0.12);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.slot-card {
    cursor: pointer;
}

.slot-card input {
    display: none;
}

.slot-body {
    position: relative;
    padding: 12px;
    border-radius: 12px;
    background: #ffffff;
    border: 1.5px solid #E6ECF5;
    transition: all 0.3s ease;
    overflow: hidden;
}

.slot-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.slot-number {
    font-weight: 700;
    font-size: 10.5px;
    color: var(--primary, #C40D2E);
    background: rgba(0, 128, 128, 0.08);
    padding: 3px 8px;
    border-radius: 30px;
}

.slot-status {
    font-size: 10px;
    color: var(--secondary, #F39C12);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.slot-status i {
    font-size: 6px;
}

.slot-body h5 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 3px;
    color: var(--dark, #1F1F1F);
}

.slot-body small {
    font-size: 11px;
    color: #98A2B3;
}

.slot-check {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 17px;
    color: #ffffff;
    opacity: 0;
    transition: 0.3s;
}

.slot-card:hover .slot-body {
    transform: translateY(-4px);
    border-color: var(--primary, #C40D2E);
    box-shadow: 0 10px 22px rgba(196, 13, 46, 0.12);
}

/* Selected Active Slot with Gradient */
.slot-card input:checked+.slot-body {
    background: linear-gradient(135deg, var(--primary, #C40D2E), var(--secondary, #F39C12));
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(196, 13, 46, 0.22);
}

.slot-card input:checked+.slot-body h5,
.slot-card input:checked+.slot-body small,
.slot-card input:checked+.slot-body .slot-status,
.slot-card input:checked+.slot-body .slot-number {
    color: #ffffff;
    background: transparent;
}

.slot-card input:checked+.slot-body .slot-check {
    opacity: 1;
}

@media (max-width: 1200px) {
    .schedule-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .doctor-info-card {
        position: static;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .appointment-wrapper {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/*==================================
  Video Section (Updated Theme)
==================================*/

.video-section {
    padding: 120px 0;
    background: var(--light, #f0fdfa);
}

.video-card {
    display: block;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(196, 13, 46, 0.08);
}

.video-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(196, 13, 46, 0.15);
}

.video-card .video-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #1F1F1F;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card .video-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    transition: transform 0.4s ease;
}

.video-card:hover .video-image img {
    transform: scale(1.05);
}

.video-card .video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary, #C40D2E);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-card:hover .play-btn {
    transform: scale(1.15);
    background: var(--primary, #C40D2E);
    color: #ffffff;
}

.video-content {
    padding: 25px;
}

.video-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 128, 128, 0.08);
    color: var(--primary, #C40D2E);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.video-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark, #1F1F1F);
    line-height: 28px;
    margin: 0;
}


/*==================================
  Contact Page Extensions (Updated Theme)
==================================*/

.bg-blue-soft {
    background-color: var(--light, #f0fdfa);
}

/* Contact Info Cards */
.contact-info-card {
    border: 1px solid rgba(196, 13, 46, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    background: #ffffff;
    border-radius: 16px;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(196, 13, 46, 0.12);
    border-color: rgba(196, 13, 46, 0.2);
}

.contact-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(0, 128, 128, 0.08);
    color: var(--primary, #C40D2E);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-box {
    background: var(--primary, #C40D2E);
    color: #ffffff;
}

/* Social Icons Box */
.social-link-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--primary, #C40D2E);
    border: 1px solid rgba(196, 13, 46, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-btn:hover {
    background: var(--primary, #C40D2E);
    color: #ffffff;
    border-color: var(--primary, #C40D2E);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(196, 13, 46, 0.2);
}

/* Form Styling */
.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid rgba(196, 13, 46, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
}

.custom-input-control {
    border: 1px solid #E2E8F0;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    color: var(--dark, #1F1F1F);
}

.custom-input-control:focus {
    border-color: var(--primary, #C40D2E);
    box-shadow: 0 0 0 4px rgba(196, 13, 46, 0.1);
    outline: none;
}

/* Chamber Custom Styles */
.chamber-info-card-custom {
    background: #ffffff;
    border: 1px solid rgba(196, 13, 46, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.chamber-map-box {
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #E2E8F0;
}

.chamber-main-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark, #1F1F1F);
}

.chamber-address-text {
    color: #64748B;
    font-size: 14px;
}

.chamber-schedule-table {
    margin-top: 15px;
    background: var(--light, #f0fdfa);
    border-radius: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(196, 13, 46, 0.08);
}

.chamber-schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(196, 13, 46, 0.15);
    font-size: 14px;
}

.chamber-schedule-row:last-child {
    border-bottom: none;
}

.chamber-day-name {
    font-weight: 600;
    color: #334155;
}

.chamber-time-slot {
    font-weight: 600;
    color: var(--primary, #C40D2E);
}

.chamber-time-slot.off-day {
    color: #EF4444;
}

.btn-primary-custom {
    background-color: var(--primary, #C40D2E);
    color: #ffffff;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-custom:hover {
    background-color: #A00A25;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(196, 13, 46, 0.25);
}

/* Doctor Card Styling */
.chamber-doctor-card {
    background: #ffffff;
    border: 1px solid rgba(196, 13, 46, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    text-align: center;
    height: 100%;
}

.doctor-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary, #C40D2E);
    margin-bottom: 15px;
}

.chamber-doctor-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark, #1F1F1F);
}

.chamber-doctor-card>span {
    font-size: 13px;
    color: #64748B;
    display: block;
    margin-bottom: 10px;
}

.doctor-rating {
    color: var(--secondary, #F39C12);
    font-size: 13px;
    margin-bottom: 15px;
}

.doctor-stat {
    background: var(--light, #f0fdfa);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(196, 13, 46, 0.08);
}

.doctor-stat strong {
    display: block;
    font-size: 16px;
    color: var(--primary, #C40D2E);
}

.doctor-stat span {
    font-size: 12px;
    color: #64748B;
}

.chamber-booking-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chamber-booking-info>div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chamber-booking-info i {
    font-size: 18px;
    color: var(--primary, #C40D2E);
    background: rgba(0, 128, 128, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chamber-booking-info strong {
    display: block;
    font-size: 13px;
    color: var(--dark, #1F1F1F);
}

.chamber-booking-info span {
    font-size: 12px;
    color: #64748B;
}

/* Custom Outline Button (Matching Theme) */
.btn-outline-custom {
    color: var(--primary, #008080);
    border: 2px solid var(--primary, #008080);
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus,
.btn-outline-custom:active {
    background-color: var(--light, #f0fdfa) !important;
    border-color: var(--primary, #008080) !important;
    color: var(--primary, #008080) !important;
    box-shadow: 0 6px 18px rgba(0, 128, 128, 0.08) !important;
}

/* Footer Custom Theme Alignment */
.footer-section,
footer {
    background-color: var(--light, #f0fdfa) !important;
    color: var(--text, #334e4e) !important;
}

/* Footer Accent Elements & Icons */
footer a:hover,
footer .footer-links a:hover,
footer .footer-icon,
footer i {
    color: var(--primary, #008080) !important;
}

/* Footer Bottom Bar / Copyright */
footer .copyright-text a {
    color: var(--secondary, #2ecc71);
}

/* Footer Social Buttons */
footer .social-icon {
    background: rgba(0, 128, 128, 0.05);
    color: var(--primary, #008080);
    border: 1px solid rgba(0, 128, 128, 0.2);
    transition: all 0.3s ease;
}

footer .social-icon:hover {
    background: var(--primary, #008080);
    color: #ffffff;
    border-color: var(--primary, #008080);
    transform: translateY(-3px);
}


/* Fix Bootstrap Modal Open Layout Shift (Navbar & Body Shifting to Left) */
body.modal-open {
    padding-right: 0 !important;
}

body.modal-open .custom-navbar,
body.modal-open .topbar,
body.modal-open .sticky-header {
    padding-right: 0 !important;
}

/* Fix Bootstrap Modal stacking under sticky header/navbar */
.modal {
    z-index: 2050 !important;
}

.modal-backdrop {
    z-index: 2040 !important;
}