/*=====================================
        Treatment Hero
======================================*/

.sub-hero {
    position: relative;
    width: 100%;
    min-height: 460px;

    display: flex;
    align-items: center;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
    margin-bottom: 40px;
}
/* Light Green Overlay */

.sub-hero::before{

    content:"";

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(245,252,246,.98) 0%,
        rgba(240,250,242,.92) 22%,
        rgba(229,247,235,.70) 38%,
        rgba(225,245,232,.25) 52%,
        rgba(255,255,255,0) 68%
    );

}

/* Decorative Circle */

.sub-hero::after{

    content:"";

    position:absolute;

    width:620px;
    height:620px;

    left:42%;
    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:rgba(39,174,96,.08);

    filter:blur(8px);

}

.sub-hero .container{

    width:min(1400px,92%);
    margin:auto;

    position:relative;
    z-index:5;

}

.sub-hero-content{

    max-width:620px;

}

.breadcrumb{

    display:flex;
    flex-wrap:wrap;
    gap:10px;

    margin-bottom:28px;

    font-size:.95rem;

}

.breadcrumb a{

    color:#4d5965;
    text-decoration:none;

}

.breadcrumb span{

    color:#16884a;

}

.sub-hero h1{

    font-size:3.4rem;
    line-height:1.15;

    font-weight:550;

    color:#132847;

    margin-bottom:25px;

}

.sub-hero h1 span{

    display:inline;
    
    color:#16884a;

}

.sub-hero p{

    max-width:500px;

    font-size:1rem;

    line-height:1.9;

    color:#5d6873;

}
@media (max-width:768px){

    .sub-hero{
        min-height:440px;
        text-align:center;

        /* Center the hero image */
        background-position:85% center;
        background-size:cover;
    }

    .sub-hero-content{
        margin:auto;
    }

    .breadcrumb{
        justify-content:center;
    }

    .sub-hero h1{
        font-size:2.2rem;
    }

    .sub-hero p{
        margin:auto;
        font-size:1rem;
    }

    /* Remove the decorative circle */
    .sub-hero::after{
        display:none;
    }

    /* Make the overlay lighter so the image is visible */
    .sub-hero::before {
    background: rgba(239, 250, 241, 0.45);
}
}
/* --------------------------------------Treatment section----------------------------*/
/*====================================
        Treatment Overview
====================================*/

.treatment-overview{

    padding:40px 0;
    background:#fff;

}

.overview-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

}

.overview-image{

    position:relative;

}

.overview-image img{

    width:100%;
    border-radius:22px;
    display:block;
    height: 400px;

}


.section-tag{

    color:#16884A;

    font-weight:700;

    font-size:.9rem;

    letter-spacing:1px;

    text-transform:uppercase;

}

.overview-content h2{

    margin:15px 0 25px;

    font-size:2.1rem;

    line-height:1.2;

    color:#162A45;

}

.overview-content h2 span{

    color:#16884A;

}

.overview-text{

    color:#626D78;

    line-height:1.9;

    margin-bottom:35px;

}

.overview-features{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.feature-item{

    display:flex;
    gap:20px;
    align-items:flex-start;

}
.overview-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
  
}

.highlight-box{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 7px;
    background:#fff;
    border:1px solid #e7ecef;
    border-radius:16px;
    transition:.3s;
}

.highlight-box:hover{
    transform:translateY(-4px);
    border-color:#16884A;
    box-shadow:0 12px 30px rgba(22,136,74,.12);
}

.highlight-box i{
    width:50px;
    height:50px;
    background:#edf8f0;
    color:#16884A;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2rem;
}

.highlight-box h4{
    margin:0;
    font-size:1rem;
    color:#162A45;
    font-weight:550;
}


@media (max-width:992px){

.overview-grid{

    grid-template-columns:1fr;
    gap:50px;

}

.overview-content{

    text-align:center;

}

.overview-text{

    max-width:700px;
    margin:0 auto 35px;

}

.feature-item{

    text-align:left;

}

}

@media(max-width:768px){

.treatment-overview{

    padding:15px 0;

}

.overview-content h2{

    font-size:1.5rem;

}
.overview-image img{

    width:100%;
    border-radius:22px;
    display:block;
    height: 230px;

}


.overview-highlights{
        grid-template-columns:1fr;
    }


}

