/* تنسيق عام للكاروُسيل */
.carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-inner {
    position: relative;
    width: 100%;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-item img {
    width: 100%;
    height: auto;
}

/* تحسينات على النصوص داخل الكاروسيل */
.home-slider__content {
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-slider-title h3 {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-slider-btn a {
    background: linear-gradient(45deg, #353535, #78693d);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.hero-slider-btn a:hover {
    background: linear-gradient(45deg, #ffca28, #ff7a18);
    transform: scale(1.05);
}

/* تخصيص أزرار التحكم */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 10px;
    transition: 0.3s;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(255, 255, 255, 1);
}

/* النقاط السفلية */
.carousel-indicators li {
    background-color: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 5px;
    transition: 0.3s;
}

.carousel-indicators .active {
    background-color: #545454;
    width: 14px;
    height: 14px;
}
