.banner-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;

}

.banner-slider {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000; /* Black background for better image display */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.slide.active {
    opacity: 1;
}

/* Important: Banner Image Styling */
.banner-image {
    width: 100%;
    height: 100%;
    /* object-fit: cover; Full cover - image crop thase pan full fill */
    object-position: center;
    display: block;
}

/* If you want FULL IMAGE visible (with black bars) - Use this instead */
/*
.banner-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #000;
}
*/

.slide-content {
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    max-width: 80%;
    position: absolute;
    z-index: 2;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Slider Controls - Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Dots/Indicators */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.dot:hover {
    background: rgba(255,255,255,0.7);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .banner-slider {
        height: 400px;
    }
    .slide-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .banner-slider {
        height: 300px;
    }
    .slide-content h2 {
        font-size: 2rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        padding: 10px 15px;
    }
    .prev-btn {
        left: 10px;
    }
    .next-btn {
        right: 10px;
    }
    .dot {
        width: 10px;
        height: 10px;
    }
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .banner-slider {
        height: 200px;
    }
    .slide-content h2 {
        font-size: 1.5rem;
    }
    .slide-content p {
        font-size: 0.9rem;
    }
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
        padding: 8px 12px;
    }
    .dot {
        width: 8px;
        height: 8px;
    }
    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }
}