:root {
    --primary-color: #C5A059;
    --soft-bg: #F9F8F0;
    --blue-color: #1A4338;
    --parrot-green: #7A8C4A;
    --primary-green: #0f7a4f;
    --soft-green: #e8f5ef;
    --dark-text: #1f2d2a;
    /* --primary-green: #1A4338;
    --accent-gold: #C5A059;
    --leaf-green: #7A8C4A;
    --bg-cream: #F9F8F0; */
}

.golden_color {
    color: #C5A059;
    font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar */
html {
    scroll-behavior: smooth;
}

/* Navbar height approx 90px */
section {
    scroll-margin-top: 90px;
}

body {
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* loader */
/* Loader Wrapper Styling */
/* लोडर सुरुवातीला पूर्ण स्क्रीन ब्लॉक करेल */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff; /* तुमच्या वेबसाईटचा बॅकग्राउंड रंग */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* सर्वात वर दिसण्यासाठी मोठी व्हॅल्यू */
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

/* लोडर इमेज साइज (Responsive) */
#loader-img {
    width: 100px;
    height: auto;
}

@media (min-width: 768px) {
    #loader-img {
        width: 150px;
    }
}

/* लोडर गायब करण्यासाठी क्लास */
.loader-hidden {
    opacity: 0 !important;
    pointer-events: none;
}

/* जोपर्यंत लोडर चालू आहे तोपर्यंत स्क्रोलिंग बंद ठेवण्यासाठी */
body.loading-active {
    overflow: hidden !important;
    height: 100vh;
}

/* end fo loader */
/* ======================
   TOP CONTACT BAR
====================== */

.top-contact-bar {
    background: #08653f;
    padding: 5px 0;
}

.contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.contact-info a:hover {
    color: #f8d66d;
}

.contact-info i {
    margin-right: 8px;
    font-size: 13px;
}

.call-btn {
    background: #fff;
    color: #08653f;
    text-decoration: none;
    padding: 2px 10px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    transition: .3s;
}

.call-btn:hover {
    background: #f8d66d;
    color: #000;
}

.call-btn i {
    margin-right: 8px;
}

.navbar .nav-link {
    color: #222;
    font-weight: 500;
    padding: 30px 15px;
    transition: .3s;
}

.navbar .nav-link:hover {
    color: #176c3d;
}

.navbar .nav-link.active_nav {
    color: #176c3d !important;
    font-weight: 700;
    position: relative;
}

.navbar .nav-link.active_nav::after {
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 10px;
    height: 3px;
    background: #176c3d;
    border-radius: 50px;
}

/*  */
.nav-link {

    font-size: 16px;

    font-weight: 500;

    color: #222 !important;

    padding: 14px 18px !important;

    transition: .3s;

}

.active_nav {
    color: #0b7d4f !important;
    font-weight: bold;
}

.nav-link:hover {

    color: #0b7d4f !important;

}

/* Dropdown */

.dropdown-menu {

    border: none;

    border-radius: 12px;

    padding: 10px 0;

    min-width: 250px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .10);

}

.dropdown-item {

    padding: 10px 22px;

    transition: .3s;

}

.dropdown-item:hover {

    background: #f4fbf8;

    color: #0b7d4f;

}

/* Desktop Hover */

@media (min-width:992px) {

    .dropdown:hover>.dropdown-menu {

        display: block;

        animation: fade .25s ease;

        margin-top: 0;

    }

}

/* Animation */

