/* Banner Slider Styles */
.banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.slider-container {
    position: relative;
    width: 100%;
}

.slider-wrapper {
    display: flex;
    position: relative;
    height: 400px;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    display: none;
}

.slide.active {
    display: block;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* تم إزالة الطبقة الضبابية
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
*/

.slide-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.slide-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 15px;
    transition: background-color 0.3s;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .slider-wrapper {
        height: 300px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .slider-wrapper {
        height: 250px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slider-arrow {
        width: 30px;
        height: 30px;
    }
}
