/* --- Variables & Reset --- */
:root {
    --bg-color: #050505;
    --card-bg: #0f0f13;
    --primary: #00f3ff; /* Cyber Cyan */
    --secondary: #bc13fe; /* Neon Purple */
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Background Effects --- */
.bg-grid {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}

.bg-glow {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(188, 19, 254, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* --- Typography & Utilities --- */
h1, h2, h3 { font-family: var(--font-heading); text-transform: uppercase; }
.highlight { color: var(--primary); text-shadow: 0 0 10px var(--primary); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 50px; letter-spacing: 2px; }

/* --- Navbar --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 50px;
    position: fixed; width: 100%; top: 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo { font-size: 1.8rem; font-weight: 900; letter-spacing: 1px; color: #fff; }

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a {
    text-decoration: none; color: var(--text-main); font-weight: 500; font-size: 1.1rem;
    transition: 0.3s;
}
.nav-links a:hover { color: var(--primary); text-shadow: 0 0 8px var(--primary); }

.btn-nav {
    border: 1px solid var(--primary); padding: 8px 20px;
    color: var(--primary) !important;
}
.btn-nav:hover { background: var(--primary); color: #000 !important; }

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.hero h1 {
    font-size: 4rem; line-height: 1.1; margin-bottom: 20px;
    position: relative;
}

/* Glitch Effect */
.glitch { position: relative; color: white; }
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-color);
}
.glitch::before { left: 2px; text-shadow: -1px 0 var(--secondary); clip-path: inset(0 0 0 0); animation: glitch-anim-1 2s infinite linear alternate-reverse; }
.glitch::after { left: -2px; text-shadow: -1px 0 var(--primary); clip-path: inset(0 0 0 0); animation: glitch-anim-2 3s infinite linear alternate-reverse; }

@keyframes glitch-anim-1 {
    0% { clip-path: inset(20% 0 80% 0); }
    20% { clip-path: inset(60% 0 10% 0); }
    100% { clip-path: inset(10% 0 50% 0); }
}
@keyframes glitch-anim-2 {
    0% { clip-path: inset(80% 0 5% 0); }
    20% { clip-path: inset(10% 0 60% 0); }
    100% { clip-path: inset(40% 0 20% 0); }
}

.subtitle { font-size: 1.5rem; color: var(--text-dim); margin-bottom: 20px; }
.description { max-width: 600px; margin: 0 auto 40px; color: var(--text-dim); }

.hero-btns { display: flex; gap: 20px; justify-content: center; margin-bottom: 30px; }
.btn-primary {
    background: var(--primary); color: #000; padding: 12px 30px;
    text-decoration: none; font-weight: 700; text-transform: uppercase;
    clip-path: polygon(10% 0, 100% 0, 100% 80%, 90% 100%, 0 100%, 0 20%);
    transition: 0.3s;
}
.btn-primary:hover { background: #fff; box-shadow: 0 0 20px var(--primary); }

.btn-secondary {
    border: 1px solid var(--text-dim); color: var(--text-main); padding: 12px 30px;
    text-decoration: none; font-weight: 700; text-transform: uppercase;
    transition: 0.3s;
}
.btn-secondary:hover { border-color: var(--secondary); color: var(--secondary); }

.location-tag { font-size: 0.9rem; color: var(--text-dim); opacity: 0.7; }

/* --- Cards / Features --- */
.card-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    transition: 0.3s;
    position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1); }

.card-icon { font-size: 3rem; color: var(--secondary); margin-bottom: 20px; }
.card h3 { margin-bottom: 15px; font-size: 1.4rem; }
.card p { color: var(--text-dim); }

/* --- Stats Bar --- */
.stats-bar {
    display: flex; justify-content: space-around;
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.5);
}
.stat { text-align: center; }
.stat .count { display: block; font-size: 2.5rem; font-weight: 700; color: var(--primary); font-family: var(--font-heading); }
.stat .label { color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

/* --- Services --- */
.service-row { display: flex; align-items: center; gap: 50px; margin-bottom: 80px; }
.service-row.reverse { flex-direction: row-reverse; }

.service-img { flex: 1; position: relative; }
.service-img img { width: 100%; border-radius: 5px; filter: grayscale(100%) contrast(1.2); transition: 0.5s; }
.service-img:hover img { filter: grayscale(0%); }
.service-img .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(45deg, rgba(0, 243, 255, 0.2), transparent);
    mix-blend-mode: overlay;
}

.service-content { flex: 1; }
.service-content h3 { font-size: 2rem; margin-bottom: 20px; }
.feature-list { list-style: none; margin-top: 20px; }
.feature-list li { margin-bottom: 10px; color: var(--text-dim); display: flex; align-items: center; gap: 10px; }
.feature-list li i { color: var(--primary); }

/* --- CTA & Footer --- */
.cta-section {
    text-align: center; padding: 100px 20px;
    background: linear-gradient(to top, #0f0f13, transparent);
}
.contact-form { margin-top: 30px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.contact-form input {
    padding: 15px; width: 300px;
    background: transparent; border: 1px solid var(--text-dim);
    color: white; font-family: var(--font-body);
}
.contact-form input:focus { border-color: var(--primary); outline: none; }

footer {
    padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center; font-size: 0.9rem; color: var(--text-dim);
}
.socials { margin-top: 20px; }
.socials a { color: white; margin: 0 10px; font-size: 1.2rem; transition: 0.3s; }
.socials a:hover { color: var(--primary); }

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .navbar { padding: 20px; }
    .hamburger { display: block; color: white; }
    .nav-links {
        position: fixed; top: 70px; right: -100%;
        flex-direction: column; background: #000;
        width: 100%; text-align: center; padding: 40px;
        transition: 0.3s;
    }
    .nav-links.active { right: 0; }
    .hero h1 { font-size: 2.5rem; }
    .service-row { flex-direction: column !important; }
}