/* ==================== Reset & Variables ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00f0ff;
    --primary-dark: #00b8d4;
    --primary-light: #33f5ff;
    --secondary: #0a0a1a;
    --accent: #b347ff;
    --accent2: #4361ee;
    --neon-pink: #ff2d95;
    --neon-green: #00ff88;
    --text: #c8d6e5;
    --text-light: #7f8fa6;
    --white: #ffffff;
    --dark-bg: #050510;
    --card-bg: rgba(10, 15, 40, 0.6);
    --glass-bg: rgba(15, 20, 50, 0.4);
    --glass-border: rgba(0, 240, 255, 0.15);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--accent2) 100%);
    --gradient-neon: linear-gradient(135deg, #00f0ff 0%, #b347ff 100%);
    --shadow: 0 0 20px rgba(0, 240, 255, 0.15), 0 0 60px rgba(0, 240, 255, 0.05);
    --shadow-lg: 0 0 40px rgba(0, 240, 255, 0.2), 0 0 80px rgba(179, 71, 255, 0.1);
    --glow-cyan: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.2);
    --glow-purple: 0 0 10px rgba(179, 71, 255, 0.5), 0 0 40px rgba(179, 71, 255, 0.2);
    --radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--dark-bg);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== Scan Lines Overlay ==================== */
.scan-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 240, 255, 0.008) 2px,
        rgba(0, 240, 255, 0.008) 4px
    );
}

/* ==================== Code Rain Canvas ==================== */
.code-rain-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.06;
}

/* ==================== Cyber Grid ==================== */
.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(0deg); }
    100% { transform: perspective(500px) rotateX(0deg) translateY(60px); }
}

/* ==================== Neon Text ==================== */
.neon-text {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 20px rgba(0, 240, 255, 0.3), 0 0 40px rgba(0, 240, 255, 0.15);
}

.neon-text-sm {
    color: var(--primary);
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
}

/* ==================== Glassmorphism Card ==================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.6;
}

/* Card Scan Line */
.card-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    animation: cardScan 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes cardScan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { top: 100%; opacity: 0; }
}

/* Card Shimmer / Holographic Effect */
.card-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 240, 255, 0.03),
        rgba(179, 71, 255, 0.03),
        transparent
    );
    z-index: 1;
    pointer-events: none;
}

.glass-card:hover .card-shimmer {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* ==================== Navbar ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 240, 255, 0.1), var(--shadow);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.logo-tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.navbar.scrolled .nav-links a {
    color: var(--text);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(0, 240, 255, 0.05);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
    background: rgba(0, 240, 255, 0.08);
    color: var(--primary);
}

.nav-cta {
    background: rgba(0, 240, 255, 0.1) !important;
    color: var(--primary) !important;
    padding: 8px 24px !important;
    border-radius: 50px !important;
    border: 1px solid rgba(0, 240, 255, 0.3) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
    background: rgba(0, 240, 255, 0.15) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
    box-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--primary);
}

/* ==================== Hero ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #050510 0%, #0a0a2e 30%, #0d0d35 50%, #050520 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    border-radius: 50%;
    animation: pulseGlow 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(179, 71, 255, 0.06) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    animation: pulseGlow 8s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

#hero3d, .hero-canvas {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.about-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    border-radius: 20px;
}

.about-image {
    position: relative;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary);
    border-radius: 50%;
    animation: float linear infinite;
    box-shadow: 0 0 6px rgba(0, 240, 255, 0.6);
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50px;
    padding: 8px 24px;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-subtitle {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

/* Glitch Effect */
.glitch-text {
    position: relative;
    animation: glitchShake 5s ease-in-out infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
}

.glitch-text::before {
    color: var(--primary);
    text-shadow: -2px 0 var(--neon-pink);
    animation: glitch1 3s infinite linear alternate-reverse;
}

.glitch-text::after {
    color: var(--accent);
    text-shadow: 2px 0 var(--accent2);
    animation: glitch2 2s infinite linear alternate-reverse;
}

@keyframes glitch1 {
    0%, 90%, 100% { clip-path: inset(0 0 100% 0); }
    92% { clip-path: inset(20% 0 40% 0); }
    94% { clip-path: inset(60% 0 10% 0); }
    96% { clip-path: inset(40% 0 30% 0); }
    98% { clip-path: inset(10% 0 60% 0); }
}

@keyframes glitch2 {
    0%, 88%, 100% { clip-path: inset(0 0 100% 0); }
    90% { clip-path: inset(50% 0 20% 0); }
    93% { clip-path: inset(10% 0 60% 0); }
    96% { clip-path: inset(70% 0 5% 0); }
    99% { clip-path: inset(30% 0 40% 0); }
}

@keyframes glitchShake {
    0%, 95%, 100% { transform: translate(0); }
    96% { transform: translate(-2px, 1px); }
    97% { transform: translate(2px, -1px); }
    98% { transform: translate(-1px, -1px); }
    99% { transform: translate(1px, 1px); }
}

