﻿.reer-heading {
    font-family: "Heebo", sans-serif;
    font-weight: 700;
    color: #B62E27;
    margin-bottom: 1.5rem !important;
}

.reer-para {
    font-family: "Heebo", sans-serif;
    font-size: 1rem;
    font-weight:400;
    line-height: 1.5;
    color: #666565;
    margin: 0;
    margin-bottom: 1rem;
    text-align: center;
}

.facility-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .facility-card:hover {
        transform: scale(1.0);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .facility-card img {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        max-height: 250px;
        object-fit: cover;
        width: 100%;
    }

    .facility-card .card-body {
        padding: 1.5rem;
    }

    .facility-card ul li {
        color: #666565;
        margin-bottom: 8px;
    }
.custom-card {
    border-left: 6px solid orange;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    background: #fff;
}

    .custom-card:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .custom-card ul {
        padding-left: 18px;
    }

        .custom-card ul li {
            color: #666565;
            margin-bottom: 6px;
        }

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: scale(1.02); 
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* optional shadow on hover */
    }
img.img-fluid {
    max-width: 100%;
    height: auto;
    display: block; /* removes inline gaps */
}

@media (max-width: 575px) {
    .img-fluid {
        display: block;
        margin: 0 auto 30px auto; 
    }
}

