/* Logos Marquee Widget Styles */
.c-carousel {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.c-carousel__wrapper.swiper {
    position: static;
}

.c-carousel__inner-wrapper.swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear !important;
}

.c-carousel img {
    margin: 0 auto;
    height: 50px;
    width: auto;
    display: block;
}

.c-carousel__controls {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.c-carousel__button--next,
.c-carousel__button--prev {
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.c-carousel__button--next:hover,
.c-carousel__button--prev:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.c-carousel__button--prev.swiper-button-disabled,
.c-carousel__button--next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.c-carousel__item.swiper-slide {
    width: auto;
    flex-shrink: 0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-carousel__item.swiper-slide:hover {
    /* transform: scale(1.05); */
}

.elementor-logos-marquee-image {
    width: auto;
}

.elementor-logos-marquee-image:hover {
    /* opacity: 0.85; */
} 