:root {
    --bg: #0b0b0d;
    --panel: #0f1113;
    --accent-green: #004a11;
    --accent-yellow: #ffd235;
    --muted: rgba(255, 255, 255, 0.75);
    --glass: rgba(255, 255, 255, 0.04);
    --card: #0e1113;
    --radius: 14px;
    --max-w: 1100px;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.6);

    font-family: "Poppins", sans-serif;
}

/* =========================================================
   GLOBAL BACKGROUND — Animated Gradient
========================================================= */
body {
    margin: 0;
    background: linear-gradient(90deg, #000000, #cedbd0, #000000);
    background-size: 300% 300%;
    animation: gradientMove 12s ease-in-out infinite;
    overflow-x: hidden;
    color: white;
    position: relative;
    z-index: 0;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* =========================================================
   PARTICLE ANIMATION
========================================================= */
.background-animation {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(180, 255, 120, 0.8);
    border-radius: 50%;
    filter: blur(1px);
    animation: floatUp 20s linear infinite;
}

@keyframes floatUp {
    0%   { transform: translateY(120vh) translateX(0); opacity: 0; }
    10%  { opacity: 0.8; }
    100% { transform: translateY(-10vh) translateX(40vw); opacity: 0; }
}


#text-gradient{
    background: linear-gradient(90deg, #bbcb10, #00ff2a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
} 



/* =========================================================
   CARDS
========================================================= */
.feature-card {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* =========================================================
   AUTO SLIDER
========================================================= */
.auto-slider {
    width: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

.slide-track {
    display: flex;
    width: calc(350px * 10);
    animation: scroll 40s linear infinite;
}

.slide {
    width: 350px;
    height: 220px;
    margin: 0 12px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}


    .btn-cta {
        background: linear-gradient(90deg, var(--accent-green), var(--accent-yellow));
        color: #07120a;
        padding: 0.8rem 1.3rem;
        border-radius: 999px;
        font-weight: 700;
        border: 1px solid green;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .btn-cta:hover {
        background: linear-gradient(90deg, green, var(--accent-green));
        color: #d1f9c2ff;
        transition: 0.5s;

    }

@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 5)); }
}


@media only screen and (max-width: 768px) {
    body {
    margin: 0;
    background: linear-gradient(90deg, #000000, #008714, #000000);
    background-size: 300% 300%;
    animation: gradientMove 12s ease-in-out infinite;
    overflow-x: hidden;
    color: white;
    position: relative;
    z-index: 0;
}
    
}


