/* Gallery Custom Styles */
.gallery-style-one {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-style-one:hover {
    transform: translateY(-5px);
}

.gallery-style-one .thumb {
    position: relative;
    height: 300px;
}

.gallery-style-one .thumb img,
.gallery-style-one .thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-style-one .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #4BA761;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-style-one:hover .play-button {
    background: #4BA761;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Remove default theme overlay as requested */
.gallery-style-one .overlay {
    display: none !important;
}