/*---------------------------------------Treatment procedure-------------------------------------------*/
.treatment-process{

    padding:30px 0 40px;
    background:#f8fbf9;

}

.timeline{

    position:relative;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:30px;

}

.timeline-line{

    position:absolute;

    top:50%;

    left:0;

    width:100%;

    height:3px;

    background:#16884A;

    transform:translateY(-50%);

}
/*=========================
      Step Number
=========================*/

.step{

    position:absolute;

    width:32px;
    height:32px;

    border-radius:50%;

    background:#16884A;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:.82rem;
    font-weight:700;

    left:50%;
    transform:translateX(-50%);

    z-index:10;

    border:3px solid #fff;

    box-shadow:0 8px 20px rgba(22,136,74,.18);

}

/* Cards above the line */

.timeline-item.top .step{

    bottom:-76px;

}

/* Cards below the line */

.timeline-item.bottom .step{

    top:-76px;

}
.timeline-item{

    position:relative;

    display:flex;

}

.timeline-item.top{

    align-items:flex-start;

    padding-bottom:150px;

}

.timeline-item.bottom{

    align-items:flex-end;

    padding-top:150px;

}

.timeline-card{

    position:relative;

    background:#fff;

    border-radius:20px;

    padding:20px 20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    text-align:center;

}

.timeline-card:hover{
    transform: translateY(-8px);
    border-color: #16884A;
    box-shadow:
        0 20px 45px rgba(22,136,74,.18),
        0 0 0 2px rgba(22,136,74,.12),
        0 0 18px rgba(22,136,74,.28),
        0 0 35px rgba(22,136,74,.15);
}
.timeline-card::after{

    content:"";

    position:absolute;

    left:50%;

    width:2px;

    background:#16884A;

    transform:translateX(-50%);

}

.timeline-item.top .timeline-card::after{

    bottom:-76px;

    height:76px;

}

.timeline-item.bottom .timeline-card::after{

    top:-76px;

    height:76px;

}

.timeline-card i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto auto 20px;

    border-radius:50%;

    background:#eef8f1;

    color:#16884A;

    font-size:28px;

}

.timeline-card h3{

    color:#162A45;

    margin-bottom:15px;

    font-size:1.2rem;

}

.timeline-card p{

    color:#68737d;

    line-height:1.8;

}
@media (max-width:992px){

    .timeline{
        grid-template-columns:1fr;
    }

    .timeline-line{
        display:none;
    }

    .timeline-item{
        padding:0 !important;
    }

    .timeline-card::after{
        display:none;
    }

    .timeline-card{
        margin-bottom:10px;
    }

    /* Hide the step number on mobile */
    .timeline-card .step{
        display:none;
    }

}
/* ==========================
   SECTION HEADING
========================== */

.section-heading{
    max-width: 750px;
    margin: 0 auto 20px;
    text-align: center;
}

.section-heading span{
    display: inline-block;
    padding: 8px 18px;
    background: #dff7e8;
    color: #198754;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-heading h2{
    font-size: 2.4rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 18px;
}

.section-heading p{
    font-size: 1.02rem;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
}

/* Tablet */
@media (max-width:991px){

    .section-heading{
        margin-bottom:50px;
    }

    .section-heading h2{
        font-size:2.3rem;
    }

    .section-heading p{
        font-size:1rem;
    }

}

/* Mobile */
@media (max-width:576px){

    .section-heading{
        margin-bottom:40px;
        padding:0 10px;
    }

    .section-heading span{
        font-size:12px;
        padding:7px 15px;
    }

    .section-heading h2{
        font-size:1.9rem;
    }

    .section-heading p{
        font-size:0.95rem;
        line-height:1.7;
    }

}
/*-----------------------------------------------Why choose us------------------------------------*/

/*-------------------------------
    Personalized Care Section
--------------------------------*/

.personalized-care{
    padding:40px 0;
}

.care-content{
    background:#f4fbf6;
    border-left:5px solid #2f9d61;
    border-radius:16px;
    padding:35px 40px;
}

.care-tag{
    display:inline-block;
    background:#e8f7ee;
    color:#2f9d61;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.care-content h2{
    font-size:28px;
    color:#1f2937;
    margin-bottom:15px;
}

