.our-package {
    text-align: center;
    background-color: white;
    padding: 50px 0;
    /*border: 2px solid red;*/
}

.our {
    text-align: center;
    font-family: 'Marhey', sans-serif;
    font-weight: bold;
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(144, 160, 145, 1); /* ظل مع توهج أخضر مخصص */
    animation: glow 1.5s infinite alternate;
    position: relative;
}
.our::after{
    content: '';
    display: block;
    width: 90px;
    height: 5px;
    background: linear-gradient(45deg, #8B9B8B, #a8e6cf);
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}
@keyframes glow {
    0% { text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3), 0 0 5px rgba(139, 155, 139, 0.6); }
    50% { text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3), 0 0 15px rgba(139, 155, 139, 1); }
    100% { text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3), 0 0 5px rgba(139, 155, 139, 0.6); }
}



.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;

}

.slider-wrapper {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;

}

.slider {
    display: flex;
    flex-direction: row-reverse;
    direction: rtl;
    transition: transform 0.5s ease-in-out;
    /* gap: 20px;  ❌ نشيلها */
}

.slide {
    position: relative; /* لضبط موضع العنوان داخل الصورة */
    overflow: hidden;
    min-width: calc(100% / 5 - 20px); /* ✅ يجعل كل سلايد يأخذ 20% من العرض لعرض 5 صور */
    flex-shrink: 0;
    text-align: center;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* ✅ تنسيق عناوين الشرائح */
.slide h2 {
    position: absolute;
    bottom: 15px; /* وضع العنوان أسفل الصورة */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.7); /* خلفية شفافة محسنة */
    color: #f5f5f5;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    white-space: nowrap;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
    opacity: 0; /* إخفاء العنوان في البداية */

    width: fit-content; /* ضبط الحجم تلقائيًا حسب النص */
    max-width: 90%; /* يمنع النص من التمدد الزائد */
}

/* ✅ إظهار العنوان عند تمرير الفأرة */
.slide:hover h2 {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    background: rgba(0, 0, 0, 0.85); /* جعل الخلفية أوضح عند التفاعل */
}


/* ✅ تحسين أزرار التنقل */
.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.slider-button:hover {
    background: white;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* ✅ النقاط */
.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #717171;
}

.slide-link {
    display: block;
    flex: 0 0 20%;       /* الديسكتوب: 5 صور */
    box-sizing: border-box;
    padding: 0 10px;     /* ✅ بدل margin */
    text-align: center;
}

/* Portrait - صورة وحدة */
@media (max-width: 768px) and (orientation: portrait) {
    .slide-link {
        flex: 0 0 100% !important;
    }
}

/* Landscape - صورتين */
@media (max-width: 768px) and (orientation: landscape) {
    .slide-link {
        flex: 0 0 50% !important;
    }
}

/* تابلت */
@media (min-width: 769px) and (max-width: 1024px) {
    .slide-link {
        flex: 0 0 50% !important;
    }
}

/* ديسكتوب */
@media (min-width: 1025px) {
    .slide-link {
        flex: 0 0 25% !important;  /* 4 صور */
    }
}
