.bc-wrapper-2ec6b037 {
    width: 100%;
    position: relative;
    padding: 0 40px; /* Space for arrows */
}

.bc-carousel-2ec6b037 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    scroll-behavior: smooth;
}

.bc-carousel-2ec6b037::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.bc-card-2ec6b037 {
    flex: 0 0 calc(25% - 15px); /* 4 items on desktop minus gaps */
    scroll-snap-align: start;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-size: cover;
    background-position: center center;
    background-color: #333;
}

.bc-card-overlay-2ec6b037 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.5;
    z-index: 1;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.bc-card-content-2ec6b037 {
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bc-card-title-2ec6b037 {
    margin: 0 0 10px 0;
    font-size: 22px;
    font-weight: 700;
}

.bc-card-desc-2ec6b037 {
    margin: 0 0 20px 0;
    font-size: 15px;
    line-height: 1.5;
}

.bc-card-btn-2ec6b037 {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.bc-card-btn-2ec6b037:hover {
    transform: translateY(-2px);
}

/* Navigation Arrows */
.bc-nav-btn-2ec6b037 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #fff;
    color: #000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s, color 0.3s;
}

.bc-nav-btn-2ec6b037:hover {
    background-color: #f0f0f0;
}

.bc-prev-2ec6b037 {
    left: 0;
}

.bc-next-2ec6b037 {
    right: 0;
}

/* Base state for all arrows to be hidden if logic fails to apply */
.bc-nav-btn-2ec6b037 {
    display: none;
}

/* Arrow Visibility Controls */
.bc-arrows-2ec6b037-all .bc-nav-btn-2ec6b037,
.bc-arrows-2ec6b037-desktop .bc-nav-btn-2ec6b037 {
    display: flex;
}

.bc-arrows-2ec6b037-mobile .bc-nav-btn-2ec6b037 {
    display: none;
}

/* Ensure 'none' class overrides everything */
.bc-arrows-2ec6b037-none .bc-nav-btn-2ec6b037,
body .elementor-widget-benefit_carousel_2ec6b037.bc-arrows-2ec6b037-none .bc-nav-btn-2ec6b037 {
    display: none !important;
}
.bc-arrows-2ec6b037-none .bc-wrapper-2ec6b037 {
    padding: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .bc-card-2ec6b037 {
        flex: 0 0 calc(50% - 10px); /* 2 items on tablet */
    }
}

@media (max-width: 767px) {
    .bc-card-2ec6b037 {
        flex: 0 0 85%; /* 1 item on mobile */
        scroll-snap-align: center;
    }
    
    .bc-wrapper-2ec6b037 {
        padding: 0; /* Remove side padding on mobile */
    }

    .bc-carousel-2ec6b037 {
        padding-left: 20px;
        padding-right: 20px;
        scroll-padding: 20px;
    }
    
    .bc-prev-2ec6b037 {
        left: 0; /* Align left edge of container */
        top: 100%;
        margin-top: 10px;
    }

    .bc-next-2ec6b037 {
        right: 0; /* Align right edge of container */
        top: 100%;
        margin-top: 10px;
    }

    /* Mobile Arrow Visibility */
    .bc-arrows-2ec6b037-all .bc-nav-btn-2ec6b037,
    .bc-arrows-2ec6b037-mobile .bc-nav-btn-2ec6b037 {
        display: flex !important;
        position: relative; /* Change positioning on mobile if needed, or adjust top/left/right */
    }

    .bc-arrows-2ec6b037-desktop .bc-nav-btn-2ec6b037 {
        display: none !important;
    }

    /* Repeat hide rule for mobile to ensure it wins */
    .bc-arrows-2ec6b037-none .bc-nav-btn-2ec6b037,
    body .elementor-widget-benefit_carousel_2ec6b037.bc-arrows-2ec6b037-none .bc-nav-btn-2ec6b037 {
        display: none !important;
    }
    .bc-arrows-2ec6b037-mobile .bc-wrapper-2ec6b037 {
        padding: 0 40px; /* Add padding back if mobile arrows shown on sides */
    }
}