﻿.gallery-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* change this to 1 for single image per row */
    gap: 20px;
    padding: 20px;
}

.gallery-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
    .gallery-card img {
        width: 100%;
        height: 400px; /* adjust as needed */
        object-fit: cover; /* crops edges but keeps aspect ratio */
        display: block;
    }
.gallery-caption {
    padding: 15px;
    font-size: 16px;
    text-align: center;
    color: #333;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
