.treatments-hero{
    height:300px;
    width: 100%;
    background:url("../images/condition-banner.jpg");
    background-size:cover;
    background-position:center;
}
 .treatment-overlay{
    width: 100%;
    height: 100%;
    background:linear-gradient(
        90deg,
        rgba(8,54,126,.92) 0%,
        rgba(8,54,126,.75) 40%,
        rgba(8,54,126,.10) 100%
    );
    display: flex;
    align-items: center;
 }
.treatment-content{
    padding-left:90px;
    color:#fff;
}

.treatment-content h1{
    font-size:65px;
    margin-bottom:20px;
}
.treatment-content p{
    width:500px;
    line-height: 1.8;
    font-size: 20px;
    margin-bottom: 30px;
}

.breadcrumb{
    display:flex;
    gap:12px;
    align-items: center;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
}

.breadcrumb.active{
    color:#22c55e;
}
.treatments-hero{
    height:350px;
    background:url("../images/treatment-banner.jpg");
    background-size:cover;
    background-position:center;
}

.treatments-section{
    padding:80px 6%;
    background:linear-gradient(180deg,
    #eef7ff,
    #ffffff)!important
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading span{
    color:#1fa15d;
    font-weight:700;
}

.section-heading h2{
    font-size:50px;
    color:#0b3d91;
    margin:15px 0;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
}
.can{
    text-align: center;
    color:#1fa15d;
    font-size: 50px;
    margin-bottom: 20px;
    font-style:normal;
    
}
.mfr{
    text-align: center;
    color:#1fa15d;
    font-size: 50px;
    margin-bottom: 20px;
    font-style:normal;
    margin-top: 20px;
}
.physiotherapy{
    text-align: center;
    color:#1fa15d;
    font-size: 50px;
    margin-bottom: 20px;
    margin-top: 20px;
    font-style:normal;
}

.treatments-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.treatment-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.treatment-card img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

.treatment-card h3{
    color:#0b3d91;
    margin-bottom:10px;
}

.treatment-card p{
    color:#555;
    line-height:1.7;
    margin-bottom:15px;
}

.treatment-card a{
    text-decoration:none;
    color:#1fa15d;
    font-weight:600;
}

.treatment-cta{
    margin:60px 6%;
    padding:35px 50px;
    border-radius:20px;

    background:linear-gradient(
    90deg,
    #11994d,
    #0b3d91
    );

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cta-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.cta-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#fff;

    display:flex;
    justify-content:center;
    align-items:center;
}

.cta-icon i{
    color:#11994d;
    font-size:30px;
}

.cta-text h2,
.cta-text p{
    color:#fff;
}

.book-btn,
.whatsapp-btn{
    padding:15px 30px;
    background:#fff;
    color:#0b3d91;
    border-radius:10px;
    text-decoration:none;
    margin-left:15px;
    font-weight:600;
}

/* =========================
   TABLET (1024px)
========================= */
@media (max-width:1024px){

    .treatment-content{
        padding-left:50px;
    }

    .treatment-content h1{
        font-size:50px;
    }

    .treatments-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .treatment-cta{
        flex-direction:column;
        text-align:center;
        gap:25px;
    }
    .info-card{
        height: 100%;
    }
}


/* =========================
   MOBILE (768px)
========================= */
@media (max-width:768px){

    .treatments-hero{
        height:auto;
        min-height:280px;
    }

    .treatment-content{
        padding:30px 20px;
        text-align:center;
    }

    .treatment-content h1{
        font-size:38px;
    }

    .breadcrumb{
        justify-content:center;
        flex-wrap:wrap;
    }

    .section-heading h2{
        font-size:32px;
    }

    .can,
    .physiotherapy,
    .mfr{
        font-size:32px;
    }

    .treatments-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .treatment-card{
        padding:20px;
    }

    .treatment-card img{
        width:100px;
        height:100px;
    }

    .treatment-cta{
        flex-direction:column;
        text-align:center;
        padding:25px 20px;
        gap:20px;
    }

    .cta-left{
        flex-direction:column;
    }

    .cta-buttons{
        display:flex;
        flex-direction:column;
        width:100%;
        gap:10px;
    }

    .book-btn,
    .whatsapp-btn{
        width:100%;
        margin-left:0;
        text-align:center;
    }
}


/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width:480px){

    .treatment-content h1{
        font-size:30px;
    }

    .section-heading h2{
        font-size:26px;
    }

    .can,
    .physiotherapy,
    .mfr{
        font-size:24px;
    }

    .treatments-grid{
        grid-template-columns:1fr;
    }

    .treatment-card img{
        width:90px;
        height:90px;
    }

    .cta-icon{
        width:60px;
        height:60px;
    }

    .cta-icon i{
        font-size:22px;
    }

    .cta-text h2{
        font-size:22px;
    }
}