/* Banner Carousel Slider Styles - Specific to .banner-carousel-container only */

.banner-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.banner-carousel-container .slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 600px;
}

.banner-carousel-container .slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
    height: 100%;
}

.banner-carousel-container .slide-item {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.banner-carousel-container .slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.banner-carousel-container .slide-item .auto-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
}

.banner-carousel-container .content-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    width: 100%;
}

.banner-carousel-container .content-inner {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px;
    width: 100%;
}

.banner-carousel-container .content-inner .count-text {
    font-size: 48px;
    font-weight: bold;
    display: none;
    margin-bottom: 20px;
    opacity: 0.8;
}

.banner-carousel-container .content-inner h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.3;
}

.banner-carousel-container .content-inner h5 {
    display: none;
}

.banner-carousel-container .btn-box {
    margin-top: 30px;
}

.banner-carousel-container .slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.banner-carousel-container .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.banner-carousel-container .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.banner-carousel-container .dot.active {
    background-color: white;
}

.banner-carousel-container .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-carousel-container .slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.banner-carousel-container .slider-arrow.prev {
    left: 20px;
}

.banner-carousel-container .slider-arrow.next {
    right: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .banner-carousel-container .slider-wrapper {
        height: 400px;
    }

    .banner-carousel-container .slide-item {
        min-height: 400px;
    }

    .banner-carousel-container .content-box {
        min-height: 400px;
    }

    .banner-carousel-container .content-inner {
        padding: 20px;
    }

    .banner-carousel-container .content-inner .count-text {
        font-size: 32px;
    }

    .banner-carousel-container .content-inner h2 {
        font-size: 28px;
    }

    .banner-carousel-container .slider-dots {
        bottom: 20px;
        gap: 8px;
    }

    .banner-carousel-container .dot {
        width: 10px;
        height: 10px;
    }

    .banner-carousel-container .slider-arrow {
        padding: 10px 12px;
        font-size: 18px;
    }

    .banner-carousel-container .slider-arrow.prev {
        left: 10px;
    }

    .banner-carousel-container .slider-arrow.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .banner-carousel-container .slider-wrapper {
        height: 300px;
    }

    .banner-carousel-container .slide-item {
        min-height: 300px;
    }

    .banner-carousel-container .content-box {
        min-height: 300px;
    }

    .banner-carousel-container .content-inner {
        padding: 15px;
    }

    .banner-carousel-container .content-inner .count-text {
        font-size: 24px;
    }

    .banner-carousel-container .content-inner h2 {
        font-size: 20px;
    }
}
