.image-wrapper {
    width: 300px;
    height: 200px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.image-wrapper:hover .gallery-img {
    transform: scale(1.05);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s ease;
    font-size: 2rem;
}
.image-wrapper:hover .overlay {
    opacity: 1;
}
.btn-custom{
    background: rgba(0,0,0,0.5);
}

.image-wrapper2 {
    width: 250px;
    height: 350px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-img2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.image-wrapper2:hover .gallery-img2 {
    transform: scale(1.05);
}
.overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s ease;
    font-size: 2rem;
}
.image-wrapper2:hover .overlay2 {
    opacity: 1;
}

#modalImage {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


