/* إصلاحات لـ Owl Carousel */
.owl-carousel3 {
    display: block;
    width: 100%;
    position: relative;
}

.owl-carousel3 .owl-stage-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.owl-carousel3 .owl-stage {
    display: flex;
    flex-direction: row;
    width: 100% !important;
    transform: none !important;
}

.owl-carousel3 .owl-item {
    float: left;
    display: inline-block;
    width: 33.333% !important;
    margin-right: 0;
    flex: 0 0 auto;
}

.owl-carousel3 .recent-work-item {
    margin: 0 10px;
}

.owl-carousel3 .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.owl-carousel3 .owl-nav button {
    margin: 0 10px;
}

/* تأكد من أن الصور تظهر بشكل صحيح */
.owl-carousel3 .recent-work-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* تصحيح مشكلة العرض على الأجهزة المحمولة */
@media (max-width: 991px) {
    .owl-carousel3 .owl-item {
        width: 50% !important;
    }
}

@media (max-width: 575px) {
    .owl-carousel3 .owl-item {
        width: 100% !important;
    }
}