/* RTL Slider Fixes */

/* Flip the background image in RTL mode - moves herbs from right to left */
html[dir="rtl"] .rev-slidebg,
html[dir="rtl"] img.rev-slidebg,
html[dir="rtl"] .rev_slider .slotholder,
html[dir="rtl"] #welcome_wrapper .rev-slidebg,
html[dir="rtl"] .rev_slider_wrapper .rev-slidebg,
html[dir="rtl"] li[data-index="rs-901"] .rev-slidebg {
    -webkit-transform: scaleX(-1) !important;
    -moz-transform: scaleX(-1) !important;
    -ms-transform: scaleX(-1) !important;
    -o-transform: scaleX(-1) !important;
    transform: scaleX(-1) !important;
}

/* Prevent text and overlays from being flipped */
[dir="rtl"] .tp-caption,
[dir="rtl"] .tp-shape,
[dir="rtl"] .slider-block {
    transform: scaleX(1) !important;
    direction: rtl !important;
}

/* Position text layers on the right side in RTL */
[dir="rtl"] #slide-901-layer-2,
[dir="rtl"] #slide-901-layer-4,
[dir="rtl"] #slide-901-layer-5 {
    left: auto !important;
    right: 50px !important;
    text-align: right !important;
}

/* Position decorative yellow block on the right side in RTL */
[dir="rtl"] #slide-901-layer-3 {
    left: auto !important;
    right: 0px !important;
}

/* Ensure text content is properly aligned */
[dir="rtl"] #slide-901-layer-2 div,
[dir="rtl"] #slide-901-layer-4 div {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .tp-parallax-wrap {
    left: unset !important;
    right: 7% !important;
}

/* Responsive positioning for tablets */
@media (max-width: 991px) {

    [dir="rtl"] #slide-901-layer-2,
    [dir="rtl"] #slide-901-layer-4,
    [dir="rtl"] #slide-901-layer-5 {
        left: auto !important;
        right: 130px !important;
    }

    [dir="rtl"] #slide-901-layer-3 {
        left: auto !important;
        right: 80px !important;
    }
}

/* Responsive positioning for mobile landscape */
@media (max-width: 767px) {

    [dir="rtl"] #slide-901-layer-2,
    [dir="rtl"] #slide-901-layer-4,
    [dir="rtl"] #slide-901-layer-5 {
        left: auto !important;
        right: 130px !important;
    }

    [dir="rtl"] #slide-901-layer-3 {
        left: auto !important;
        right: 80px !important;
    }
}

/* Responsive positioning for mobile portrait */
@media (max-width: 575px) {

    [dir="rtl"] #slide-901-layer-2,
    [dir="rtl"] #slide-901-layer-4,
    [dir="rtl"] #slide-901-layer-5 {
        left: auto !important;
        right: 60px !important;
    }

    [dir="rtl"] #slide-901-layer-3 {
        left: auto !important;
        right: 60px !important;
    }
}

/* Force immediate transition - no delay */
[dir="rtl"] .tp-caption,
[dir="rtl"] .slider-block {
    transition: none !important;
}