
.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 75%;
    padding: 0 50px;
}

.slider-container {
    position: relative;
    width: 80vw;
    height: 75vh;
    overflow: hidden;
    border-radius: 15px;
    /* box-shadow: 0 0 30px rgba(0,0,0,0.2); */
    background-color: rgba(255, 255, 255, 0.308);
    
}

.slider {
    position: relative;
    height: 90%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-btn {
    background: rgba(255,255,255,0.8);
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

.nav-btn:hover {
    background: white;
    transform: scale(1.1);
}

.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicators span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
}

.indicators span.active {
    background: white;
    transform: scale(1.2);
}




@media (max-width:884px) {
    .slider{
        width: 100%;
    }
.slider-wrapper{
    gap: 0;
    width: auto;
}
}