@keyframes fade {

    from {

        opacity: 0;

        transform: translateY(8px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* Button */

.btn-success {

    background: #0b7d4f;

    border: none;

    padding: 11px 24px;

}

.btn-success:hover {

    background: #08653f;

}

/* Mobile */

@media(max-width:991px) {

    .navbar {

        padding: 10px 0;

    }

    .nav-link {

        padding: 12px 5px !important;

    }

    .dropdown-menu {

        box-shadow: none;

        border-left: 3px solid #0b7d4f;

        border-radius: 0;

        margin-left: 10px;

        padding-left: 8px;

    }

    .btn {

        margin-top: 15px;

        width: 100%;

    }

}


/*  */

/*==============================
Google Font
==============================*/


/*==============================
Hero Section
==============================*/

.hero-section {

    position: relative;

    padding: 10px 0 100px;

    background: linear-gradient(135deg, #ebfdf1 0%, #eefaf2 100%);

    overflow: hidden;

}

.hero-section::before {

    content: "";

    position: absolute;

    width: 650px;

    height: 650px;

    /* background: #d8f4df; */

    border-radius: 50%;

    top: -220px;

    right: -170px;

    opacity: .6;

}

/* .hero-section::after {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    background: #eafaf0;

    border-radius: 50%;

    left: -120px;

    bottom: -120px;

} */

/*==============================
Badge
==============================*/

.hero-badge {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background: #fafbfb;

    color: #0b7d4f;

    font-size: 15px;

    font-weight: 600;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

}

/*==============================
Heading
==============================*/

.hero-title {

    font-size: 42px;

    font-weight: 800;

    line-height: 1.15;

    color: #222;

}

.hero-title span {

    color: #0b7d4f;

}

/*==============================
Description
==============================*/

.hero-description {

    font-size: 18px;

    line-height: 32px;

    color: #666;

    max-width: 560px;

}

/*==============================
Buttons
==============================*/

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.hero-btn {

    padding: 16px 35px;

    border-radius: 50px;

    font-weight: 600;

    font-size: 16px;

    background: #0b7d4f;

    border: none;

    transition: .35s;

}

.hero-btn:hover {

    background: #08653f;

    transform: translateY(-3px);

}

.hero-btn-outline {

    padding: 16px 35px;

    border-radius: 50px;

    font-weight: 600;

    transition: .35s;

}

.hero-btn-outline:hover {

    transform: translateY(-3px);

}

/*==============================
Features
==============================*/

.hero-features {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.feature-box {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 5px 12px !important;
    /* padding: 18px 22px; */

    background: #fff;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .35s;

}

.feature-box:hover {

    transform: translateY(-8px);

}

.feature-icon {

    width: 25px;

    height: 25px;

    background: #0b7d4f;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    font-weight: 700;

}

/*==============================
Image
==============================*/

.hero-image-wrapper {

    position: relative;

    min-height: 700px;

    display: flex;

    justify-content: center;

    align-items: flex-end;

}

.hero-circle {

    position: absolute;

    width: 520px;

    height: 520px;

    border-radius: 50%;

    background: linear-gradient(135deg, #cdeed7, #eafaf0);

    top: 60px;

    right: 30px;

    z-index: 1;

    box-shadow: 0 25px 70px rgba(11, 125, 79, .15);

}

.doctor-img {

    position: relative;

    top: -100px;

    z-index: 3;

    max-width: 600px;

    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, .18));

}

/*==============================
Floating Cards
==============================*/

.floating-card {

    position: absolute;

    background: #fff;

    padding: 18px;

    border-radius: 18px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    text-align: center;

    z-index: 5;

    animation: float 4s ease-in-out infinite;

    min-width: 140px;

}

.floating-card h6 {

    margin-top: 8px;

    margin-bottom: 4px;

    font-weight: 700;

}

.floating-card small {
    color: #666;

}

.feature-box small {
    font-size: 13px;
}

.card1 {

    top: 20px;

    left: 80px;

}

.card2 {

    top: 40px;

    right: 0;

}

.card3 {

    bottom: 280px;

    left: 20px;

}

.card4 {

    bottom: 250px;

    right: 0px;

}

/*==============================
Experience Box
==============================*/

/* .experience-box{

position:absolute;

bottom:30px;

left:50%;

transform:translateX(-50%);

background:#fff;

padding:18px 28px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.1);

z-index:6;

text-align:center;

} */

.experience-box {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 37px 13px;
    border-radius: 150px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
    z-index: 6;
    text-align: center;
}



.experience-box h2 {

    color: #0b7d4f;

    font-size: 42px;

    font-weight: 800;

    margin-bottom: 5px;

}

.experience-box span {

    font-size: 15px;

    font-weight: 500;

    color: #666;

}

/*==============================
Animation
==============================*/

@keyframes float {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

    100% {

        transform: translateY(0);

    }

}

/*==============================
Wave
==============================*/

.hero-wave {

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

}

/*==============================
Responsive
==============================*/

@media(max-width:991px) {

    .hero-section {

        padding: 30px 0 120px;

        text-align: center;

    }

    .hero-title {

        font-size: 42px;

    }

    .hero-description {

        font-size: 16px;

        line-height: 30px;

        margin: auto;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-features {

        justify-content: center;

        margin-top: 40px;

    }

    .hero-image-wrapper {

        min-height: 500px;

        margin-top: 60px;

    }

    .hero-circle {

        width: 330px;

        height: 330px;

        left: 50%;

        transform: translateX(-50%);

        top: 40px;

    }

    .doctor-img {

        max-width: 300px;

    }

    .card1 {

        left: 0;

        top: 100px;

    }

    .card2 {

        right: 0;

        top: 20px;

    }

    .card3 {

        left: 10px;

        bottom: 120px;

    }

    .card4 {

        right: 10px;

        bottom: 50px;

    }

    .experience-box {

        position: relative;

        left: -73px;

        transform: none;

        margin-top: 25px;

    }

}

@media(max-width:576px) {

    .hero-title {

        font-size: 34px;

    }

    .hero-badge {

        font-size: 13px;

    }

    .hero-btn,

    .hero-btn-outline {

        width: 100%;

    }

    .feature-box {

        width: 100%;

    }

    .doctor-img {

        max-width: 400px;

    }

    .floating-card {

        display: none;

    }

}

/* Dashed Circle */

.hero-dashed-circle {
    position: absolute;

    width: 560px;
    height: 560px;

    border-radius: 50%;

    border: 3px dashed rgba(11, 125, 79, .35);

    top: 40px;
    right: 10px;

    z-index: 2;
}

.about_section {
    color: #08653f !important;
    font-size: 40px !important;
}

/* footer */

/* ==========================
   PREMIUM FOOTER
========================== */

.gb-footer-section {
    background: #08653f;
    padding: 90px 0 30px;
    color: #fff;
    overflow: hidden;

    background:
        linear-gradient(rgba(23, 108, 61, 0.948),
            rgba(23, 108, 61, 0.925)),
        url('../images/bg_large.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Heading */

.gb-footer-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

/* Map */

.gb-map-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, .25);
}

.gb-map-wrapper iframe {
    width: 100%;
    height: 260px;
    border: none;
}

/* Quick Links */

.gb-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gb-footer-list li {
    margin-bottom: 14px;
}

.gb-footer-list a {
    color: #d3ddd7;
    text-decoration: none;
    transition: .3s;
    font-size: 16px;
}

.gb-footer-list a:hover {
    color: #4bc17d;
    padding-left: 6px;
}

/* Contact */

.gb-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gb-contact-list li {
    margin-bottom: 18px;
    color: #d3ddd7;
    line-height: 1.8;
    display: flex;
    gap: 12px;
}

.gb-contact-list span {
    color: #4bc17d;
    font-size: 18px;
}

/* Divider */

.gb-footer-line {
    border-color:
        rgba(255, 255, 255, .08);

    margin:
        60px 0 25px;
}

/* Bottom */

.gb-copy {
    color: #b8c5be;
    font-size: 15px;
}

.gb-designedby {
    color: #4bc17d;
    text-decoration: none;
    font-weight: 600;
}

.gb-designedby:hover {
    color: #fff;
}

/* Mobile */

@media(max-width:991px) {

    .gb-footer-section {
        text-align: center;
    }

    .gb-contact-list li {
        justify-content: center;
    }

}

/* faqs */
/*==========================
FAQ SECTION
==========================*/

.gp-faq-section {
    background: #edf5f1;
    position: relative;
}

.gp-faq-badge {
    background: #dff2e7;
    color: #176c3d;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.gp-faq-title {
    font-size: 40px;
    font-weight: 700;
    color: #176c3d;
}

.gp-faq-accordion .accordion-item {
    background: transparent;
    border: none;

    border-bottom: 1px solid #08653f;
    border-radius: 0;
}

.gp-faq-accordion .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 10px 40px 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.gp-faq-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: #176c3d;
}

.gp-faq-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 32px;
    font-weight: 300;
    color: #176c3d;
    width: auto;
    height: auto;
    transform: none;
}

.gp-faq-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
}

.gp-faq-accordion .accordion-body {
    padding: 0 0 25px;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

@media(max-width:768px) {

    .gp-faq-title {
        font-size: 30px;
    }

    .gp-faq-accordion .accordion-button {
        font-size: 18px;
        padding: 20px 35px 20px 0;
    }

    .gp-faq-accordion .accordion-button::after {
        font-size: 26px;
    }

}

/* testimonial */
.testimonial-section {
    padding: 80px 0;
    background-color: #128a5a0f;
}

.testimonial-section {
    position: relative;
    overflow: hidden;
    /* background-color: #eaeee2; */
}

.testimonial-section::before {
    content: "";
    position: absolute;

    top: -0px;
    left: -60px;

    width: 350px;
    height: 520px;

    background: url("../images/leaf213.jpg.png") no-repeat center;
    background-size: contain;

    opacity: 0.12;
    pointer-events: none;

    animation: leafFloat 6s ease-in-out infinite;

    z-index: 0;
}

@keyframes leafFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0);
    }
}

