.header-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.header-slider .slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
.header-slider .slide.active {
    display: block;
    opacity: 1;
    position: relative;
    z-index: 2;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dots .dot.active {
    background-color: #8169f1; 
}