/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Blue Color Palette */
    --primary-dark: #0a0e1a;
    --secondary-dark: #0f1419;
    --tertiary-dark: #1a1f2e;
    --accent-blue: #00d4ff;
    --neon-blue: #00ffff;
    --electric-blue: #0080ff;
    --deep-blue: #001a33;
    --cyber-blue: #0066cc;
    --quantum-blue: #004080;
    
    /* Neon Colors */
    --neon-cyan: #00ffff;
    --neon-purple: #8000ff;
    --neon-pink: #ff0080;
    --neon-green: #00ff80;
    --neon-yellow: #ffff00;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b3d9ff;
    --text-muted: #6699cc;
    --text-accent: #00d4ff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d4ff, #0080ff);
    --gradient-secondary: linear-gradient(135deg, #0080ff, #8000ff);
    --gradient-neon: linear-gradient(135deg, #00ffff, #ff0080);
    --gradient-cyber: linear-gradient(135deg, #0066cc, #00d4ff);
    --gradient-quantum: linear-gradient(135deg, #004080, #00ffff);
    
    /* Shadows and Glows */
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.5);
    --glow-cyan: 0 0 20px rgba(0, 255, 255, 0.5);
    --glow-purple: 0 0 20px rgba(128, 0, 255, 0.5);
    --shadow-cyber: 0 8px 32px rgba(0, 128, 255, 0.3);
    
    /* Animations */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: starTwinkle 3s ease-in-out infinite;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape-morph {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    animation: shapeMorph 10s ease-in-out infinite;
}

.shape-1 {
    background: var(--gradient-primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    background: var(--gradient-secondary);
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    background: var(--gradient-neon);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    background: var(--gradient-cyber);
    bottom: 20%;
    right: 25%;
    animation-delay: 6s;
}

/* Typography */
.cyber-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
}

.glitch {
    font-family: 'Orbitron', monospace;
    position: relative;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitchTop 1s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    color: var(--neon-cyan);
}

.glitch::after {
    animation: glitchBottom 1.5s infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    color: var(--neon-pink);
}

.cyber-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.neon-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    animation: neonPulse 2s ease-in-out infinite;
}

.matrix-text {
    font-family: 'JetBrains Mono', monospace;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    animation: matrixGlow 3s ease-in-out infinite;
}

.hologram-text {
    color: var(--accent-blue);
    text-shadow: 0 0 10px var(--accent-blue);
    position: relative;
    animation: hologramFlicker 4s ease-in-out infinite;
}

.glitch-text {
    font-family: 'Orbitron', monospace;
    position: relative;
    animation: textGlitch 3s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitchTop 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    color: var(--neon-cyan);
}

.glitch-text::after {
    animation: glitchBottom 2.5s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    color: var(--neon-pink);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.98);
    box-shadow: var(--shadow-cyber);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    position: relative;
}

.logo-hexagon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: logoRotate 20s linear infinite;
}

.hexagon-inner {
    position: relative;
    z-index: 2;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.logo-pulse {
    position: absolute;
    inset: -5px;
    background: var(--gradient-primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0.3;
    animation: logoPulse 3s ease-in-out infinite;
}

.brand-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

.neon-link {
    position: relative;
    overflow: hidden;
}

.neon-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}


.neon-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    box-shadow: var(--glow-blue);
}

.neon-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cyber-btn {
    position: relative;
    overflow: hidden;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-ghost {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
}

.btn-ghost:hover {
    background: var(--accent-blue);
    color: var(--primary-dark);
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
}

.btn-neon {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: 2px solid transparent;
}

.btn-neon:hover {
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
}

.btn-glitch,
.btn-energy {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-glitch {
    background: var(--gradient-neon);
    animation: buttonGlitch 0.3s ease-in-out;
}

.btn-energy {
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    animation: energyPulse 1s ease-in-out infinite;
}

.cyber-btn:hover .btn-glitch,
.cyber-btn:hover .btn-energy {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: gridPulse 4s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    animation: fadeInUp 1s ease 0.2s both;
}

.floating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
    animation: iconSpin 4s linear infinite;
}

.badge-text {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: var(--accent-blue);
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--accent-blue);
    white-space: nowrap;
    animation: typewriter 3s steps(20) 1s both, blink 1s infinite;
}

.badge-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0.3;
    animation: badgeGlow 3s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 500px;
    font-family: 'Space Grotesk', sans-serif;
}

.fade-in-text {
    animation: fadeInText 2s ease 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.morphing-btn {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-primary);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.morphing-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-blue);
}

