.slider-container {
    position: relative;
}

.slider {
    position: relative;
    overflow: hidden;
    /* max-height: 400px; */
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;s
}

.slide-item.active {
    opacity: 1;
    position: relative;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 10px;
    text-align: center;
}

.slider-controls {
    text-align: center;
    margin-top: 15px;
}

.slider-controls button {
    background: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

.slider-controls button:hover {
    background: #555;
}

.pagination-dots {
    display: flex;
    gap: 8px;
    z-index: 1111;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.pagination-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pagination-dots .dot.active {
    background-color: #333;
}

