.hero-slider {
    width: 100%;
    height: 650px;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    font-family: "Poppins", sans-serif;
}

.slide-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.2);
    background-repeat: no-repeat;
    transition: opacity 1s ease, transform 1.5s ease;
}

.slide-1.active {
    opacity: 1;
    transform: scale(1);
}

/* Title */
.slide-title {
    position: absolute;
    bottom: 80px;
    width: 100%;
    text-align: center;
    font-size: 70px;
    font-weight: 500;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    text-shadow: 0 5px 25px rgba(0,0,0,0.4);
}

.slide-title.show {
    opacity: 1;
    transform: translateY(0);
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    font-size: 50px;
    color: white;
    transform: translateY(-50%);
    cursor: pointer;
    padding: 10px 20px;
    transition: 0.3s;
    z-index: 20;
}

.arrow.left { left: 30px; }
.arrow.right { right: 30px; }

.arrow:hover { opacity: 0.6; }

/* Dots */
.dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
}

.dots span {
    display: inline-block;
    height: 12px;
    width: 12px;
    background: #fff;
    opacity: 0.5;
    margin: 0 6px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dots span.active {
    opacity: 1;
    transform: scale(1.3);
}

/* Mobile Responsive */
@media(max-width: 768px){
    .hero-slider { height: 450px; }
    .slide-title { font-size: 40px; bottom: 40px; }
}
