@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Rajdhani:wght@500;600;700&display=swap');

:root {
    --bg-dark: #050814;
    --neon-cyan: #00f0ff;
    --neon-blue: #0055ff;
    --text-main: #ffffff;
    --text-muted: #8892b0;
    --border-glow: rgba(0, 240, 255, 0.15);
    --glass-bg: rgba(10, 15, 40, 0.6);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== THREE.JS CANVAS ===== */
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* ===== LOADER ===== */
.page-loader {
    position: fixed; inset: 0;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1.5rem;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-ring {
    width: 60px; height: 60px;
    border: 2px solid rgba(0,240,255,0.1);
    border-top-color: var(--neon-cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: relative;
    box-shadow: 0 0 20px rgba(0,240,255,0.3);
}
.loader-inner {
    position: absolute; inset: 6px;
    border: 2px solid transparent;
    border-bottom-color: var(--neon-blue);
    border-radius: 50%;
    animation: spin 1.2s linear infinite reverse;
}
.loader-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    letter-spacing: 0.3em;
    font-weight: 600;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 3rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.3s ease;
}
.nav.scrolled {
    background: rgba(5,8,20,0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glow);
    padding: 0.8rem 3rem;
}
.nav-logo {
    display: flex; align-items: center; gap: 0.6rem;
    text-decoration: none;
}
.logo-svg { width: 36px; height: 36px; }
.logo-text { display: flex; flex-direction: column; }
.logo-text span:first-child {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700; font-size: 1.3rem;
    color: #fff; letter-spacing: 0.05em; line-height: 1;
}
.logo-text span:last-child {
    font-size: 0.6rem; color: var(--neon-cyan);
    letter-spacing: 0.15em; font-weight: 500;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.85rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.05em;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--neon-cyan); }
.nav-cta {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    color: #000; text-decoration: none;
    padding: 0.55rem 1.4rem; border-radius: 4px;
    font-weight: 700; font-size: 0.85rem;
    transition: all 0.3s; box-shadow: 0 0 15px rgba(0,240,255,0.25);
}
.nav-cta:hover { box-shadow: 0 0 30px rgba(0,240,255,0.5); transform: translateY(-2px); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { width: 24px; height: 1.5px; background: #fff; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 0 4rem;
    position: relative; z-index: 1;
}
.hero-content {
    max-width: 700px;
    position: relative; z-index: 2;
}
.cyber-badge {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.4rem 1.2rem;
    background: rgba(0,240,255,0.06);
    border: 1px solid rgba(0,240,255,0.3);
    color: var(--neon-cyan); border-radius: 20px;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.12em; margin-bottom: 2rem;
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--neon-cyan); border-radius: 50%;
    animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700; line-height: 1.05;
    margin-bottom: 1.5rem; text-transform: uppercase;
}
.hero h1 span {
    background: linear-gradient(90deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.1rem; color: var(--text-muted);
    margin-bottom: 2.5rem; max-width: 520px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    color: #000; padding: 0.9rem 2rem; border-radius: 4px;
    text-decoration: none; font-weight: 700; font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0,240,255,0.3);
}
.btn-primary:hover { box-shadow: 0 0 40px rgba(0,240,255,0.6); transform: translateY(-3px); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(0,240,255,0.3);
    color: var(--neon-cyan); padding: 0.9rem 2rem; border-radius: 4px;
    text-decoration: none; font-weight: 600; font-size: 0.95rem;
    transition: all 0.3s;
}
.btn-secondary:hover {
    background: rgba(0,240,255,0.08);
    border-color: var(--neon-cyan);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
    z-index: 2;
}
.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(0,240,255,0.3); border-radius: 12px;
    display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
    width: 3px; height: 8px;
    background: var(--neon-cyan); border-radius: 2px;
    animation: scrollDown 1.5s ease infinite;
}
@keyframes scrollDown { 0% { opacity:1; transform:translateY(0); } 100% { opacity:0; transform:translateY(12px); } }
.hero-scroll-indicator span {
    font-size: 0.65rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.15em;
}