/*  */

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #0f7a4f;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
}

.rating-box {
    text-align: center;
}

.rating-box h3 {
    font-size: 32px;
    font-weight: 700;
}

.stars {
    color: #fbbc04;
    font-size: 32px;
    letter-spacing: 4px;
}

.google-logo {
    width: 130px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 22px;
    padding: 25px;
    min-height: 315px;
    height: auto;
    transition: .4s;
}

.review-head {
    display: flex;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    background: #8d6e63;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-icon {
    width: 22px;
}

.review-stars {
    color: #fbbc04;
    font-size: 20px;
    margin: 15px 0;
}

.review-text {
    line-height: 1.8;
    color: #555;
}

.more-content {
    display: none;
}

.read-more-btn {
    color: #888;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.read-more-btn:hover {
    color: #000;
}

.carousel-control-prev,
.carousel-control-next {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    top: 40%;
    opacity: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 20px;
    height: 20px;
}

@media(max-width:991px) {

    .rating-box {
        margin-bottom: 30px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/*  */
/* पूर्ण सेक्शनला अ‍ॅनिमेशन लागू करा */
.gp-problem-image {
    animation: mainFloatAnimation 4s ease-in-out infinite;
}

/* एकत्र वर-खाली हलण्यासाठी Keyframes */
@keyframes mainFloatAnimation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
        /* १५ पिक्सेल वर जाईल */
    }

    100% {
        transform: translateY(0px);
    }
}

