﻿/* Container to fix image height */
.card-img-container 
{
    height: 400px; /* Fixed height for all images */
    overflow: hidden; /* Crop overflow */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-top 
{
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio and crop */
}
