.header-slider .slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.header-slider .slides img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}

.header-slider .slides img.active {
    opacity: 1;
    z-index: 1;
}

.header-slider .dots {
    position: absolute;
    bottom: 50px;
    right: 30px;
    display: flex;
    gap: 8px;
    align-items: center;
    z-index: 10;
}

.header-slider .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    justify-items: center;
}

.header-slider .dot.active {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.9);
}