
.slider-container1 {
    width: 100%;
    overflow: hidden;
}

.slider1 {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.slide1 {
    flex: 0 0 100%;
    position: relative;
}

.slide1 img {
    width: 100%;
    height: auto;
    max-height: 60vh; /* Responsive max height */
    object-fit: fill; /* Maintain aspect ratio */
}

.caption1 {
    position: absolute;
    top: 50%;
    left: 10px; /* Adjust caption distance from the left */
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5); /* More transparent background */
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .caption1 {
        font-size: 16px; /* Adjust font size for smaller screens */
    }
}
