/* Disease Css Section */
.disease-section{
    background: #f8fbff;
}
.disease-heading span{
    color: #0b3b91;
    font-weight: 600;
    letter-spacing: 1px;
}
.disease-heading h2{
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
}
.disease-heading p{
    color: #64748b;
    max-width: 700px;
    margin: auto;
}
.disease-card{
    background: #fff;
    border-radius: 24px;
    padding: 35px 25px;
    height: 100%;
    transition: 0.4s ease;
    border: 1px solid #edf2f7;
    position: relative;
    overflow: hidden;
}
.disease-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}
.disease-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #0b3b91;
}
.icon-box{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11,59,145,0.08);
    margin: auto auto 20px;
}
.icon-box i{
    font-size: 40px;
    color: #0b3b91;
}
.disease-card h4{
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}
.disease-card p{
    color: #64748b;
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 25px;
}
.read-more-btn{
    background: #0b3b91;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    transition: 0.4s ease;
}
.read-more-btn:hover{
    background: #082d6d;
    color: #fff;
    transform: scale(1.03);
}

@media (max-width: 991px){

    .disease-heading h2{
        font-size: 34px;
    }

    .disease-card{
        padding: 30px 22px;
    }

}

@media (max-width: 768px){

    .disease-heading h2{
        font-size: 28px;
    }

    .disease-card{
        text-align: center;
    }

    .disease-card h4{
        font-size: 22px;
    }

    .read-more-btn{
        width: 100%;
    }

}
.hover-card{
    transition: 0.4s ease;
}
.hover-card:hover{
    transform: translateY(-8px);
}
.icon-box{
    width: 90px;
    height: 90px;
    background: rgba(11,59,145,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}