/*  */
.welcome-section {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
}

.welcome-section::before {
    content: "";
    position: absolute;

    top: -20px;
    right: -100px;

    width: 350px;
    height: 520px;

    background: url("../images/leaf213.jpg.png") no-repeat center;
    background-size: contain;

    opacity: 0.12;
    pointer-events: none;

    animation: leafFloat 6s ease-in-out infinite;

    z-index: 0;
}

@keyframes leafFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0);
    }
}

/*  */
.gp-problem-section {
    background: #eaeee2;
    overflow: hidden;
}

.gp-problem-section {
    position: relative;
    overflow: hidden;
    background-color: #eaeee2;
}

.gp-problem-section::before {
    content: "";
    position: absolute;

    top: -0px;
    right: -60px;

    width: 320px;
    height: 320px;

    background: url("../images/wall-art.png") no-repeat center;
    background-size: contain;

    opacity: 0.12;
    pointer-events: none;

    animation: leafFloat 6s ease-in-out infinite;

    z-index: 0;
}

@keyframes leafFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0);
    }
}


.gp-section-tag {
    display: inline-block;
    background: #ffffff;
    color: #1d6b45;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 20px;
}

.gp-problem-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    color: #222;
    margin-bottom: 20px;
}

.gp-problem-title span {
    color: #1d6b45;
    display: block;
}

.gp-problem-desc {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.gp-problem-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.gp-problem-list li {
    position: relative;
    padding: 6px 0 10px 55px;
    border-bottom: 1px dashed #ddd;
    font-size: 16px;
    color: #333;
}

.gp-problem-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1d6b45;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.gp-question-box {
    background: #ffffff;
    border-radius: 30px;
    padding: 35px;
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 30px;
}

.gp-question-icon {
    font-size: 120px;
    color: #d5dccf;
    line-height: 1;
}

.gp-question-box h4 {
    font-size: 24px;
    font-weight: 700;
}

.gp-arrow {
    font-size: 40px;
    color: #1d6b45;
    /* margin:10px 0; */
}

.gp-highlight {
    color: #1d6b45;
    font-weight: 700;
}

.gp-btn {
    background: #1d6b45;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
}

.gp-btn:hover {
    background: #155236;
    color: #fff;
}

.gp-problem-image {
    position: relative;
}

.gp-problem-image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    padding: 10px;
    border: 1px dashed #155236;
    border-style: dashed;
    border-top-left-radius: 60px;
    border-top-right-radius: 180px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.gp-trust-box {
    position: absolute;
    left: 25px;
    bottom: 25px;
    background: #fff;
    border-radius: 25px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
}

.gp-trust-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #1d6b45;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.gp-trust-box h3 {
    color: #1d6b45;
    font-size: 36px;
    margin: 0;
    font-weight: 700;
}

.gp-trust-box p {
    margin: 0;
    color: #555;
}

@media(max-width:991px) {

    .gp-problem-title {
        font-size: 42px;
    }

    .gp-problem-desc {
        font-size: 18px;
    }

    .gp-problem-list li {
        font-size: 18px;
    }

    .gp-question-box {
        flex-direction: column;
        text-align: center;
    }

    .gp-question-icon {
        font-size: 80px;
    }

    .gp-question-box h4 {
        font-size: 26px;
    }
}

/* different */
.gp-difference-section {
    background: #f9faf8;
    position: relative;
}


.gp-difference-section {
    position: relative;
    overflow: hidden;
    background-color: #eaeee2;
}

.gp-difference-section::before {
    content: "";
    position: absolute;

    top: -0px;
    right: -60px;

    width: 320px;
    height: 320px;

    background: url("../images/wall-art.png") no-repeat center;
    background-size: contain;

    opacity: 0.12;
    pointer-events: none;

    animation: leafFloat 6s ease-in-out infinite;

    z-index: 0;
}

