/* IoT Logo Carousel – works with scrollLeft animation */
.iot-logo-carousel {
    display: flex;
    align-items: center;
    gap: 30px;
    /* must match your JS gap assumption if you use one */
    overflow-x: scroll;
    /* programmatic scrolling must be enabled */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    scrollbar-width: none;
    /* hide scrollbar in Firefox */
}

/* hide scrollbar in WebKit */
.iot-logo-carousel::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.iot-logo-carousel img {
    height: 50px;          /* fixed uniform height for all logos */
    width: auto;           /* maintain aspect ratio */
    object-fit: contain;   /* ensures entire logo is visible inside its box */
    flex-shrink: 0;        /* prevent images from shrinking */
    user-select: none;
    transition: transform 0.2s ease;
}

.iot-logo-carousel img:hover {
    transform: scale(1.05);
}