/* Hero Slider Override Styles */

/* Container spacing */
.hero-slider {
    margin: 20px 0 40px 0 !important;
}

/* Increase Slider Height */
.hero-slider .carousel-item {
    height: 600px !important;
}

.hero-slider .carousel-item img {
    height: 100% !important;
    object-fit: cover !important;
}

/* Caption Style */
.hero-slider .carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%) !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    padding: 80px 40px 40px !important;
    text-align: left !important;
}

.hero-slider .carousel-caption h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.hero-slider .carousel-caption h2 a {
    color: #fff !important;
    text-decoration: none !important;
}

/* Indicators (Dots) */
.hero-slider .carousel-indicators {
    bottom: 20px !important;
    justify-content: center !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.hero-slider .carousel-indicators li {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    border: 2px solid transparent !important;
    margin: 0 8px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
}

.hero-slider .carousel-indicators li.active {
    background-color: transparent !important;
    border-color: #fff !important;
    transform: scale(1.3) !important;
}

/* Carousel Controls (Arrows) */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 60px !important;
    height: 100px !important;
    background: transparent !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 0.8 !important;
    transition: all 0.3s ease !important;
}

.hero-slider .carousel-control-prev {
    left: 10px !important;
}

.hero-slider .carousel-control-next {
    right: 10px !important;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    opacity: 1 !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 40px !important;
    height: 40px !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) !important;
}