.slider-container {
    height: 95vh;
    overflow: hidden;
    position: relative;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.slide-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease 0.2s;
}

.slide-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f26522;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease 0.4s;
}

.slide.active .slide-title,
.slide.active .slide-description,
.slide.active .slide-button {
    opacity: 1;
    transform: translateY(0);
}

.dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.dot.active {
    background: #f26522;
    height: 30px;
}

.dot.active::after {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 5px;
    background: #f26522;
    border-radius: 2px;
}