.life-at-college {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    padding: 10px;
}

.life-at-college-item {
    position: relative;
    overflow: hidden;
}

.life-at-college-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.life-at-college-item img:hover {
    transform: scale(1.1);
}



.committee-member {
    height: 100%;
    border: none;
    overflow: hidden;
}

.member-photo {
    width: 100%;
    border-radius: 20px;
    height: auto;
}

.member-title {
    font-size: 15px;
    color: #000000;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
}

.member-name {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}

.member-desi {
    font-size: 12px;
    font-weight: 400;
    color: #444444;
    text-align: center;
    margin-bottom: 0;
}


/* facilities and infrastructure card */
.card-img-top {
    border-radius: 20px 20px 0px 0px;
}

.card {
    border-radius: 20px;
}

.card-text {
    text-align: center;
    color: #0D617A;
    font-weight: 600;
    font-size: 20px;
    padding: 8px 8px;
}

.card:hover {
    transform: scale(1.03, 1.03);
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(1.03, 1.03);
    -webkit-transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* status-quo */

.status-box {
    text-align: center;
    padding: 10px 15px;
    height: max-content;
    height: 100%;
    background: #0D617A;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.3px);
    -webkit-backdrop-filter: blur(6.3px);
    border: 1px solid rgba(95, 159, 182, 0.3);

}

.status-head {
    color: #ffff;
    font-size: 28px;
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 10px;
}

.status-paragraph {
    color: #ffff;
    font-size: 26px;
    font-weight: 500;
}

.status-box:hover {
    transform: scale(1.03, 1.03);
    transition: all 0.3s ease-in-out;
    -webkit-transform: scale(1.03, 1.03);
    -webkit-transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 992px) {
    .status-head {
        font-size: 26px;
    }

    .status-paragraph {
        font-size: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .status-head {
        font-size: 24px;
    }

    .status-paragraph {
        font-size: 22px;
    }
}

@media only screen and (max-width: 576px) {
    .status-head {
        font-size: 22px;
    }

    .status-paragraph {
        font-size: 20px;
    }
}