/* Mediclaim Slider */
.mediclaim-section {
    background-color: var(--white);
    padding: 4rem 0;
    overflow: hidden;
}

.mediclaim-slider {
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.mediclaim-track {
    display: flex;
    width: calc(250px * 16 * 2);
    /* Width x Number of Logos x 2 (for duplication) */
    animation: scroll 40s linear infinite;
}

.mediclaim-slide {
    height: 100px;
    width: 250px;
    /* Fixed width for standard sizing */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.mediclaim-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Removed grayscale */
    transition: var(--transition);
}

/* Hover effect removed */

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 16));
        /* Scroll by width of one set */
    }
}