.btn-particles {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0;
    animation: particleMove 3s linear infinite;
}

.morphing-btn:hover .btn-particles {
    opacity: 1;
}

.btn-wave {
    position: absolute;
    inset: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: waveEffect 2s ease-in-out infinite;
}

.morphing-btn:hover .btn-wave {
    opacity: 0.3;
}

.hologram-btn {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hologram-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 30px var(--neon-cyan);
    transform: translateY(-3px);
}

.btn-hologram {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    opacity: 0;
    animation: hologramScan 3s ease-in-out infinite;
}

.hologram-btn:hover .btn-hologram {
    opacity: 1;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cyber-card {
    background: rgba(26, 31, 46, 0.8);
    border: 1px solid var(--accent-blue);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.cyber-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-blue);
    border-color: var(--neon-cyan);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace; 
} 
.stat-counter-inner{
    font-size: 1.5rem;
    font-weight: 900;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace; 
    background-color: #ffffff;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-scan-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    animation: scanLine 3s ease-in-out infinite;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.hologram-display {
    position: relative;
    width: 400px;
    height: 400px;
}

.hologram-frame {
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent-blue);
    border-radius: 12px;
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--neon-cyan);
}

.frame-corner.tl {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
}

.frame-corner.tr {
    top: -3px;
    right: -3px;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bl {
    bottom: -3px;
    left: -3px;
    border-right: none;
    border-top: none;
}

.frame-corner.br {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
}

.hologram-content {
    position: absolute;
    inset: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-visualization {
    position: absolute;
    inset: 0;
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: var(--gradient-primary);
    animation: dataFlow 2s ease-in-out infinite;
}

.stream-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.stream-2 {
    top: 30%;
    right: 25%;
    animation-delay: 0.5s;
}

.stream-3 {
    bottom: 25%;
    left: 30%;
    animation-delay: 1s;
}

.central-orb {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-rings {
    position: absolute;
    inset: 0;
}

.ring {
    position: absolute;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    opacity: 0.6;
}

.ring-1 {
    inset: 0;
    animation: ringRotate 10s linear infinite;
}

.ring-2 {
    inset: 15px;
    border-color: var(--neon-cyan);
    animation: ringRotate 8s linear infinite reverse;
}

.ring-3 {
    inset: 30px;
    border-color: var(--neon-purple);
    animation: ringRotate 6s linear infinite;
}

.orb-core {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.core-pulse {
    width: 40px;
    height: 40px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: corePulse 2s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    inset: 0;
}

.element {
    position: absolute;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid var(--accent-blue);
    border-radius: 8px;
    padding: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-blue);
    animation: elementFloat 4s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.element-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

.hologram-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.1) 2px,
        rgba(0, 255, 255, 0.1) 4px
    );
    animation: scanlines 2s linear infinite;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--secondary-dark);
    position: relative;
}

.section-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.circuit-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--accent-blue) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--neon-cyan) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.1;
    animation: circuitPulse 6s ease-in-out infinite;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cyber-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.badge-scanner {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    opacity: 0.3;
    animation: badgeScanner 3s ease-in-out infinite;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Orbitron', monospace;
}

.title-word {
    display: inline-block;
    margin-right: 1rem;
    animation: wordFloat 3s ease-in-out infinite;
}

.title-word:nth-child(2) {
    animation-delay: 0.2s;
}

.title-word:nth-child(3) {
    animation-delay: 0.4s;
}

.cyber-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: 'Space Grotesk', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.cyber-service-card {
    background: rgba(26, 31, 46, 0.8);
    border: 1px solid var(--accent-blue);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.cyber-service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--glow-blue);
    border-color: var(--neon-cyan);
}

.featured-card {
    border: 2px solid var(--neon-cyan);
    transform: scale(1.05);
}

.featured-card:hover {
    transform: scale(1.05) translateY(-10px) rotateX(5deg);
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-service-card:hover .card-glow {
    opacity: 1;
}

.featured-glow {
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.2), transparent);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.rotating-icon {
    width: 70px;
    height: 70px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-core {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    animation: iconFloat 3s ease-in-out infinite;
}

.icon-orbit {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    border-top-color: transparent;
    animation: orbitRotate 4s linear infinite;
}

.service-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-badge {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    animation: badgePulse 2s ease-in-out infinite;
}

.featured-badge {
    background: var(--gradient-neon);
    color: var(--text-primary);
    animation: featuredGlow 3s ease-in-out infinite;
}

.cyber-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Space Grotesk', sans-serif;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-family: 'Space Grotesk', sans-serif;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-service {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-blue);
}

