/* gallery  */

.gallery-section .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    margin-bottom: 20px;
}

.gallery-section .gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-section .gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-section .gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-section .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-section .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-section .view-btn {
    padding: 6px 20px;
    background: #fff;
    color: var(--primary);
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-section .view-btn:hover {
    background: #343a40;
    color: #fff;
}