/* 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.9) !important;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

.hero-slider-prev::after,
.hero-slider-next::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1.5px solid #000;
    border-left: 1.5px solid #000;
    display: block !important;
}

.hero-slider-prev::after {
    transform: rotate(-45deg);
    margin-left: 3.5px;
}

.hero-slider-next::after {
    transform: rotate(135deg);
    margin-right: 3.5px;
}



@media (max-width: 768px) {

    .hero-slider-prev,
    .hero-slider-next {
        display: none !important;
    }
}