.featured-btn {
    background: var(--gradient-neon);
}

.btn-scanner {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    animation: buttonScanner 2s ease-in-out infinite;
}

.btn-service:hover .btn-scanner {
    opacity: 1;
}

.neon-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-blue);
    font-family: 'Orbitron', monospace;
}

.featured-price {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.card-circuit {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, transparent 40%, var(--accent-blue) 41%, var(--accent-blue) 42%, transparent 43%);
    opacity: 0.1;
}

.featured-circuit {
    background: linear-gradient(45deg, transparent 40%, var(--neon-cyan) 41%, var(--neon-cyan) 42%, transparent 43%);
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background: var(--primary-dark);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cyber-filter {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-filter.active,
.cyber-filter:hover {
    background: var(--accent-blue);
    color: var(--primary-dark);
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
}

.filter-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-filter:hover .filter-glow {
    opacity: 0.2;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.cyber-portfolio-item {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(26, 31, 46, 0.8);
    border: 1px solid var(--accent-blue);
    transition: var(--transition-smooth);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.cyber-portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--glow-blue);
    border-color: var(--neon-cyan);
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.cyber-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 2rem;
}

.cyber-portfolio-item:hover .cyber-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--text-primary);
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.project-description {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-family: 'Space Grotesk', sans-serif;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.neon-tag {
    background: rgba(0, 255, 255, 0.2);
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
}

.btn-project {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-project:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-blue);
}

.project-preview {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-cyber);
    position: relative;
}

.ai-preview {
    background: radial-gradient(circle, rgba(0, 128, 255, 0.2), rgba(128, 0, 255, 0.1));
}

.neural-visualization {
    position: relative;
    width: 300px;
    height: 200px;
}

.neural-nodes {
    position: absolute;
    inset: 0;
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: nodeGlow 2s ease-in-out infinite;
}

.node-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.node-2 {
    top: 70%;
    left: 20%;
    animation-delay: 0.5s;
}

.node-3 {
    top: 45%;
    right: 30%;
    animation-delay: 1s;
}

.node-4 {
    top: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.neural-connections {
    position: absolute;
    inset: 0;
}

.connection {
    stroke: var(--accent-blue);
    stroke-width: 2;
    opacity: 0.6;
    animation: connectionPulse 3s ease-in-out infinite;
}

.vr-preview {
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2), rgba(255, 0, 128, 0.1));
}

.vr-headset {
    position: relative;
    width: 200px;
    height: 120px;
}

.headset-frame {
    width: 100%;
    height: 80px;
    background: var(--tertiary-dark);
    border: 2px solid var(--neon-cyan);
    border-radius: 40px;
    position: relative;
}

.headset-lenses {
    position: absolute;
    top: 20px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 20px;
}

.lens {
    width: 50px;
    height: 40px;
    background: var(--gradient-neon);
    border-radius: 50%;
    animation: lensGlow 2s ease-in-out infinite;
}

.lens-right {
    animation-delay: 0.5s;
}

.vr-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent);
    border-radius: 50px;
    animation: vrPulse 3s ease-in-out infinite;
}

.blockchain-preview {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), rgba(0, 128, 255, 0.1));
}

.blockchain-visualization {
    position: relative;
    width: 300px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block {
    width: 80px;
    height: 60px;
    background: var(--tertiary-dark);
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: blockGlow 3s ease-in-out infinite;
}

.block-1 {
    animation-delay: 0s;
}

.block-2 {
    animation-delay: 1s;
}

.block-3 {
    animation-delay: 2s;
}

.block-hash {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent-blue);
}

.chain-connections {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.chain-link {
    width: 30px;
    height: 4px;
    background: var(--gradient-primary);
    animation: chainPulse 2s ease-in-out infinite;
}

.link-1 {
    animation-delay: 0.5s;
}

.link-2 {
    animation-delay: 1.5s;
}

.quantum-preview {
    background: radial-gradient(circle, rgba(128, 0, 255, 0.2), rgba(0, 255, 255, 0.1));
}

.quantum-visualization {
    position: relative;
    width: 200px;
    height: 200px;
}

.quantum-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--neon-purple);
    border-radius: 50%;
    animation: quantumFloat 4s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.particle-3 {
    bottom: 30%;
    left: 40%;
    animation-delay: 2s;
}

.quantum-field {
    position: absolute;
    inset: 20px;
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    animation: quantumField 6s linear infinite;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--secondary-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-family: 'Space Grotesk', sans-serif;
}

