﻿.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%; /* Initial offset to start offscreen */
    animation: marquee 20s linear infinite;
}

.marquee-card {
    display: inline-block;
    max-width: 200px;
    width: 200px;
    max-height: 150px;
    height: 150px;
    margin-right: 10px;
    background-color: transparent;
    border: 1px solid #ccc;
    text-align: center;
}
.marquee-cardImage {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    object-fit: inherit;
    transition: transform 0.3s ease-in-out;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%); /* Moves content fully to the left */
    }
}
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}