@keyframes leafFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0);
    }
}


.gp-tag {
    display: inline-block;
    padding: 10px 24px;
    background: #eef5ef;
    color: #1f6b45;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.gp-main-title {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-top: 15px;
}

.gp-green-title {
    font-size: 40px;
    font-weight: 700;
    color: #1f6b45;
    margin-bottom: 20px;
}

.gp-sub-text {
    max-width: 850px;
    margin: auto;
    color: #666;
    font-size: 16px;
}

.gp-diff-card {
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    height: 100%;
    transition: .4s;
    border: 1px solid #ececec;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.gp-diff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.active-card {
    background: #1f6b45;
    color: #fff;
}

.active-card ul li {
    color: #fff;
}

.gp-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef5ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-bottom: 10px;
}

.active-card .gp-icon {
    background: #fff;
}

.gp-diff-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gp-diff-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gp-diff-card ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px;
    font-size: 16px;
    color: #444;
}

.gp-diff-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1f6b45;
    font-weight: bold;
}

.active-card ul li::before {
    color: #fff;
}

.gp-highlight-box {
    background: #ffffff;
    padding: 25px 40px 10px;
    border-radius: 30px;
    text-align: center;
    border-left: 6px solid #1f6b45;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.gp-highlight-box h4 {
    font-size: 25px;
    font-weight: 700;
    color: #1f6b45;
}

.gp-highlight-box p {
    margin-top: 15px;
    color: #666;
    font-size: 16px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

@media(max-width:991px) {

    .gp-main-title {
        font-size: 38px;
    }

    .gp-green-title {
        font-size: 42px;
    }

    .gp-diff-card {
        padding: 30px;
    }

}

/* Four_piller */
.Four_piller {
    width: 100vw;
    align-items: center;
}

/* .Four_piller {
    background-image: url(../images/four\ piller.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
} */

/* @media (max-width: 768px) {
    .Four_piller {
        background-size: cover;
        background-position: center;
        height: auto;
        padding: 110px 20px;
    }
} */

/*  */
.agni-section {
    background: #f7f8f3;
}

.agni-wrapper {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.agni-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agni-content {
    padding: 60px;
}

.agni-badge {
    background: #176c3d;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.agni-title {
    font-size: 40px;
    font-weight: 700;
    margin-top: 25px;
    line-height: 1.15;
}

.agni-title span {
    color: #176c3d;
}

.agni-desc {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

.flow-head {
    color: #fff;
    padding: 14px;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
}

.weak-head {
    background: #c84d43;
}

.good-head {
    background: #176c3d;
}

.flow-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 05px 16px;
    margin-top: 15px;
    font-weight: 600;
    background: #fff;
}

.flow-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.flow-icon.weak {
    background: #fff1ef;
    color: #c84d43;
}

.flow-icon.good {
    background: #edf9f1;
    color: #176c3d;
}

.flow-arrow {
    text-align: center;
    font-size: 26px;
    color: #c84d43;
    margin-top: 10px;
}

.good-arrow {
    color: #176c3d;
}

.vs-circle {
    width: 90px;
    height: 90px;
    background: #176c3d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: auto;
}

.agni-cta {
    border: 2px solid #d9b86d;
    border-radius: 20px;
    padding: 15px 25px;
}

.agni-btn {
    background: #176c3d;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
}

.agni-btn:hover {
    color: #fff;
}

.agni-bottom {
    background: #fff;
    margin-top: 30px;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #edf9f1;
    color: #176c3d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: auto auto 15px;
}

.agni-bottom h6 {
    font-weight: 700;
    color: #176c3d;
}

.agni-bottom p {
    color: #666;
}

@media(max-width:991px) {

    .agni-content {
        padding: 30px;
    }

    .agni-title {
        font-size: 36px;
    }

    .vs-circle {
        margin: 30px auto;
    }

}

/*  */



/* Section background */
.conditions-section {
    /* background: linear-gradient(180deg, #f5fdf8, #f5fdf8); */
    background: linear-gradient(135deg, var(--primary-green), #169965) !important;

}

/* Badge */
.badge-custom {
    background: #e9d3a1;
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
}

/* Card */
.condition-card {
    background: #fff6e22b;
    /* border: 2px solid rgba(255, 255, 255, 0.12); */
    border: 2px dotted rgb(255, 255, 255);
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    cursor: pointer;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: 100%;
}

/* Icon */
.condition-card .icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: black;
    background: #e9d3a1;
    border-radius: 50%;
    transition: 0.3s;
}

/* Text */
.condition-card span {
    font-weight: 500;
    color: white;
    line-height: 1.4;
}

/* Text */
.condition-card span:hover {
    font-weight: 500;
    color: rgb(0, 0, 0);
    line-height: 1.4;
}

/* Hover */
.condition-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-green);
    box-shadow: 0 12px 30px rgba(15, 122, 79, 0.15);
    background: var(--soft-green);
}

