body {
    font-family: Arial, sans-serif;
}

.hero {
    background: url("../images/hero-bg.png") center/cover no-repeat;
    color: white;
    text-align: center;


}

.service-card img {
    height: 200px;
    object-fit: cover;
}

.doctor-card img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.hp {
    background-color: #0e254e;
    height: 50px;
}

.htp {
    background: url("../images/hero-bg.png") center/cover no-repeat;
}

.dent {
    font-size: 30px;
    font-weight: bold;
}

.color {
    color: #365ED9;
    font-weight: bold;
    font-size: 40px;
}

.span {
    color: #365ED9;
    font-weight: bold;
    font-size: 30px;
}

.best {
    font-weight: bold;
    font-size: 60px;
    background: url("../images/hero-bg.png");
}

.img-container {
    margin: 10px;
    text-align: center;
}

.img-container img {
    max-width: 100%;
    height: auto;
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.img-container img{
    color: white;
    
}
.cont{
    height: 180px;
    width: 180px;
    background-color: #0e254e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}
.cont:hover{
    background-color: white;
    border: 1px solid #0e254e ;
    cursor: pointer;
}
.about{
    border: 1px solid  #0e254e;
    border-radius: 10px;
    padding: 10px;
    
}
.about span {
    display: inline-block; /* or display: block; */
    margin-top: 10px;  /* Adjust the value as needed */
    margin-bottom: 10px;
}
.gd{
    background: url("../images/hero-bg.png") center/cover no-repeat;
}
.image-container {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
    /* border: 2px solid #0e254e; */
}
.must{
     border: 2px solid #0e254e;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.image-container:hover img {
    transform: scale(1.1);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}
.image-container:hover .overlay {
    opacity: 1;
    
}
.overlay h4, .overlay p {
    margin: 0;
}
.bor{
   box-shadow: 5px 10px 15px rgba(10, 64, 115, 0.5); 
}

