/* Hero Banner Slider Styles */
.hero-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.hero-slide {
    min-width: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-slide a {
    display: block;
    line-height: 0;
}

/* Slider Controls */
.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.6) !important;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex !important;
    /* Force display if hidden elsewhere */
    align-items: center !important;
    justify-content: center !important;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(255, 255, 255, 0.9) !important;
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

.hero-slider-prev::after {
    content: '\276E';
    font-size: 28px;
    font-weight: bold;
    color: #353535;
    display: block !important;
}

.hero-slider-next::after {
    content: '\276F';
    font-size: 28px;
    font-weight: bold;
    color: #353535;
    display: block !important;
}

/* Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 12px;
    z-index: 10;
}

.hero-slider-dot {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    background: #ffffff !important;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease;
}

.hero-slider-dot.active {
    background: transparent !important;
    border: 1px solid #111 !important;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {

    .hero-slider-prev,
    .hero-slider-next {
        display: none !important;
    }
}