body {
    background-color: #f8f9fa;
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.gallery-title {
    text-align: center;
    font-weight: 600;
    margin: 30px 0;
    /* color: #5a2ca0; */
}