/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
 .owl-theme .owl-dots,
 .owl-theme .owl-nav {
     text-align: center;
     -webkit-tap-highlight-color: transparent;
 }
 .owl-theme .owl-nav {
     margin-top: 10px;
 }
 .owl-theme .owl-nav [class*="owl-"] {
     color: #fff;
     font-size: 14px;
     margin: 5px;
     padding: 4px 7px;
     background: #d6d6d6;
     display: inline-block;
     cursor: pointer;
     border-radius: 3px;
 }
 .owl-theme .owl-nav [class*="owl-"]:hover {
     background: #869791;
     color: #fff;
     text-decoration: none;
 }
 .owl-theme .owl-nav .disabled {
     opacity: 0.5;
     cursor: default;
 }
 .owl-theme .owl-nav.disabled + .owl-dots {
     margin-top: 10px;
 }
 .owl-theme .owl-dots .owl-dot {
     display: inline-block;
     zoom: 1;
 }
 .owl-theme .owl-dots .owl-dot span {
     width: 10px;
     height: 10px;
     margin: 5px 7px;
     background: #d6d6d6;
     display: block;
     -webkit-backface-visibility: visible;
     transition: opacity 0.2s ease;
     border-radius: 30px;
 }
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

/* RTL Navigation Arrows */
.owl-theme .owl-nav [class*="owl-"] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.owl-theme .owl-nav .owl-prev {
    right: -20px;
    left: auto;
}

.owl-theme .owl-nav .owl-next {
    left: -20px;
    right: auto;
}

/* Custom RTL Arrow Icons */
.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-next {
    font-size: 0 !important;
    text-indent: 0 !important;
    line-height: 1 !important;
}

.owl-theme .owl-nav .owl-prev:before {
    content: "❮" !important;
    font-size: 18px !important;
    font-weight: bold !important;
    display: inline-block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.owl-theme .owl-nav .owl-next:before {
    content: "❯" !important;
    font-size: 18px !important;
    font-weight: bold !important;
    display: inline-block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

/* Hide default text content */
.owl-theme .owl-nav .owl-prev:after,
.owl-theme .owl-nav .owl-next:after {
    display: none !important;
}

/* Alternative arrow styles - uncomment the one you prefer */

/* Style 1: Chevron arrows */
/*
.owl-theme .owl-nav .owl-prev {
    font-size: 0 !important;
}
.owl-theme .owl-nav .owl-next {
    font-size: 0 !important;
}
.owl-theme .owl-nav .owl-prev:before {
    content: "›" !important;
    font-size: 20px !important;
    font-weight: bold !important;
    display: inline-block !important;
}
.owl-theme .owl-nav .owl-next:before {
    content: "‹" !important;
    font-size: 20px !important;
    font-weight: bold !important;
    display: inline-block !important;
}
*/

/* Style 2: Font Awesome arrows */
/*
.owl-theme .owl-nav .owl-prev {
    font-size: 0 !important;
}
.owl-theme .owl-nav .owl-next {
    font-size: 0 !important;
}
.owl-theme .owl-nav .owl-prev:before {
    content: "\f054" !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    display: inline-block !important;
}
.owl-theme .owl-nav .owl-next:before {
    content: "\f053" !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    display: inline-block !important;
}
*/

/* Style 3: Simple text arrows */
/*
.owl-theme .owl-nav .owl-prev {
    font-size: 0 !important;
}
.owl-theme .owl-nav .owl-next {
    font-size: 0 !important;
}
.owl-theme .owl-nav .owl-prev:before {
    content: "→" !important;
    font-size: 18px !important;
    font-weight: bold !important;
    display: inline-block !important;
}
.owl-theme .owl-nav .owl-next:before {
    content: "←" !important;
    font-size: 18px !important;
    font-weight: bold !important;
    display: inline-block !important;
}
*/

/* RTL Container */
.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}
 