.doctor-profile-section{
    overflow:hidden;
    padding: 40px;
}

.doctor-image{
    height:100%;
}

.doctor-image img{
    width:100%;
    height:100%;
   border-top-left-radius: 15px;
    min-height:300px;
    object-fit:cover;
    display:block;
}

.doctor-header{
    background:#4f68b5;
    color:#fff;
    padding:90px 60px;
    height:100%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    display:flex;
    justify-content:center;
    flex-direction:column;
}
@media(max-width:991px){

    /* .doctor-profile-section{
        padding:30px 20px;
    } */

    .doctor-header{
       border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    }
    .doctor-header h2{
        font-size:18px;
        text-align:start;

    }
    .doctor-header p{
        font-size:12px;
        text-align:start;
    }

}

.doctor-header h2{
    font-size:35px;
    font-weight:700;
    margin-bottom:15px;
}

.doctor-header h5{
    font-size:28px;
    margin-bottom:15px;
}

.doctor-header p{
    font-size:20px;
    margin:0;
}

.doctor-sidebar{
    background:#eef1f7;
    padding:50px;
    height:100%;
}

.doctor-sidebar h3{
    color:#173960;
    font-size:34px;
    font-weight:700;
    margin-bottom:25px;
}

.doctor-sidebar ul{
    padding-left:20px;
}

.doctor-sidebar ul li{
    margin-bottom:15px;
    font-size:19px;
    line-height:1.7;
}

.doctor-content{
    padding:60px;
    background:#fff;
    height:100%;
}

.doctor-content p{
    font-size:20px;
    line-height:1.9;
    color:#222;
    margin-bottom:30px;
}

@media(max-width:991px){

    .doctor-header{
        padding:50px 30px;
        text-align:center;
    }

    
    .doctor-header h5{
        font-size:24px;
    }

    .doctor-sidebar,
    .doctor-content{
        padding:35px 25px;
    }

    .doctor-sidebar h3{
        font-size:28px;
    }

}

@media(max-width:576px){

    .doctor-header h2{
        font-size:30px;
    }

    .doctor-header h5{
        font-size:20px;
    }

    .doctor-content p,
    .doctor-sidebar ul li{
        font-size:16px;
    }

}