.condition-card:hover .icon {
    background: var(--primary-green);
    color: #fff;
}

/*  */


.agni-section {
    background: linear-gradient(135deg, rgb(235, 253, 241) 0%, rgb(238, 250, 242) 100% 100%);
    padding: 70px 0 70px;
}


.agni-section {
    position: relative;
    overflow: hidden;
    background-color: #eaeee2;
}

.agni-section::before {
    content: "";
    position: absolute;

    top: -0px;
    right: -60px;

    width: 320px;
    height: 320px;

    background: url("../images/wall-art.png") no-repeat center;
    background-size: contain;

    opacity: 0.12;
    pointer-events: none;

    animation: leafFloat 6s ease-in-out infinite;

    z-index: 0;
}

.agni-section::after {
    content: "";
    position: absolute;

    top: 350px;
    left: -60px;

    width: 320px;
    height: 320px;

    background: url("../images/wall-art.png") no-repeat center;
    background-size: contain;

    opacity: 0.12;
    pointer-events: none;

    animation: leafFloat 6s ease-in-out infinite;

    z-index: 0;
}

@keyframes leafFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0);
    }
}

.agni-badge {
    display: inline-block;
    background: var(--soft-green);
    color: var(--primary-green);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.agni-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--blue-color);
    margin-top: 18px;
    margin-bottom: 10px;
}

.agni-subtitle {
    color: #6b7280;
    font-size: 18px;
    max-width: 650px;
    margin: auto;
}

.agni-card {
    background: #fff;
    border-radius: 22px;
    padding: 20px;
    height: 100%;
    border: 1px solid rgba(15, 122, 79, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.agni-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            var(--primary-green),
            var(--primary-color));
}

.agni-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 122, 79, 0.15);
}

.agni-icon {
    width: 50px;
    height: 50px;
    background: var(--soft-green);
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.agni-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-color);
    margin-bottom: 10px;
}

.agni-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agni-list li {
    padding: 5px 0;
    color: var(--dark-text);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
}

.agni-list li:last-child {
    border-bottom: none;
}

.agni-list li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 10px;
}

.agni-cta {
    margin-top: 50px;
    background: linear-gradient(135deg,
            var(--primary-green),
            #169965);
    border-radius: 25px;
    padding: 30px 30px;
    text-align: center;
    color: #fff;
    box-shadow: 0 15px 40px rgba(15, 122, 79, 0.18);
}

.agni-cta h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.agni-cta p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 25px;
}

.agni-btn {
    display: inline-block;
    background: #fff;
    color: var(--primary-green);
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.agni-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

@media(max-width:768px) {
    .agni-title {
        font-size: 32px;
    }

    .agni-card {
        padding: 24px;
    }

    .agni-cta h3 {
        font-size: 28px;
    }
}


/*  */

.ivf-support-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5fdf8 100%);
    overflow: hidden;
}

.ivf-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: var(--soft-green);
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
}

.ivf-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--blue-color);
    line-height: 1.2;
    margin-top: 20px;
}

.ivf-title span {
    color: var(--primary-green);
}

.ivf-description {
    font-size: 18px;
    color: #5f6b67;
    line-height: 1.8;
    margin-top: 25px;
}

.ivf-image-wrapper {
    position: relative;
}

.ivf-image {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.ivf-floating {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    font-weight: 600;
    color: var(--blue-color);
}

.ivf-cards {
    margin-top: 20px;
}

.ivf-card {
    background: #fff;
    border-radius: 24px;
    padding: 25px 28px;
    height: 100%;
    border: 1px solid rgba(15, 122, 79, .10);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

.ivf-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            var(--primary-green),
            var(--primary-color));
}

.ivf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(15, 122, 79, .15);
}

.ivf-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--soft-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.ivf-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--blue-color);
    margin-bottom: 15px;
}

.ivf-card p {
    color: #67736f;
    line-height: 1.8;
    margin-bottom: 0;
}

@media(max-width:991px) {

    .ivf-title {
        font-size: 38px;
    }

    .ivf-image-wrapper {
        margin-top: 40px;
    }
}

@media(max-width:768px) {

    .ivf-title {
        font-size: 32px;
    }

    .ivf-description {
        font-size: 16px;
    }

    .ivf-floating {
        position: static;
        margin-top: 20px;
    }
}

