/* ---------------------------- Hero Section  ------------------------------------ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Grid Background */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

/* Golden Glow Center */
.hero-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234,179,8,0.25) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Floating Dots */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#eab308 2px, transparent 2px);
    background-size: 120px 120px;
    opacity: 0.5;
    animation: moveDots 30s linear infinite;
    z-index: 0;
}

@keyframes moveDots {
    from { transform: translateY(0px); }
    to { transform: translateY(-200px); }
}

/* Content Above Background */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 25px;
    color: #eab308;
}

/* Heading */
.hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #eab308;
}

/* Sub Text */
.hero-sub {
    font-size: 18px;
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary {
    background: #eab308;
    color: #000;
    box-shadow: 0 0 25px rgba(234,179,8,0.6);
}

.btn-primary:hover {
    background: #facc15;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.btn-outline:hover {
    border-color: #eab308;
    color: #eab308;
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-stats h3 {
    color: #eab308;
    font-size: 32px;
    margin-bottom: 5px;
}

.hero-stats p {
    color: #aaa;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 30px;
    }
}

/* =========================
   RANDOM FLOATING DOTS
========================= */

.particles-circle-nextgenit {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.particles-circle-nextgenit span {
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    background: #eab308;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatUp linear infinite;
}

/* Random positions + sizes + durations */
.particles-circle-nextgenit span:nth-child(1) { left: 10%; animation-duration: 12s; animation-delay: 0s; }
.particles-circle-nextgenit span:nth-child(2) { left: 25%; animation-duration: 18s; animation-delay: 2s; }
.particles-circle-nextgenit span:nth-child(3) { left: 40%; animation-duration: 15s; animation-delay: 4s; }
.particles-circle-nextgenit span:nth-child(4) { left: 55%; animation-duration: 20s; animation-delay: 1s; }
.particles-circle-nextgenit span:nth-child(5) { left: 70%; animation-duration: 16s; animation-delay: 3s; }
.particles-circle-nextgenit span:nth-child(6) { left: 85%; animation-duration: 22s; animation-delay: 5s; }
.particles-circle-nextgenit span:nth-child(7) { left: 15%; animation-duration: 19s; animation-delay: 6s; }
.particles-circle-nextgenit span:nth-child(8) { left: 35%; animation-duration: 14s; animation-delay: 2s; }
.particles-circle-nextgenit span:nth-child(9) { left: 60%; animation-duration: 17s; animation-delay: 3s; }
.particles-circle-nextgenit span:nth-child(10){ left: 75%; animation-duration: 21s; animation-delay: 4s; }
.particles-circle-nextgenit span:nth-child(11){ left: 5%;  animation-duration: 13s; animation-delay: 1s; }
.particles-circle-nextgenit span:nth-child(12){ left: 30%; animation-duration: 16s; animation-delay: 3s; }
.particles-circle-nextgenit span:nth-child(13){ left: 50%; animation-duration: 18s; animation-delay: 2s; }
.particles-circle-nextgenit span:nth-child(14){ left: 65%; animation-duration: 15s; animation-delay: 4s; }
.particles-circle-nextgenit span:nth-child(15){ left: 80%; animation-duration: 19s; animation-delay: 5s; }
.particles-circle-nextgenit span:nth-child(16){ left: 20%; animation-duration: 22s; animation-delay: 2s; }
.particles-circle-nextgenit span:nth-child(17){ left: 45%; animation-duration: 17s; animation-delay: 1s; }
.particles-circle-nextgenit span:nth-child(18){ left: 68%; animation-duration: 14s; animation-delay: 3s; }
.particles-circle-nextgenit span:nth-child(19){ left: 90%; animation-duration: 20s; animation-delay: 4s; }
.particles-circle-nextgenit span:nth-child(20){ left: 12%; animation-duration: 18s; animation-delay: 2s; }

/* Floating Animation */
@keyframes floatUp {
    0% {
        bottom: -10px;
        transform: translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        bottom: 110%;
        transform: translateX(-20px);
        opacity: 0;
    }
}

/* ------------------------------- Hero Section END -------------------------------------------------------- */