/* Slider container */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Slides container */
.slides {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
}

/* Individual slide */
.banner-container {
    position: relative;
    min-width: 100%;
    height: 300px;
    overflow: hidden;
}

.banner-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px); /* Blur effect */
    transform: translate(-50%, -50%);
    z-index: 1;
}
.banner-icon {
    filter: blur(20px); /* Blur effect */

}
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    z-index: 2;
    border: 5px solid white;
}

.banner-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(0px); /* Blur effect */
}

.banner-text {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    z-index: 3;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* Slider controls */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    cursor: pointer;
    z-index: 3;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Media query for mobile responsiveness */
@media (max-width: 600px) {
    .banner-container {
        height: 200px;
    }
    .banner-content {
        width: 100px;
        height: 100px;
    }
    .banner-text {
        font-size: 18px;
    }
}