﻿<style >
.scrolling-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scrolling-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll linear infinite;
    animation-duration: 40s; /* Adjust this value to control speed */
    padding-right: 100%; /* Ensure space for continuous scrolling */
}

.scrolling-img {
    display: inline-block;
    height: 150px;
    width: 150px;
    object-fit: cover;
    margin: 0 15px;
    transition: transform 0.2s;
}

    .scrolling-img:hover {
        transform: scale(1.1);
        cursor: pointer;
        animation-play-state: paused;
    }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%); /* Move by half the content width */
    }
}

</style >
