
.gallery-container {
    padding: 40px;
}
.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 0px;
    transition: transform 0.3s ease-in-out, z-index 0s 0.03s;
    position: relative;
    z-index: 1; /* Default */
}
.gallery-item:hover {
    transform: scale(1.5);
    z-index: 10; /* Bring hovered image to the top */
}
.gallery-item img {
    width: 100%;
    height: 75%;
    border-radius: 10px;
    cursor: pointer;
}

@media (max-width: 1000px) {
    .gallery-container .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
}

    .gallery-container img {
        width: 100%;
        height: auto;
        display: block;
    }
}
