
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2); /* تدرج لوني جذاب */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}


.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* يظهر الصورة بالكامل بدون اقتطاع */


}


/* تخصيص الأزرار */
.swiper-button-next, .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 50%;
    transition: 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* تخصيص نقاط التنقل */
.swiper-pagination-bullet {
    background: white;
    width: 12px;
    height: 12px;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #007bff;
}
.swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit; /* جعل الخلفية مأخوذة من الصورة */
    filter: blur(20px); /* تأثير الضبابية */
    z-index: -1;
}
.swiper {
    width: 80%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px); /* تأثير الزجاج الضبابي */
    background: rgba(255, 255, 255, 0.1); /* لون شفاف */
}
