.image-carousel-wrapper {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 30px 0;
}

.image-carousel-track {
    display: flex;
    gap: 50px;
    transition: transform 0.8s linear;   /* Linear for smooth rolling feel */
    will-change: transform;
}

/* Fixed Container */
.image-container {
    width: 300px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.image-container img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    display: block;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.8);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    display: none !important;
}

.carousel-btn:hover {
    background: rgba(15, 23, 42, 1);
}

.prev-btn { left: -15px; }
.next-btn { right: -15px; }