.banner{
    position: relative;
    max-width: 1200px;
    margin: 0  auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 3rem;

}
.banner-wrapper{
    position: relative;
    width: 100%;
    height: 500px;
}
.banner-slides{
    display: flex;
    height: 100%;
    transition: transform .5s ease-in-out;
}
.banner-slide{
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
}
.banner-content{
    z-index: 1;
}
.banner-content h2{

}
.banner-content p{

}
.banner-content img{
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
}
.banner-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner-nav:hover{
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}
.banner-prev{
    left: 20px;

}
.banner-next{
    right: 20px;

}
.banner-indicators{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    
}
.banner-indicator{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all .3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}
.banner-indicator.active{
    background: white;
    transform: scale(1.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}