/*  */
.fertility-programs {
    padding: 90px 0;
    /* background: linear-gradient(135deg, var(--primary-green), #169965); */
    position: relative;
    padding: 110px 0;
    overflow: hidden;

    background:
        linear-gradient(rgba(23, 108, 61, .88),
            rgba(23, 108, 61, .88)),
        url('../images/bg_large.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.conditions-section {
    background:
        linear-gradient(rgba(23, 108, 61, .88),
            rgba(23, 108, 61, .88)),
        url('../images/bg_large.jpg') !important;

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.program-badge {
    display: inline-block;
    padding: 8px 18px;
    background: #e8f5ef;
    color: #0f7a4f;
    border-radius: 50px;
    font-weight: 600;
}

.program-title {
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 15px;
}

.program-subtitle {
    max-width: 700px;
    margin: auto;
    color: #f6d79d;
}

.program-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    border: 1px solid rgba(15, 122, 79, .08);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(15, 122, 79, .15);
}

.program-img {
    height: 240px;
    overflow: hidden;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.program-card:hover .program-img img {
    transform: scale(1.08);
}

.program-content {
    padding: 28px;
}

.program-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1A4338;
    margin-bottom: 12px;
}

.program-content p {
    color: #667085;
    margin-bottom: 20px;
}

.program-btn {
    color: #0f7a4f;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-btn span {
    transition: .3s;
}

.program-card:hover .program-btn span {
    transform: translateX(5px);
}

@media(max-width:768px) {

    .program-title {
        font-size: 34px;
    }

    .program-img {
        height: 200px;
    }
}

/*  */
/* =========================
   ETHICAL COMMITMENT
========================= */

.ethical-commitment-section {
    /* background: var(--blue-color); */
    background: linear-gradient(135deg, var(--primary-green), #169965);
    color: #fff;
    overflow: hidden;
      background:
        linear-gradient(rgba(23, 108, 61, 0.979),
            rgba(23, 108, 61, 0.956)),
        url('../images/bg_large.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Badge */
.ethical-badge {
    display: inline-block;
    background: rgb(255 255 255);
    color: #d4b06a;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
}

/* Title */
.ethical-title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ethical-subtitle {
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Image */
.ethical-image-wrapper {
    position: relative;
}

.ethical-image {
    border-radius: 24px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

/* Cards */
.ethical-card {
    height: 100%;
    padding: 20px 20px 0 30px;
    border-radius: 20px;
    transition: .3s;
}

.promise-card {
    background: rgb(245 227 180);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.warning-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.ethical-card h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #08653f;
    font-weight: 600;
}

.promise-card h4 i {
    color: #08653f;
    margin-right: 8px;
}

.warning-card h4 i {
    color: #ef4444;
    margin-right: 8px;
}

.ethical-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ethical-card ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: rgba(0, 0, 0, 0.9);
}

.promise-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #08653f;
    font-weight: bold;
}

.warning-card ul li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

/* Hover */
.ethical-card:hover {
    transform: translateY(-8px);
}

/* Mobile */
@media (max-width: 768px) {

    .ethical-title {
        font-size: 2rem;
    }

    .ethical-image {
        margin-bottom: 20px;
    }
}

/*  */
/*  */
/* ==========================
   GARBHA SAMBHAVA SECTION
========================== */

/* 
.gs-program-section::before {
    content: "";
    position: absolute;

    top: -0px;
    right: -60px;

    width: 320px;
    height: 320px;

    background: url("../images/wall-art.png") no-repeat center;
    background-size: contain;

    opacity: 0.12;
    pointer-events: none;

    animation: leafFloat 6s ease-in-out infinite;

    z-index: 0;
} */
.gs-program-section::after {
    content: "";
    position: absolute;

    top: -40px;
    left: -60px;

    width: 320px;
    height: 320px;

    background: url("../images/wall-art.png") no-repeat center;
    background-size: contain;

    opacity: 0.12;
    pointer-events: none;

    animation: leafFloat 6s ease-in-out infinite;

    z-index: 0;
}

@keyframes leafFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0);
    }
}

.gs-program-section {
    background: linear-gradient(135deg,
            #f9f5ea 0%,
            #f3ead2 50%,
            #e8d7ae 100%);
    position: relative;
    overflow: hidden;
}

.gs-program-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, .25);
    border-radius: 50%;
    top: -250px;
    right: -150px;
}

/* LEFT */

