/* RTL (Right-to-Left) Language Support - Arabic & Hebrew */
/* This fixes slider and layout issues for RTL languages */

/* RTL Body Direction */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* Owl Carousel RTL Fixes */
[dir="rtl"] .owl-carousel {
    direction: ltr !important;
}

[dir="rtl"] .owl-carousel .owl-item {
    direction: rtl;
}

/* Banner Carousel RTL Fixes */
[dir="rtl"] .banner-carousel .slide-item .image-layer {
    left: 0 !important;
    right: 0 !important;
}

[dir="rtl"] .banner-carousel .content-box {
    direction: rtl;
    text-align: center !important;
}

[dir="rtl"] .banner-section .banner-thumb-inner {
    direction: ltr !important;
}

/* Navigation Buttons RTL */
[dir="rtl"] .banner-carousel .owl-nav {
    right: auto !important;
    left: 1080px;
}

[dir="rtl"] .banner-carousel .owl-nav button.owl-prev {
    margin-right: 0;
    margin-left: 5px;
}

/* Image Layer Fix for RTL */
[dir="rtl"] .image-layer,
[dir="rtl"] .image-box,
[dir="rtl"] figure {
    direction: ltr !important;
}

/* Content Box RTL */
[dir="rtl"] .content-box {
    direction: rtl;
}

/* Service Section RTL */
[dir="rtl"] .service-section .service-block {
    float: right;
}

/* Project Section RTL */
[dir="rtl"] .project-section .project-block {
    direction: rtl;
}

/* Video Section RTL */
[dir="rtl"] .video-section .inner-box {
    direction: ltr !important;
}

/* Gallery RTL */
[dir="rtl"] .gallery-section .gallery-item {
    direction: ltr !important;
}

/* Team Section RTL */
[dir="rtl"] .team-section .team-block {
    direction: rtl;
}

/* News/Blog Section RTL */
[dir="rtl"] .news-section .news-block {
    direction: rtl;
}

/* Testimonial Section RTL */
[dir="rtl"] .testimonial-section {
    direction: rtl;
}

/* Fix for all image containers in RTL */
[dir="rtl"] .image-layer,
[dir="rtl"] .image-box img,
[dir="rtl"] figure img {
    direction: ltr !important;
}

/* Ensure sliders work properly in RTL */
[dir="rtl"] .owl-carousel,
[dir="rtl"] .banner-carousel,
[dir="rtl"] .slider-carousel {
    direction: ltr !important;
}

[dir="rtl"] .owl-carousel .slide-item,
[dir="rtl"] .banner-carousel .slide-item {
    direction: rtl;
}

/* Social Links RTL */
[dir="rtl"] .social-links {
    right: auto;
    left: 100px;
}

/* Footer RTL Fixes */
[dir="rtl"] .main-footer {
    direction: rtl;
}

[dir="rtl"] .footer-widget ul {
    padding-right: 0;
    padding-left: 20px;
}

/* Menu RTL */
[dir="rtl"] .main-menu .navigation > li {
    float: right;
    margin-left: 40px;
    margin-right: 0;
}

[dir="rtl"] .main-menu .navigation > li > ul {
    left: auto;
    right: 0;
}

/* Responsive RTL Fixes */
@media (max-width: 1200px) {
    [dir="rtl"] .banner-carousel .owl-nav {
        left: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 768px) {
    [dir="rtl"] .social-links {
        left: 20px;
    }

    [dir="rtl"] .main-menu .navigation > li {
        float: none;
        margin: 0;
    }
}