.highlight {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-description {
    font-size: 18px;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-family: 'Rajdhani', sans-serif;
    min-height: 55px;
}

.typing-cursor {
    color: var(--primary);
    animation: blink 0.8s infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: rgba(0, 240, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4), 0 0 60px rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.5);
}

.btn-glitch {
    position: relative;
}

.btn-outline {
    border: 1px solid rgba(179, 71, 255, 0.3);
    color: var(--accent);
    background: rgba(179, 71, 255, 0.05);
}

.btn-outline:hover {
    background: rgba(179, 71, 255, 0.1);
    border-color: rgba(179, 71, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: var(--glow-purple);
}

.btn-small {
    padding: 10px 24px;
    font-size: 13px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    border-radius: 4px;
    display: inline-block;
    border: 1px solid rgba(0, 240, 255, 0.2);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-cyan);
    background: rgba(0, 240, 255, 0.15);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ==================== Hero Stats ==================== */
.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.stat {
    text-align: center;
    color: var(--white);
    padding: 20px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 8px;
    background: rgba(0, 240, 255, 0.02);
    min-width: 140px;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== Section Styles ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 240, 255, 0.05);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 240, 255, 0.15);
    font-family: 'Orbitron', sans-serif;
}

.section-tag i {
    font-size: 12px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.15);
}

.section-line {
    width: 80px;
    height: 2px;
    background: var(--gradient-neon);
    margin: 16px auto 0;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.section-description {
    color: var(--text-light);
    max-width: 500px;
    margin: 16px auto 0;
    font-family: 'Rajdhani', sans-serif;
}

/* ==================== About ==================== */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0a0a2e 50%, var(--dark-bg) 100%);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
}

.about-feature i {
    color: var(--primary);
    font-size: 18px;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.about-image-card {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(179, 71, 255, 0.05));
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.about-image-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08), transparent);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.experience-badge {
    background: rgba(0, 240, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 30px 40px;
    text-align: center;
    color: var(--white);
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: var(--glow-cyan);
}

.badge-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-text {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Rajdhani', sans-serif;
}

/* ==================== Services ==================== */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #080820 50%, var(--dark-bg) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 240, 255, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    box-shadow: var(--glow-cyan);
    background: rgba(0, 240, 255, 0.12);
}

.service-icon i {
    font-size: 24px;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
}

.service-link:hover {
    gap: 12px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* ==================== Projects ==================== */
.projects {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0a0a2e 50%, var(--dark-bg) 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(179, 71, 255, 0.3);
}

.project-icon {
    width: 50px;
    height: 50px;
    background: rgba(179, 71, 255, 0.1);
    border: 1px solid rgba(179, 71, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.project-card:hover .project-icon {
    box-shadow: var(--glow-purple);
}

.project-icon i {
    font-size: 20px;
    color: var(--accent);
    text-shadow: 0 0 8px rgba(179, 71, 255, 0.5);
}

.project-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
}

.project-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.project-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-status.active {
    background: rgba(0, 255, 136, 0.08);
    color: var(--neon-green);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
}

/* ==================== Products ==================== */
.products {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #080820 50%, var(--dark-bg) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-card {
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    gap: 24px;
    align-items: center;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 240, 255, 0.3);
}

.product-image {
    width: 80px;
    height: 80px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-card:hover .product-image {
    box-shadow: var(--glow-cyan);
}

.product-image i {
    font-size: 32px;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.product-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8px;
}

.product-info p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
}

/* ==================== Testimonials ==================== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0a0a2e 50%, var(--dark-bg) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(179, 71, 255, 0.3);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--primary);
    font-size: 14px;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.testimonial-card p {
    color: var(--text);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    font-family: 'Orbitron', sans-serif;
}

.testimonial-author h4 {
    font-size: 15px;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* ==================== Contact ==================== */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #080820 50%, var(--dark-bg) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.contact-item h4 {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 4px;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-cyan);
    background: rgba(0, 240, 255, 0.12);
}

.contact-form {
    border-radius: var(--radius);
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    outline: none;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.1), 0 0 20px rgba(0, 240, 255, 0.1);
}

.full-width {
    grid-column: 1 / -1;
}

/* ==================== Footer ==================== */
.footer {
    background: #030308;
    padding: 48px 0 0;
    position: relative;
    overflow: hidden;
}

.cyber-grid-footer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.08);
    position: relative;
    z-index: 1;
}

.footer-brand p {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
}

.footer-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 13px;
}

/* ==================== Scroll to Top ==================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: var(--glow-cyan);
    z-index: 999;
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    background: rgba(0, 240, 255, 0.15);
}

/* ==================== Animations ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 5, 16, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text) !important;
        padding: 12px 16px;
        width: 100%;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 26px;
    }
}
