
/* ========================================
   MODERN AUTO SCROLL GALLERY
======================================== */

.gallery-section {
    overflow: hidden;
}

.gallery-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}

.gallery-track {

    display: flex;
    gap: 24px;

    width: max-content;

    animation: galleryScroll 35s linear infinite;
}

.gallery-slider:hover .gallery-track {
    animation-play-state: paused;
}

.gallery-card {

    width: 420px;
    height: 280px;

    overflow: hidden;

    border-radius: 24px;

    flex-shrink: 0;

    box-shadow: 0 18px 40px rgba(0,0,0,.15);

    transition: .35s ease;
}

.gallery-card:hover {

    transform: translateY(-8px);

}

.gallery-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .4s;
}

.gallery-card:hover img {

    transform: scale(1.08);

}

@keyframes galleryScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

/* Mobile */

@media(max-width:768px){

    .gallery-card{

        width:280px;
        height:190px;

    }

}