.cyber-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cyber-stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--accent-blue);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.cyber-stat-item:hover {
    transform: translateX(10px);
    box-shadow: var(--glow-blue);
    border-color: var(--neon-cyan);
}

.stat-icon {
    font-size: 2rem;
    animation: iconPulse 3s ease-in-out infinite;
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
    font-family: 'Orbitron', monospace;
}

.stat-label {
    color: var(--text-secondary);
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-cta {
    display: flex;
    gap: 1rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cyber-terminal {
    width: 100%;
    max-width: 500px;
    background: var(--primary-dark);
    border: 2px solid var(--accent-blue);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--glow-blue);
}

.terminal-header {
    background: var(--tertiary-dark);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--accent-blue);
}

.terminal-controls {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    width: 12px;
    height: 40px;
    border-radius: 50%;
}

.control-btn.close {
    background: #ff5f56;
}

.control-btn.minimize {
    background: #ffbd2e;
}

.control-btn.maximize {
    background: #27ca3f;
}

.terminal-title {
    color: var(--accent-blue);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.terminal-line {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prompt {
    color: var(--neon-green);
    font-weight: 600;
}

.command {
    color: var(--accent-blue);
}

.typewriter-command {
    overflow: hidden;
    border-right: 2px solid var(--accent-blue);
    white-space: nowrap;
    animation: typewriter 2s steps(20) 1s both, blink 1s infinite;
}

.output {
    color: var(--text-secondary);
}

.output.success {
    color: var(--neon-green);
}

.output.warning {
    color: var(--neon-yellow);
}

.terminal-cursor {
    color: var(--accent-blue);
    animation: blink 1s infinite;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--primary-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cyber-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(26, 31, 46, 0.6);
    border: 1px solid var(--accent-blue);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.cyber-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-blue);
    border-color: var(--neon-cyan);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--gradient-primary);
    position: relative;
}

.icon-glow {
    font-size: 1.5rem;
    animation: iconGlow 3s ease-in-out infinite;
}

.contact-details {
    flex: 1;
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
}

.contact-text {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-form-container {
    position: relative;
}

.cyber-form-wrapper {
    background: rgba(26, 31, 46, 0.8);
    border: 1px solid var(--accent-blue);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.form-scanner-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    animation: formScanner 4s ease-in-out infinite;
}

.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.cyber-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-blue);
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-input {
    width: 100%;
    padding: 1rem;
    background: rgba(10, 14, 26, 0.8);
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
    font-family: 'Space Grotesk', sans-serif;
}

.cyber-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.cyber-input::placeholder {
    color: var(--text-muted);
}

.input-glow {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cyber-input:focus + .input-glow {
    opacity: 1;
    animation: inputGlow 2s ease-in-out infinite;
}

.cyber-submit-btn {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-primary);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-blue);
}

