/* _content/Meritinsurance/Components/Custom/Clients-Slider.razor.rz.scp.css */
@keyframes scroll-b-fx1sau4356 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7)); /* Half the duplicated items */
    }
}

/* Section Styling */
.clients-section[b-fx1sau4356] {
    padding: 5px;
}

.section-title[b-fx1sau4356] {
    color: #020259;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-description[b-fx1sau4356] {
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Slider Container */
.slider-container[b-fx1sau4356] {
    position: relative;
}

/* Main Slider */
.slider[b-fx1sau4356] {
    background: white;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 130px;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

/* Fade Effect on Edges */
.slider[b-fx1sau4356]::before, .slider[b-fx1sau4356]::after {
    content: "";
    height: 130px;
    position: absolute;
    width: 150px;
    z-index: 2;
}

.slider[b-fx1sau4356]::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider[b-fx1sau4356]::before {
    left: 0;
    top: 0;
}

/* Animation Track */
.slider .slide-track[b-fx1sau4356] {
    animation: scroll-b-fx1sau4356 40s linear infinite;
    display: flex;
    width: fit-content;
}

/* Pause animation on hover */
.slider:hover .slide-track[b-fx1sau4356] {
    animation-play-state: paused;
}

/* Individual Slides */
.slider .slide[b-fx1sau4356] {
    height: 140px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.slider .slide img[b-fx1sau4356] {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.slider .slide:hover img[b-fx1sau4356] {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .slider[b-fx1sau4356] {
        height: 100px;
    }
    
    .slider[b-fx1sau4356]::before, .slider[b-fx1sau4356]::after {
        height: 100px;
        width: 100px;
    }
    
    .slider .slide[b-fx1sau4356] {
        height: 100px;
        width: 170px;
    }
    
    .slider .slide img[b-fx1sau4356] {
        max-height: 90px;
    }
}

@media (max-width: 576px) {
    
    .section-title[b-fx1sau4356] {
        font-size: 1.5rem;
    }
    
    .slider[b-fx1sau4356] {
        height: 100px;
    }
    
    .slider[b-fx1sau4356]::before, .slider[b-fx1sau4356]::after {
        height: 100px;
        width: 60px;
    }
    
    .slider .slide[b-fx1sau4356] {
        height: 100px;
        width: 140px;
    }
    
    .slider .slide img[b-fx1sau4356] {
        max-height: 80px;
    }
}
/* _content/Meritinsurance/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-4qmnmofcul] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-4qmnmofcul] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
