﻿/********** Owl Carousel Styles **********/

/* التحكم في حجم العناصر داخل الكاروسيل */
.header-carousel .owl-carousel-item {
    position: relative;
    min-height: 500px;
}

    .header-carousel .owl-carousel-item img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        border-radius: 10px;
    }

/* تحسين التنقل في الكاروسيل */
.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        background: transparent;
        border: 1px solid #FFFFFF;
        font-size: 22px;
        transition: .5s;
    }

        .header-carousel .owl-nav .owl-prev:hover,
        .header-carousel .owl-nav .owl-next:hover {
            background: #007bff; /* تغيير اللون إلى الأزرق */
            border-color: #007bff;
        }

/* النقاط السفلية */
.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

    .header-carousel .owl-dot::after {
        position: absolute;
        content: "";
        width: 5px;
        height: 5px;
        top: 4px;
        left: 4px;
        background: transparent;
        border: 1px solid #FFFFFF;
    }

    .header-carousel .owl-dot.active {
        background: #007bff; /* تغيير اللون إلى الأزرق */
        border-color: #007bff;
    }

/* تحسين التوافق مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        min-height: 300px;
    }

        .header-carousel .owl-carousel-item img {
            height: 300px;
        }
}


