
.gallery-container {
    padding: 60px 0;
}
.gallery-item {
    position: relative;
    padding: 5px;
}
.gallery-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}
.gallery-item:hover .image-overlay {
    opacity: 1;
    visibility: visible;
}
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
.overlay-text {
    color: white;
    text-align: center;
    padding: 20px;
}