/* ===== SECTIONS ===== */
.section {
    padding: 7rem 3rem;
    position: relative; z-index: 1;
}
.section-alt {
    background: rgba(0,240,255,0.02);
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
}
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
    display: inline-block;
    font-size: 0.75rem; font-weight: 600;
    color: var(--neon-cyan); letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    background: rgba(0,240,255,0.06);
    padding: 0.3rem 1rem; border-radius: 20px;
    border: 1px solid rgba(0,240,255,0.15);
}
.section-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; margin-bottom: 0.75rem;
}
.section-header h2 span { color: var(--neon-cyan); }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative; overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.card-glow {
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(0,240,255,0.07) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.5s;
    pointer-events: none;
}
.service-card:hover .card-glow { opacity: 1; }
.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0,240,255,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,240,255,0.08);
}
.svc-icon {
    width: 56px; height: 56px;
    background: rgba(0,240,255,0.05);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; color: var(--neon-cyan);
}
.service-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem; margin-bottom: 0.75rem; color: #fff;
}
.service-card p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }
.card-list { list-style: none; margin-top: 1.25rem; padding: 0; }
.card-list li { color: var(--text-muted); font-size: 0.85rem; padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; gap: 0.5rem; }
.card-list li::before { content: '→'; color: var(--neon-cyan); font-size: 0.75rem; }
.card-number { position: absolute; top: 1.5rem; right: 1.5rem; font-family: 'Rajdhani', sans-serif; font-size: 2.5rem; font-weight: 700; color: rgba(0,240,255,0.06); line-height: 1; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; max-width: 1200px; margin: 0 auto; }
.why-item { display: flex; align-items: flex-start; gap: 1rem; background: var(--glass-bg); border: 1px solid var(--border-glow); border-radius: 12px; padding: 1.5rem; backdrop-filter: blur(8px); transition: all 0.3s; }
.why-item:hover { border-color: rgba(0,240,255,0.3); transform: translateY(-3px); }
.why-icon { width: 44px; height: 44px; flex-shrink: 0; background: rgba(0,240,255,0.05); border: 1px solid var(--border-glow); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--neon-cyan); }
.why-text h4 { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; color: #fff; margin-bottom: 0.25rem; }
.why-text p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

.contact-wrapper { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: start; background: var(--glass-bg); border: 1px solid var(--border-glow); border-radius: 24px; padding: 4rem; backdrop-filter: blur(10px); }
.contact-left h2 { font-family: 'Rajdhani', sans-serif; font-size: 2.5rem; margin-bottom: 1rem; line-height: 1.2; }
.contact-left h2 span { color: var(--neon-cyan); }
.contact-left p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.7; }
.btn-wa-big { background: #25D366; box-shadow: 0 0 20px rgba(37,211,102,0.3); }
.btn-wa-big:hover { box-shadow: 0 0 40px rgba(37,211,102,0.5); }
.contact-right { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { display: flex; align-items: center; gap: 1rem; background: rgba(5,8,20,0.8); border: 1px solid var(--border-glow); padding: 1.25rem 1.5rem; border-radius: 12px; transition: all 0.3s; }
.contact-card:hover { border-color: var(--neon-cyan); }
.contact-avatar { width: 42px; height: 42px; background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; color: #000; flex-shrink: 0; }
.contact-info h4 { font-size: 1rem; margin-bottom: 0.15rem; }
.contact-info a { color: var(--neon-cyan); text-decoration: none; font-weight: 600; font-size: 0.95rem; }

.floating-wa { position: fixed; bottom: 2rem; right: 2rem; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s; animation: pulse-wa 2s infinite; text-decoration: none; }
.floating-wa:hover { transform: scale(1.15); }
@keyframes pulse-wa { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); } 70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.site-footer { position: relative; z-index: 1; background: rgba(3,5,12,0.9); border-top: 1px solid var(--border-glow); padding: 4rem 3rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 1rem; line-height: 1.6; max-width: 280px; }
.footer-col h5 { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; color: #fff; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { padding: 0.3rem 0; color: var(--text-muted); font-size: 0.85rem; }
.footer-col a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; font-size: 0.85rem; }
.footer-col a:hover { color: var(--neon-cyan); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-glow); }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700; color: var(--neon-cyan); }
.hero-stat span { font-size: 0.8rem; color: var(--text-muted); }

.marquee-section { border-top: 1px solid var(--border-glow); border-bottom: 1px solid var(--border-glow); padding: 1rem 0; overflow: hidden; position: relative; z-index: 1; background: rgba(0,240,255,0.01); }
.marquee-track { display: flex; gap: 2rem; animation: marquee 25s linear infinite; width: max-content; }
.marquee-track span { font-family: 'Rajdhani', sans-serif; font-size: 0.85rem; color: var(--text-muted); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.marquee-track .dot { color: var(--neon-cyan); font-size: 0.5rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.process-timeline { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; }
.process-step { display: flex; gap: 2.5rem; padding: 2rem 0; border-bottom: 1px solid var(--border-glow); align-items: flex-start; transition: all 0.3s; }
.process-step:first-child { border-top: 1px solid var(--border-glow); }
.process-step:hover { padding-left: 1rem; }
.step-number { font-family: 'Rajdhani', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--neon-cyan); min-width: 60px; text-shadow: 0 0 10px rgba(0,240,255,0.3); line-height: 1; }
.step-content h4 { font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; margin-bottom: 0.4rem; color: #fff; }
.step-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 1024px) {
    .hero { padding: 8rem 2rem 4rem; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { grid-template-columns: 1fr; padding: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section { padding: 5rem 2rem; }
}
@media (max-width: 768px) {
    .nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; position: fixed; inset: 0; background: rgba(5,8,20,0.97); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; z-index: 999; }
    .nav-links.open { display: flex; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .hero h1 { font-size: 2.5rem; }
    .hero { padding: 7rem 1.5rem 3rem; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .why-grid { grid-template-columns: 1fr; }
    .process-step { flex-direction: column; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .site-footer { padding: 3rem 1.5rem 0; }
}