.btn-loading {
    position: absolute;
    inset: 0;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loading-animation {
    display: flex;
    gap: 0.5rem;
}

.loading-dot {
    width: 8px;
    height: 8px;
    background: var(--text-primary);
    border-radius: 50%;
    animation: loadingDots 1.5s ease-in-out infinite;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.btn-success {
    position: absolute;
    inset: 0;
    background: var(--gradient-cyber);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-text {
    color: var(--neon-green);
    font-weight: 700;
}

/* Footer */
.cyber-footer {
    background: var(--primary-dark);
    border-top: 1px solid var(--accent-blue);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand .logo-container {
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 1rem 0 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.cyber-social {
    width: 50px;
    height: 50px;
    background: rgba(26, 31, 46, 0.8);
    border: 1px solid var(--accent-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.cyber-social:hover {
    transform: translateY(-3px);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.social-icon {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.social-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-social:hover .social-glow {
    opacity: 0.2;
}

.footer-links {
    display: contents;
}

.footer-column {
    position: relative;
}

.footer-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
}

.footer-link:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 10px var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid var(--accent-blue);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.footer-copyright {
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.legal-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    font-family: 'Space Grotesk', sans-serif;
}

.legal-link:hover {
    color: var(--accent-blue);
}

/* Animations */
@keyframes starTwinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
}

@keyframes shapeMorph {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        border-radius: 50%;
    }
    25% { 
        transform: translateY(-20px) rotate(90deg);
        border-radius: 20%;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg);
        border-radius: 0%;
    }
    75% { 
        transform: translateY(-30px) rotate(270deg);
        border-radius: 30%;
    }
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitchTop {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

@keyframes glitchBottom {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, 2px); }
    80% { transform: translate(-2px, -2px); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes neonPulse {
    0%, 100% { 
        text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
        opacity: 1;
    }
    50% { 
        text-shadow: 0 0 20px var(--neon-cyan), 0 0 30px var(--neon-cyan), 0 0 40px var(--neon-cyan);
        opacity: 0.8;
    }
}

@keyframes matrixGlow {
    0%, 100% { 
        text-shadow: 0 0 10px var(--neon-green);
        opacity: 1;
    }
    50% { 
        text-shadow: 0 0 20px var(--neon-green), 0 0 30px var(--neon-green);
        opacity: 0.7;
    }
}

@keyframes hologramFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
    75% { opacity: 0.9; }
    85% { opacity: 0.7; }
    95% { opacity: 1; }
}

@keyframes textGlitch {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(-1px, 1px); }
    20% { transform: translate(1px, -1px); }
    30% { transform: translate(-1px, -1px); }
    40% { transform: translate(1px, 1px); }
    50% { transform: translate(-1px, 1px); }
    60% { transform: translate(1px, -1px); }
    70% { transform: translate(-1px, -1px); }
    80% { transform: translate(1px, 1px); }
    90% { transform: translate(-1px, 1px); }
}

@keyframes logoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

@keyframes buttonGlitch {
    0%, 100% { transform: translate(0); }
    25% { transform: translate(-1px, 1px); }
    50% { transform: translate(1px, -1px); }
    75% { transform: translate(-1px, -1px); }
}

@keyframes energyPulse {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes iconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes badgeGlow {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes particleMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

@keyframes waveEffect {
    0%, 100% { 
        transform: translateX(-100%) skewX(-15deg);
        opacity: 0;
    }
    50% { 
        transform: translateX(0) skewX(-15deg);
        opacity: 1;
    }
}

@keyframes hologramScan {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes scanLine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

@keyframes dataFlow {
    0%, 100% { 
        transform: translateY(0);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px);
        opacity: 1;
    }
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes corePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px var(--neon-cyan);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 40px var(--neon-cyan);
    }
}

@keyframes elementFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

@keyframes scanlines {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

@keyframes circuitPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

@keyframes badgeScanner {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

@keyframes wordFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 0 0 10px var(--accent-blue);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px var(--accent-blue);
        transform: scale(1.05);
    }
}

@keyframes featuredGlow {
    0%, 100% { 
        box-shadow: 0 0 20px var(--neon-cyan);
    }
    50% { 
        box-shadow: 0 0 40px var(--neon-cyan);
    }
}

@keyframes dotPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 5px var(--accent-blue);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 15px var(--accent-blue);
    }
}

@keyframes buttonScanner {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes nodeGlow {
    0%, 100% { 
        box-shadow: 0 0 10px var(--neon-cyan);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 20px var(--neon-cyan);
        transform: scale(1.2);
    }
}

@keyframes connectionPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes lensGlow {
    0%, 100% { 
        box-shadow: 0 0 10px var(--neon-cyan);
    }
    50% { 
        box-shadow: 0 0 30px var(--neon-cyan);
    }
}

@keyframes vrPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes blockGlow {
    0%, 100% { 
        border-color: var(--accent-blue);
        box-shadow: 0 0 10px var(--accent-blue);
    }
    50% { 
        border-color: var(--neon-cyan);
        box-shadow: 0 0 20px var(--neon-cyan);
    }
}

@keyframes chainPulse {
    0%, 100% { 
        transform: scaleX(1);
        opacity: 0.6;
    }
    50% { 
        transform: scaleX(1.2);
        opacity: 1;
    }
}

@keyframes quantumFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes quantumField {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: rotate(180deg) scale(1.1);
        opacity: 1;
    }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes iconGlow {
    0%, 100% { 
        transform: scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.1);
        filter: brightness(1.3);
    }
}

@keyframes formScanner {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

@keyframes inputGlow {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

@keyframes loadingDots {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons button {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .cyber-stats {
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .about-cta {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-container {
        height: 70px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .cyber-service-card,
    .cyber-portfolio-item {
        margin: 0 0.5rem;
    }
    
    .cyber-form-wrapper {
        padding: 1.5rem;
    }
    
    .hero-buttons button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hologram-display {
        width: 300px;
        height: 300px;
    }
    
    .cyber-terminal {
        max-width: 100%;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        border-top: 1px solid var(--accent-blue);
    }
    
    .nav-menu.active .nav-link {
        font-size: 1.5rem;
        padding: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--neon-cyan);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: var(--neon-cyan);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Selection */
::selection {
    background: var(--accent-blue);
    color: var(--primary-dark);
}

::-moz-selection {
    background: var(--accent-blue);
    color: var(--primary-dark);
}