/* =========================================
   6. BANNER SLIDER SECTION (V242 Fixed)
   ========================================= */

/* Banner Slider Container - CENTERED IN SECTION */
.banner-slider {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 240px;
    margin: 50px auto; /* Upar-Niche centered spacing */
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: #fff;
}

.banner-slides-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.banner-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Navigation Arrows - Hidden by default */
.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.banner-prev { left: 12px; }
.banner-next { right: 12px; }

/* Show arrows on slider hover */
.banner-slider:hover .banner-prev,
.banner-slider:hover .banner-next {
    opacity: 1;
    visibility: visible;
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(0,191,165,0.9);
    transform: translateY(-50%) scale(1.1);
}

/* Dots Navigation - Slim Version */
.banner-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.banner-dot.active {
    background: #00bfa5;
    width: 20px;
    border-radius: 4px;
}

/* Responsive - Single Version (Duplicate Removed) */
@media (max-width: 768px) {
    .banner-slider {
        width: 95%;
        height: 140px;
        margin: 30px auto; /* Mobile par kam spacing */
        border-radius: 10px;
    }

    .banner-prev,
    .banner-next {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .banner-prev { left: 8px; }
    .banner-next { right: 8px; }

    .banner-dots {
        bottom: 8px;
        gap: 5px;
    }

    .banner-dot {
        width: 6px;
        height: 6px;
    }

    .banner-dot.active {
        width: 16px;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: 120px;
        margin: 20px auto; /* Extra small screen spacing */
    }
}

