body {
    background-color: #020617;
    overflow-x: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Particles Canvas styling */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* Covers the hero section primarily */
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
    /* Let clicks pass through unless we capture mouse */
}

/* Glowing Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-secondary {
    background: linear-gradient(to right, #10b981, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism for Navbar & Mobile Menu */
.glass-nav {
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-menu {
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Tech Ring Animation */
.tech-ring {
    border: 1px dashed rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

/* Hide scrollbar when mobile menu is open */
.overflow-hidden {
    overflow: hidden !important;
}


/* Pricing Plan */
@keyframes drop {
    0% {
        top: -10%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        top: 110%;
        opacity: 0;
    }
}

/* Support */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}


/* projects Styles */
.filter-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    /* 14px */
    font-weight: 500;
    color: #9ca3af;
    /* text-gray-400 */
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    color: white;
}

.filter-btn.active {
    background-color: #10b981;
    /* Primary Green */
    color: white;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

/* Animation Keyframes for Line Drop */
@keyframes drop {
    0% {
        top: -10%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 110%;
        opacity: 0;
    }
}

/* Filtering Animation Class */
.project-card {
    transition: all 0.5s ease-in-out;
    transform: scale(1);
    opacity: 1;
}

.project-card.hide {
    transform: scale(0);
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}



/* Infinite Scroll Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
}

/* Pause on Hover (Optional) */
.animate-marquee:hover {
    animation-play-state: paused;
}