.hero-slider-container {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    background-color: #1e2a3a;
    direction: rtl;
}

.hero-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    direction: ltr;
}

.hero-slide {
    min-width: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-slide .hero-desktop-img {
    display: none;
}

.hero-slide .hero-mobile-img {
    display: block;
}

@media (min-width: 768px) {
    .hero-slide .hero-desktop-img {
        display: block;
    }
    .hero-slide .hero-mobile-img {
        display: none;
    }
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.2s;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-arrow:hover {
    background-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-arrow-prev {
    left: 16px;
}

.hero-arrow-next {
    right: 16px;
}

.hero-arrow svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    padding: 0;
}

.hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.65);
    transform: scale(1.2);
}

.hero-dot.active {
    width: 28px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.9);
}