.care-content p{
    max-width:850px;
    color:#5b6470;
    font-size:16px;
    line-height:1.8;
    margin:0;
}

/* Tablet */

@media (max-width:992px){

.care-content{
    padding:30px;
}

.care-content h2{
    font-size:28px;
}

}

/* Mobile */

@media (max-width:576px){

.personalized-care{
    padding:40px 0;
}

.care-content{
    padding:22px;
    border-left:4px solid #2f9d61;
}

.care-tag{
    font-size:12px;
}

.care-content h2{
    font-size:22px;
}

.care-content p{
    font-size:14px;
    line-height:1.7;
}

}
/*----------------------------------------------------FAQ-------------------------------------->
/* FAQ */

.faq-section{
    padding:30px 0;
    background:#fff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:35px;
}

.section-title h2{
    font-size:30px;
    color:#02511a;
    margin-bottom:12px;
    font-weight:650;
}

.section-title p{
    color:#555454;
    font-size:16px;
    max-width:650px;
    margin:auto;
    line-height:1.7;
}

.faq{
    background:#fff;
    border-radius:14px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    overflow:hidden;
}

.faq-item{
    border-bottom:1px solid #e8e8e8;
}

.faq-item:last-child{
    border-bottom:none;
}

.faq-question{
    width:100%;
    background:#fff;
    border:none;
    outline:none;
    cursor:pointer;
    padding:23px 26px;
    font-size:17px;
    font-weight:600;
    color:#222;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:.3s;
}

.faq-question:hover{
    background:#f8fbf8;
}

.faq-question span{
    font-size:26px;
    color:#3FA34D;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    background:#fafafa;
}

.faq-answer p{
    padding:0 28px 22px;
    color:#666;
    line-height:1.8;
    font-size:15px;
}

.faq-item.active .faq-answer{
    max-height:220px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}
@media (max-width:992px){

    .faq-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:30px;
    }

}

@media (max-width:768px){

    .faq-section{
        padding:20px 0;
    }

    .section-title h2{
        font-size:28px;
    }

    .section-title p{
        font-size:15px;
    }

    .faq-question{
        padding:18px 20px;
        font-size:16px;
    }

    .faq-answer p{
        padding:0 20px 18px;
        font-size:14px;
    }

}

@media (max-width:576px){

    .section-title h2{
        font-size:24px;
    }

    .faq-question{
        font-size:15px;
        line-height:1.5;
        align-items:flex-start;
        gap:10px;
    }

    .faq-question span{
        font-size:22px;
    }

    .faq-answer p{
        font-size:14px;
        line-height:1.7;
    }

}
/*==========================
   Appointment CTA
===========================*/

.appointment-cta{
    padding:20px 0;
    background:#ffffff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.cta-box{
    background:#d0edcf;
    border:1px solid #e8ece9;
    border-radius:16px;
    padding:18px 30px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;

    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.cta-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.cta-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#eaf7ec;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#0b8f3d;
    font-size:26px;
}

.cta-content h3{
    font-size:21px;
    color:#1f2937;
    margin-bottom:6px;
    font-weight:650;
}

.cta-content p{
    color:#666;
    font-size:15px;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 28px;

    background:#0b8f3d;
    color:#fff;
    text-decoration:none;

    border-radius:8px;
    font-size:15px;
    font-weight:600;

    transition:.3s;
}

.cta-btn:hover{
    background:#066d2d;
    transform:translateY(-2px);
}

.cta-btn i{
    font-size:15px;
}

/* Tablet */

@media(max-width:768px){

    .appointment-cta{
        padding:10px 0;
    }

    .cta-box{
        flex-direction:column;
        align-items:flex-start;
        padding:14px;
    }

    .cta-btn{
        width:95%;
        justify-content:center;
    }

}

/* Mobile */

@media(max-width:576px){

    .cta-left{
        flex-direction:column;
        text-align:center;
        width:100%;
    }

    .cta-content h3{
        font-size:20px;
    }

    .cta-content p{
        font-size:14px;
    }

    .cta-box{
        text-align:center;
    }

    .cta-btn{
        width:95%;
        padding:6px;
    }

}