.marquee-logo-container {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap; /* Ensures the content stays in a single line */
    animation: marquee 15s linear infinite; /* Speed of the loop */
    align-items: center;
}

.marquee-logo-container img,
.marquee-logo-container .marquee-text {
    margin-right: 50px; /* Spacing between items */
    padding: 0 10px; /* Optional: internal padding */
}

.marquee-logo-container img {
    height: auto;
    width: 120px; /* Set the width of your logos */
}

.marquee-logo-container .marquee-text {
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
}

/* Duplicate the content for seamless looping */
.marquee-logo-container .duplicate {
    display: flex;
    flex-wrap: nowrap;
}

/* Keyframes for continuous scrolling */
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* For the duplicate container to make the loop seamless */
.marquee-logo-container {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.marquee-logo-container > .duplicate {
    display: flex;
    flex-wrap: nowrap;
}
