/* Simple Slider CSS */
/* Basic styling that works without conflicts */

/* Hero section */
.hero-section.overlay {
    position: relative;
    height: 100vh;
    min-height: 600px;
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
}

/* Hero slider */
.hero-section .hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Slider items */
.hero-section .hero-slider .hero-slider-item {
    height: 100vh;
    min-height: 600px;
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Container for caption */
.hero-section .hero-slider .hero-slider-item .container {
    position: relative;
    z-index: 2;
    padding-top: 150px;
    padding-bottom: 100px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Caption elements */
.hero-section .hero-slider .hero-slider-item h1,
.hero-section .hero-slider .hero-slider-item p,
.hero-section .hero-slider .hero-slider-item .btn {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    display: block;
    position: relative;
    z-index: 3;
}

/* Button styling */
.hero-section .hero-slider .hero-slider-item .btn {
    display: inline-block;
    width: auto;
    max-width: none;
}

/* Navigation arrows */
.hero-slider .prevArrow,
.hero-slider .nextArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    visibility: visible;
    opacity: 1;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-slider .prevArrow {
    left: 20px;
}

.hero-slider .nextArrow {
    right: 20px;
}

/* Dots */
.hero-slider .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
    visibility: visible;
    opacity: 1;
}

.hero-slider .slick-dots li {
    margin: 0;
    display: block;
}

.hero-slider .slick-dots button {
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    visibility: visible;
}

.hero-slider .slick-dots .slick-active button {
    background: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section .hero-slider .hero-slider-item .container {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .hero-slider .prevArrow,
    .hero-slider .nextArrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section .hero-slider .hero-slider-item .container {
        padding-top: 100px;
        padding-bottom: 40px;
    }
}
