/*
 * Brilliantsors Elements - Widget Styles
 * Add your custom CSS here if the theme doesn't provide them.
 */

/* Force all Brilliantsors custom widgets to be full-width screen-wide */
.elementor-widget[data-widget_type^="brilliantsors_"] {
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}

/* Ensure no horizontal scrolling happens from the 100vw trick */
html,
body {
    overflow-x: hidden;
}

/* Testimonial Slider */
.bs-testimonial-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.bs-testimonial-slider {
    overflow: hidden;
    width: 100%;
}

.bs-testimonial-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    margin: 0;
    padding: 0;
}

.bs-testimonial-slide {
    padding: 15px;
    box-sizing: border-box;
}

.bs-slider-prev,
.bs-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bs-slider-prev:hover,
.bs-slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.bs-slider-prev {
    left: 0;
}

.bs-slider-next {
    right: 0;
}

.bs-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.bs-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.bs-slider-dot.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}