.gs-badge {
    display: inline-block;
    background: #fff;
    color: #8a6a2f;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}

.gs-title {
    font-size: 50px;
    line-height: 1;
    font-weight: 800;
    color: #08653f;
    margin-bottom: 15px;
}

.gs-subtitle {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
}

.gs-text {
    color: #555;
    line-height: 1.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.gs-btn {
    display: inline-block;
    background: #08653f;
    color: #fff;
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.gs-btn:hover {
    background: #0f241c;
    color: #fff;
}

/* RIGHT */

.journey-wrapper {
    position: relative;
    padding-left: 70px;
}

.journey-line {
    position: absolute;
    left: 22px;
    top: 20px;
    width: 4px;
    height: 88%;
    background: #b38d4d;
    border-radius: 50px;
}

.journey-card {
    position: relative;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 24px;
    margin-bottom: 20px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, .08);
    transition: .35s;
}

.journey-card::before {
    content: "";
    position: absolute;
    left: -58px;
    top: 35px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #163127;
    border: 5px solid #fff;
}

.journey-card:hover {
    transform: translateX(12px);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, .12);
}

.phase-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    color: #b38d4d;
    font-weight: 700;
    /* margin-bottom:12px; */
}

.journey-card h4 {
    font-size: 20px;
    font-weight: bold;
    color: #08653f;
    /* margin-bottom:10px; */
}

.journey-card p {
    color: #666;
    margin: 0;
    line-height: 1.8;
}

.extended-care {
    border-left: 5px solid #b38d4d;
}

/* MOBILE */

@media(max-width:991px) {

    .gs-title {
        font-size: 48px;
    }

    .gs-subtitle {
        font-size: 24px;
    }

    .journey-wrapper {
        padding-left: 50px;
    }

}




/*  */


.fertility-cta-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;

    background:
        linear-gradient(rgba(23, 108, 61, .88),
            rgba(23, 108, 61, .88)),
        url('../images/book_appoinment.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.fertility-tag {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.fertility-cta-section h2 {
    color: #fff;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    max-width: 800px;
}

.fertility-cta-section p {
    color: rgba(255, 255, 255, .85);
    max-width: 700px;
    margin-top: 20px;
    font-size: 18px;
}

.fertility-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    background: #fff;
    color: #176c3d;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.fertility-btn:hover {
    transform: translateY(-3px);
    color: #176c3d;
}

@media(max-width:991px) {

    .fertility-cta-section {
        text-align: center;
        padding: 80px 0;
    }

    .fertility-cta-section h2 {
        font-size: 38px;
    }

    .fertility-btn {
        margin-top: 25px;
    }
}

/*  */
.fertility-lead-section {
    background: #dfeadc;
    padding: 80px 0;
}

.lead-wrapper {
    background: #fff;
    border-radius: 35px;
    padding: 40px;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, .08);
}

.lead-content h2 {
    font-size: 30px;
    font-weight: 800;
    color: #176c3d;
    line-height: 1.15;
    margin-bottom: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.benefit-item {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item i {
    /* width:32px;
    height:32px;
    background:#e8f5ec; */
    color: #176c3d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-image img {
    max-width: 320px;
    width: 100%;
}

.expert-image h4 {
    color: #176c3d;
    font-size: 15px;
    font-weight: 700;
    margin-top: 15px;
}

.consultation-form {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, .08);
}

.consultation-form h3 {
    color: #176c3d;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-control {
    height: 50px;
    border-radius: 18px;
    border: 1px solid #ddd;
    font-size: 16px;
    padding-left: 20px;
}

.submit-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 18px;
    background: #176c3d;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: .3s;
}

.submit-btn:hover {
    background: #125430;
}

.form-check-label {
    color: #666;
}

@media(max-width:991px) {

    .lead-wrapper {
        padding: 30px;
    }

    .lead-content h2 {
        font-size: 38px;
    }

    .consultation-form {
        margin-top: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.success-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: #e8f7ed;
    border: 1px solid #176c3d;
    color: #176c3d;
    border-radius: 10px;
    font-weight: 600;
}

@media(min-width:991px) {

    .Four_piller {
        width: 80vw;
        align-items: center;
    }

    .consultation-form {
        background: #fff;
        padding: 45px;
        border: 1px dashed green !important;
        border-radius: 30px;
        box-shadow:
            0 10px 40px rgba(0, 0, 0, .08);
    }

    .hero-section::before {

        background: #d8f4df;

    }
}

.lead-contents {
    background-image: url(../images/call\ us.webp);
    background-size: cover;
    width: 100%;
    height: 400px;
    border-radius: 10px;
}
/* / */
/* Section Title styling */

.gp-location-section{
    background-color: #08653f;
}
.gp-section-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 40px;
}
/* .gp-title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b8b, #4fc3f7);
    margin: 10px auto 30px;
    border-radius: 2px;
} */

/* Location Card Main Wrapper */
.gp-location-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Branch Title and Text */
.gp-branch-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}
.text-green{
    color: #08653f;
}
.gp-address-text {
    /* font-size: 0.95rem; */
    color: #555555;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* 100% Responsive Map Container */
.gp-map-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.gp-map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}