/* Example CSS for arrow positioning */
.elementor-widget-off-set-card-carousel .swiper-button-prev,
.elementor-widget-off-set-card-carousel .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    padding: 10px; /* Example padding for better click area */
    display: flex; /* For better icon centering */
    align-items: center;
    justify-content: center;
}

.elementor-widget-off-set-card-carousel .swiper-button-prev {
    left: 0;
}

.elementor-widget-off-set-card-carousel .swiper-button-next {
    right: 0;
}

/* Arrow Positions */
.elementor-widget-off-set-card-carousel.off-set-arrows-position-top-left .swiper-button-prev {
    top: 0;
    left: 0;
    transform: none;
}
.elementor-widget-off-set-card-carousel.off-set-arrows-position-top-left .swiper-button-next {
    top: 0;
    left: 50px; /* Adjust as needed for spacing from prev arrow */
    transform: none;
}

.elementor-widget-off-set-card-carousel.off-set-arrows-position-top-right .swiper-button-prev {
    top: 0;
    right: 50px;
    left: auto;
    transform: none;
}
.elementor-widget-off-set-card-carousel.off-set-arrows-position-top-right .swiper-button-next {
    top: 0;
    right: 0;
    transform: none;
}

.elementor-widget-off-set-card-carousel .swiper-arrow-button {
    margin: 0 !important; /* Shorthand for 0px */
}

.elementor-widget-off-set-card-carousel.off-set-arrows-position-bottom-left .swiper-button-prev {
    bottom: 0;
    left: 0;
    top: auto;
    transform: none;
}
.elementor-widget-off-set-card-carousel.off-set-arrows-position-bottom-left .swiper-button-next {
    bottom: 0;
    left: 50px;
    top: auto;
    transform: none;
}

.elementor-widget-off-set-card-carousel.off-set-arrows-position-bottom-center .swiper-button-prev {
    bottom: 0;
    left: calc(50% - 25px); /* Adjusted for arrow width (assuming 50px combined width) */
    transform: translateX(-50%); /* Center the prev button relative to its own left edge */
    top: auto;
}
.elementor-widget-off-set-card-carousel.off-set-arrows-position-bottom-center .swiper-button-next {
    bottom: 0;
    left: calc(50% + 25px); /* Adjusted for arrow width */
    transform: translateX(-50%); /* Center the next button relative to its own left edge */
    top: auto;
}

.elementor-widget-off-set-card-carousel.off-set-arrows-position-bottom-right .swiper-button-prev {
    bottom: 0;
    right: 50px;
    left: auto;
    top: auto;
    transform: none;
}
.elementor-widget-off-set-card-carousel.off-set-arrows-position-bottom-right .swiper-button-next {
    bottom: 0;
    right: 0;
    top: auto;
    transform: none;
}

.elementor-widget-off-set-card-carousel.off-set-arrows-position-top-left .swiper.off-set-card-carousel,
.elementor-widget-off-set-card-carousel.off-set-arrows-position-top-right .swiper.off-set-card-carousel {
    padding-top: 40px;
}
.elementor-widget-off-set-card-carousel.off-set-arrows-position-bottom-center .swiper.off-set-card-carousel,
.elementor-widget-off-set-card-carousel.off-set-arrows-position-bottom-left .swiper.off-set-card-carousel,
.elementor-widget-off-set-card-carousel.off-set-arrows-position-bottom-right .swiper.off-set-card-carousel {
    padding-bottom: 40px;
}

/* Responsive Hiding for Arrows and Pagination */
@media (min-width: 1025px) { /* Desktop */
    .swiper-no-arrow-desktop.swiper-button-prev,
    .swiper-no-arrow-desktop.swiper-button-next,
    .swiper-no-pagination-desktop.swiper-pagination {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) { /* Tablet */
    .swiper-no-arrow-tablet.swiper-button-prev,
    .swiper-no-arrow-tablet.swiper-button-next,
    .swiper-no-pagination-tablet.swiper-pagination {
        display: none !important;
    }
}

@media (max-width: 767px) { /* Mobile */
    .swiper-no-arrow-mobile.swiper-button-prev,
    .swiper-no-arrow-mobile.swiper-button-next,
    .swiper-no-pagination-mobile.swiper-pagination {
        display: none !important;
    }
}

/* Basic Swiper Pagination Styling (adjust as needed) */
.elementor-widget-off-set-card-carousel .swiper-pagination {
    position: relative; /* Or absolute, adjust based on desired layout */
    bottom: 0;
    padding-top: 20px; /* Spacing from carousel */
}

.elementor-widget-off-set-card-carousel .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px; /* Space between bullets */
}
.swiper-slide {
    width: 100%;
}
.container-expand-right{
    display: block;
   width: calc(100vw - (50vw - 50%));
}
.box-container{
    width: 100%;
    display: block;
}
.off-set-card-carousel.swiper-initialized .swiper-slide .elementor-container{
    width: 100% !important;
    max-width: 600px !important;
}