/* General Styling */
body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    margin: 0;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100;
    transform: translate(-50%, -50%);
}

/* Glassmorphism Elements */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Neon Glows & Effects */
.neon-border:hover {
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.hero-text {
    background: linear-gradient(to right, #fff 20%, #3b82f6 50%, #fff 80%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine { to { background-position: 200% center; } }

/* Floating & Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating { animation: float 5s ease-in-out infinite; }
.delay-1 { animation-delay: 1s; }
.delay-2 { animation-delay: 2s; }

/* Blobs */
.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.4;
}
.blob-1 { top: 10%; left: 5%; background: #1d4ed8; }
.blob-2 { bottom: 10%; right: 5%; background: #4f46e5; }

.contact-blob {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 350px;
    height: 350px;
    background: #25D366;
    filter: blur(120px);
    opacity: 0.12;
    z-index: -1;
}

/* Utils */
.hidden-section { display: none !important; }

.icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.shadow-glow { box-shadow: 0 0 25px rgba(59, 130, 246, 0.4); }

.wp-glow:hover {
    filter: drop-shadow(0 0 25px rgba(37, 211, 102, 0.7));
    transform: scale(1.1) rotate(5deg);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}