.image-container {
    width: 100%;
    height: 200px;
    aspect-ratio: 1 / 1; /* Makes the image square */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Soft grey shadow */
    overflow: hidden; /* Prevents overflow when image scales */
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}

.image-container:hover img {
    transform: scale(1.1); /* Slight zoom-in effect */
}
