/* ==============================
   HERO SLIDER
================================ */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: 110% 110%;
    background-position: center;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    animation: slowZoom 30s ease-in-out infinite;
}

@keyframes slowZoom {
    0%, 100% {
        background-size: 100% 100%;
    }
    50% {
        background-size: 120% 120%;
    }
}

.overlay {
    background: rgba(5, 20, 45, 0.7);
    height: 100%;
    display: flex;
    align-items: center;
}

.overlay .container {
    max-width: 700px;
    color: #fff;
    padding: 0 20px;
}

.overlay h1 {
    font-size: 50px;
    margin-bottom: 15px;
    color: #fff;
}

.overlay p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #fff;
}

/* Slider Pagination Dots */
.slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.pagination-dot.active {
    background: #fff;
    width: 14px;
    height: 14px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* ==============================
   RESPONSIVE STYLES
================================ */
@media (max-width: 991.98px) {
    .hero-slider {
        height: 420px;
    }

    .overlay h1 {
        font-size: 28px;
    }

    .overlay p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .overlay h1 {
        font-size: 24px;
    }
}
