.slider-container {
    position: relative;
    max-width: 450px;
    height: 450px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out, filter 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Variation 1: Standard Fade */
.fade-standard.active {
    opacity: 1;
}

/* Variation 2: Fade + Zoom Out */
.fade-zoom { transform: scale(1.1); }
.fade-zoom.active {
    opacity: 1;
    transform: scale(1);
}

/* Variation 3: Fade + Blur */
.fade-blur { filter: blur(10px); }
.fade-blur.active {
    opacity: 1;
    filter: blur(0);
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
}
.next { right: 0; }
.controls { text-align: center; margin-top: 10px; }


.testimonialslider{
    background-color: aqua;
    padding-top: 20px;
    margin-top: 20px;

}