@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-dark: #030014;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --neon-blue: #00f0ff;
    --neon-purple: #bd00ff;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; /* Custom cursor setup later */ }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; font-weight: 800; }
a { text-decoration: none; color: white; transition: 0.3s; }

/* --- CUSTOM CURSOR --- */
.cursor {
    width: 20px; height: 20px; border: 1px solid var(--neon-blue);
    border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999;
    transition: transform 0.1s;
}

/* --- ANIMATED BACKGROUND --- */
.bg-blob {
    position: absolute; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(189,0,255,0.2) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px); animation: moveBlob 10s infinite alternate; z-index: -1;
}

@keyframes moveBlob {
    0% { top: 0; left: 0; }
    100% { top: 20%; left: 30%; }
}

/* --- NAVIGATION --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 5%; position: fixed; width: 100%; top: 0; z-index: 100;
    backdrop-filter: blur(10px); border-bottom: 1px solid var(--border);
}
.logo { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
.cta-glow {
    padding: 12px 30px; background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
    border-radius: 30px; font-weight: 700; color: white;
    box-shadow: 0 0 20px rgba(189,0,255,0.4);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
    background: radial-gradient(circle at center, #1a1a2e 0%, #030014 70%);
}

.hero h1 {
    font-size: 6vw; line-height: 0.9; text-transform: uppercase;
    background: linear-gradient(to bottom, #fff, #999);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero-stats {
    display: flex; gap: 50px; justify-content: center; margin-top: 60px;
    border-top: 1px solid var(--border); padding-top: 30px;
}
.stat-item h3 { font-size: 2.5rem; color: var(--neon-blue); }
.stat-item p { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* --- INFINITE MARQUEE (BRANDS) --- */
.marquee-section { padding: 50px 0; background: #000; overflow: hidden; border-y: 1px solid var(--border); }
.marquee-content { display: flex; gap: 50px; animation: scroll 20s linear infinite; }
.brand-logo { height: 50px; opacity: 0.5; filter: grayscale(100%); transition: 0.3s; }
.brand-logo:hover { opacity: 1; filter: grayscale(0%); }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* --- CLIENT PATHWAY (Cards) --- */
.pathway-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 100px 5%; }
.path-card {
    background: var(--glass); padding: 40px; border: 1px solid var(--border);
    border-radius: 20px; transition: 0.4s; position: relative; overflow: hidden;
}
.path-card:hover { transform: translateY(-10px); border-color: var(--neon-blue); }
.path-card::before {
    content:''; position: absolute; top:0; left:0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    transform: scaleX(0); transform-origin: left; transition: 0.4s;
}
.path-card:hover::before { transform: scaleX(1); }

/* --- PORTFOLIO (FIVERR INTEGRATION) --- */
.portfolio-section { padding: 100px 5%; }
.portfolio-item {
    display: flex; align-items: center; gap: 50px; margin-bottom: 100px;
}
.portfolio-item:nth-child(even) { flex-direction: row-reverse; }
.p-image {
    flex: 1.5; height: 500px; border-radius: 20px; overflow: hidden;
    position: relative; border: 1px solid var(--border);
}
.p-image img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.p-image:hover img { transform: scale(1.05); }
.p-content { flex: 1; }
.p-tag {
    display: inline-block; padding: 5px 15px; background: rgba(0, 240, 255, 0.1);
    color: var(--neon-blue); border-radius: 50px; margin-bottom: 20px; font-size: 0.8rem;
}

/* --- MEGA FOOTER --- */
footer {
    background: #000; padding: 80px 5% 20px; border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 60px;
}
.footer-col h4 { color: white; margin-bottom: 25px; font-size: 1.2rem; }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--neon-blue); padding-left: 5px; }

/* --- UTILS --- */
.reveal { opacity: 0; transform: translateY(50px); transition: 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Mobile Fixes */
@media (max-width: 768px) {
    /* Footer stacking */
    .footer-grid {
        grid-template-columns: 1fr !important; /* Stack columns on mobile */
        text-align: center;
    }
    .footer-grid div {
        margin-bottom: 20px;
    }
    /* Center the social icons on mobile */
    .footer-grid div div {
        justify-content: center;
    }
}