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

/* CAROUSEL */
.slider-image {
    height: 100vh;
    object-fit: cover;
    filter: brightness(60%);
}

.carousel-caption {
    bottom: 30%;
}

/* INFO BOX */
.info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box i {
    font-size: 40px;
    color: #0d6efd;
}

/* SERVICES */
.service-card {
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    font-size: 50px;
    color: #0d6efd;
}

/* GALLERY */
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* DOCTORS */
.doctor-card img {
    height: 350px;
    object-fit: cover;
}

/* CONTACT */
.contact-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

/* RESPONSIVE */
@media(max-width: 768px) {

    .slider-image {
        height: 70vh;
    }

    .carousel-caption h1 {
        font-size: 35px;
    }

}