/* Variables */
:root {
    --bg-green: #0a4d34;
    --accent-orange: #c9923a;
    --light-green: #a7f3d0;
}
.bg-green{
    background-color: var(--bg-green);
}
.primary-color{
    color: var(--accent-orange);
}
.green-color{
    color: var(--bg-green);
}
a .active{
    color: var(--accent-orange) !important;
}
body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* --- Hero Wrapper --- */
.hero-wrapper {
    /* background-color: var(--bg-green); */
    background: linear-gradient(#0a4d34f0, #0a4d34f0),
        url('../img/main_background.webp');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 98vh;
    display: flex;
    flex-direction: column;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    color: white;
}

/* --- Navbar Fixed at Top --- */
.navbar {
    padding: 20px 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-weight: 500;
    font-size: 17px;
    margin-left: 20px;
}

/* --- Content Centering (सर्वात महत्वाचे) --- */
.hero-content {
    flex-grow: 1;
    /* उरलेली जागा व्यापण्यासाठी */
    display: flex;
    align-items: center;
    /* Vertical Center */
    justify-content: center;
    /* Horizontal Center */
    text-align: center;
    padding-bottom: 50px;
}

.badge-history {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--accent-orange);
}

.hero-subtitle {
    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.8;
}

/* --- Buttons --- */
.btn-orange {
    background-color: var(--accent-orange);
    color: white;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 700;
    border: none;
    transition: 0.3s;
}

.btn-orange:hover {
    background-color: rgb(0, 0, 0) !important;
    border: 1px solid rgb(255, 255, 255);
    transform: translateY(-3px);
    color: white;
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    background: transparent;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

    .hero-wrapper {
        border-radius: 0 0 30px 30px;
    }
}

/*  */

/* --- Consultation Section --- */
.consultation-section {
    /* background-color: linear-gradient(135deg, #1e3d1b #1e3d1b 0%, #1a3d15 100%);. */
    background-color: var(--bg-green);
     background: linear-gradient(#0a4d34f9, #0a4d34f7),
        url('../img/main_background.webp');
    /* Using your root variable */
    padding: 80px 0 50px 0;
    color: white;
}

.begin-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--accent-gold);
    /* Ensure this matches your gold/orange variable */
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.form-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 45px;
    opacity: 0.8;
    line-height: 1.7;
}

/* --- Input Fields (Glassy Look like Image) --- */
.custom-input {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid #c9923aa1 !important;
    border-radius: 5px;
    padding: 16px 20px;
    color: white !important;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.custom-input:focus {
    border-color: var(--accent-gold) !important;
    box-shadow: none;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* --- Professional CTA Button --- */
.btn-booking {
    background-color: var(--accent-orange);
    /* Exact shade from your reference image */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 16px 50px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-transform: capitalize;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-booking:hover {
    background-color: #b38f4d;
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.privacy-note {
    margin-top: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Responsive Scaling */
@media (max-width: 991px) {
    .form-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2.2rem;
    }

    .btn-booking {
        width: 100%;
    }

    .consultation-section {
        padding: 80px 20px;
    }
}

/*  */
.testimonial-section {
    /* background-color: var(--bg-green); */
     background: linear-gradient(#0a4d34f0, #0a4d34f0),
        url('../img/Diabetes\ testimonial.jpg');
        /* background-repeat: no-repeat;
        background-size: 100% 100%; */
    /* क्रीम बॅकग्राउंड फोटोप्रमाणे */
}

.testimonial h2 {
    font-size: 44px !important;
}

.success-badges {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-radius: 20px;
    font-weight: bold !important;
    font-size: 13px !important;
    padding: 5px 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.15);

}

.testimonial-card {
    background: #26604A;
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* border-radius: var(--radius-lg); */


    /* background: white; */
    padding: 40px;
    border-radius: 15px;
    /* border: 1px solid #f0e6d8; */
    height: 100%;
    transition: 0.3s;
    position: relative;
    margin-bottom: 50px;
    /* Pagination साठी जागा */
}

.testimonial-card:hover {
    box-shadow: 0 15px 30px rgba(10, 77, 52, 0.05);
}

.quote-icon {
    color: #f3e5d5;
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.testimonial-text {
    font-style: italic;
    color: #ffffff90;
    line-height: 1.8;
    font-size: 1.05rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: #e6f4ea;
    color: #0a4d34;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Swiper Dot Color */
.swiper-pagination-bullet-active {
    background: #0a4d34 !important;
}

/*  */
/* --- Overview Section Variables & Styles --- */
.overview-section {
    background-color: #ffffff;
    /* Clean white for readability */
}

.overview-badge {
    display: inline-block;
    background-color: var(--bg-green);
    /* तुझ्या root मधला हिरवा */
    color: white;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: #0d2e21;
}

.Frequently {
    font-size: 40px !important;
}

.Frequently span {
    color: var(--accent-orange);
}

.overview-title span {
    color: var(--accent-orange);
    /* तुझ्या root मधला ऑरेंज/गोल्डन */
}

.overview-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.15rem;
    color: #5a5a5a;
    line-height: 1.8;
}

/* Benefit List Styling */
.benefit-list li {
    margin-bottom: 22px;
    display: flex;
    align-items: flex-start;
    font-size: 1.05rem;
    color: #2c2c2c;
}

.benefit-list i {
    color: #2e7d32;
    font-size: 1.4rem;
    margin-right: 15px;
    margin-top: 3px;
}

/* Image & Card Effects */
.expert-img {
    border-radius: 40px;
    width: 100%;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
}

.doctor-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    /* Slight overlap for creative look */
    background: white;
    border-radius: 20px;
    min-width: 280px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dr-initials {
    width: 50px;
    height: 50px;
    background-color: var(--accent-orange);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .overview-title {
        font-size: 2.8rem;
    }

    .doctor-card {
        position: static;
        margin-top: 20px;
    }

    .image-wrapper {
        margin-bottom: 30px;
    }
}

/* Frequently Asked Questions */

.custom-faq .accordion-item {
    border: 1px solid var(--bg-green) !important;
    border-radius: 16px !important;
    overflow: hidden;
}

.custom-faq .accordion-button {
    background-color: var(--bg-green) !important;
    color: #ffffff !important;
    font-size: 1.1rem;
    padding: 1.25rem;
}

.custom-faq .accordion-button.collapsed {
    background-color: var(--bg-green) !important;
    color: #ffffff !important;
}

.custom-faq .accordion-button::after {
    filter: brightness(0) invert(1);
}

.custom-faq .accordion-body {
    background-color: #ffffff;
    color: #333333;
    padding: 1.5rem;
    font-size: 1rem;
}
.Diabetes_Reversal{
    width: 100%;
    height: auto;
    border-radius: 20px;
}


/* -------------------------- */

.custom-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .custom-card:hover {
        transform: translateY(-8px); /* माउस नेल्यावर कार्ड थोडे वर येईल */
        box-shadow: 0 10px 20px rgba(0,0,0,0.15); /* हलकी सावली पडेल */
    }
    
    /* Garbhanand साठी बटण */
    .custom-btn-orange {
        background-color: #c98136;
        color: white;
        border: none;
        font-weight: 600;
        border-radius: 4px;
        transition: background 0.2s;
    }
    .custom-btn-orange:hover {
        background-color: #b06f2d;
        color: white;
    }
    
    /* Eranya साठी बटण */
    .custom-btn-green {
        background-color: #ffffff;
        color: #0a4d34;
        border: none;
        font-weight: 600;
        border-radius: 4px;
        transition: background 0.2s;
    }
    .custom-btn-green:hover {
        background-color: #e0e0e0;
        color: #0a4d34;
    }