/* Hero Slider Specific CSS Styles */
#hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #070A13;
}

/* Canvas Particle Backdrop */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Ensure Swiper Slide Content is Center & Visible Above Backgrounds */
.heroSwiper .swiper-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
}

/* Swiper Background Image Zoom */
.heroSwiper .swiper-slide img {
    transition: transform 6s ease-out;
    transform: scale(1.02);
}

.heroSwiper .swiper-slide-active img {
    transform: scale(1.1);
}

/* Slide Content Default Visibility & Entrance Animations */
.hero-animate-title,
.hero-animate-desc,
.hero-animate-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.heroSwiper .swiper-slide-active .hero-animate-title {
    animation: heroFadeIn 0.8s ease-out forwards;
}

.heroSwiper .swiper-slide-active .hero-animate-desc {
    animation: heroFadeIn 0.8s ease-out 0.2s forwards;
}

.heroSwiper .swiper-slide-active .hero-animate-btn {
    animation: heroFadeIn 0.8s ease-out 0.4s forwards;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glow Text Effects */
.glow-text-gold {
    text-shadow: 0 0 25px rgba(255, 184, 0, 0.8), 0 0 50px rgba(255, 184, 0, 0.4);
}

.glow-text-cyan {
    text-shadow: 0 0 25px rgba(6, 182, 212, 0.8), 0 0 50px rgba(6, 182, 212, 0.4);
}

/* Swiper Pagination Customization */
.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 8px;
    background: #FFB800 !important;
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.8);
}

/* Slider Hero Text */
.hero-animate-title {
    font-weight: 600;
    font-size: 50px;
}

div.hero-animate-title {
    font-size: 14px;
}

@media(max-width:1366px) {}