/* ===== SLIDER WRAPPER ===== */
.hero-slider {
    width: 100%;
    overflow: hidden;
}

/* Wrapper */
.slider-wrapper {
    position: relative;
}

/* Each Slide */
.slide {
    position: relative;
    display: none;
}

.slide.active {
    display: block;
}

/* Background Image */
.slide-bg {
    width: 100%;
    aspect-ratio: 16 / 5; /* responsive height */
    overflow: hidden;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Overlay */
.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 500px;
}

/* Text */
.slide-content h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    margin-bottom: 10px;
}

.slide-content p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 15px;
}

/* Button */
.slide-content .btn {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
}
/* ===== DOTS ===== */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

/* Each dot (line style) */
.dot {
    width: 30px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
}

/* Active */
.dot.active {
    background: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .slide-bg {
        aspect-ratio: 16 / 9;
    }

    .slide-content {
        left: 5%;
        right: 5%;
    }
}