/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0066ff;
  --secondary: #00d4ff;
  --accent: #ff6b35;
  --gold: #ffd700;
  --purple: #b24bf3;
  --dark: #0a0e27;
  --text: #ffffff;
}

/* ===== RESET & BASE STYLES ===== */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

body, html { 
  font-family: 'Segoe UI', system-ui, sans-serif;
  overflow-x: hidden; 
  background: var(--dark);
  color: var(--text);
  position: relative;
  cursor: default;
}

.spacer {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.spacer h1 {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--secondary), var(--purple), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CURSOR TRAIL EFFECT ===== */
.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--secondary), transparent);
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
  animation: cursorFade 1s ease-out forwards;
}

@keyframes cursorFade {
  to { opacity: 0; transform: scale(2); }
}

/* ===== ELECTRIC GRID BACKGROUND ===== */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: 
    linear-gradient(0deg, transparent 24%, rgba(0, 212, 255, 0.05) 25%, rgba(0, 212, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 212, 255, 0.05) 75%, rgba(0, 212, 255, 0.05) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(0, 212, 255, 0.05) 25%, rgba(0, 212, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 212, 255, 0.05) 75%, rgba(0, 212, 255, 0.05) 76%, transparent 77%, transparent),
    #0a0e27;
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 50px 50px, 50px 50px; }
}

.bg-gradient::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(180, 75, 243, 0.15) 0%, transparent 50%);
  animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.3) rotate(180deg); opacity: 0.8; }
}

/* ===== NEURAL NETWORK PARTICLES ===== */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(0, 212, 255, 0.8);
  border-radius: 50%;
  animation: neuralFloat 12s infinite ease-in-out;
  box-shadow: 0 0 30px currentColor, 0 0 60px currentColor;
}

.particle:nth-child(1) { width: 6px; height: 6px; left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { width: 8px; height: 8px; left: 30%; top: 60%; animation-delay: 1s; background: rgba(255, 107, 53, 0.8); }
.particle:nth-child(3) { width: 5px; height: 5px; left: 50%; top: 40%; animation-delay: 2s; background: rgba(180, 75, 243, 0.8); }
.particle:nth-child(4) { width: 7px; height: 7px; left: 70%; top: 70%; animation-delay: 0.5s; background: rgba(255, 215, 0, 0.8); }
.particle:nth-child(5) { width: 6px; height: 6px; left: 80%; top: 30%; animation-delay: 1.5s; }
.particle:nth-child(6) { width: 9px; height: 9px; left: 20%; top: 80%; animation-delay: 2.5s; background: rgba(0, 212, 255, 0.8); }
.particle:nth-child(7) { width: 5px; height: 5px; left: 60%; top: 15%; animation-delay: 1.2s; }
.particle:nth-child(8) { width: 7px; height: 7px; left: 90%; top: 50%; animation-delay: 2.2s; background: rgba(255, 107, 53, 0.8); }
.particle:nth-child(9) { width: 6px; height: 6px; left: 15%; top: 45%; animation-delay: 0.8s; background: rgba(180, 75, 243, 0.8); }
.particle:nth-child(10) { width: 8px; height: 8px; left: 85%; top: 15%; animation-delay: 1.8s; }
.particle:nth-child(11) { width: 5px; height: 5px; left: 45%; top: 75%; animation-delay: 0.3s; background: rgba(255, 215, 0, 0.8); }
.particle:nth-child(12) { width: 7px; height: 7px; left: 65%; top: 35%; animation-delay: 2.8s; background: rgba(180, 75, 243, 0.8); }
.particle:nth-child(13) { width: 6px; height: 6px; left: 25%; top: 55%; animation-delay: 1.3s; }
.particle:nth-child(14) { width: 7px; height: 7px; left: 75%; top: 25%; animation-delay: 2.3s; background: rgba(255, 107, 53, 0.8); }
.particle:nth-child(15) { width: 5px; height: 5px; left: 55%; top: 65%; animation-delay: 0.7s; background: rgba(180, 75, 243, 0.8); }

@keyframes neuralFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  25% { transform: translate(50px, -80px) scale(1.5); opacity: 1; }
  50% { transform: translate(-30px, -150px) scale(0.8); opacity: 0.5; }
  75% { transform: translate(60px, -100px) scale(1.3); opacity: 0.9; }
}

/* ===== HOLOGRAPHIC HEADER ===== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 14, 39, 0.7);
  backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--secondary), var(--purple), var(--accent)) 1;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
}

header.scrolled {
  background: rgba(10, 14, 39, 0.95);
  box-shadow: 0 10px 50px rgba(0, 212, 255, 0.3);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-section .logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
  transition: all 0.5s ease;
}

.logo-section .logo-img:hover {
  transform: scale(1.2) rotate(360deg);
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 1)) drop-shadow(0 0 60px rgba(255, 107, 53, 0.5));
}

header h1 {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--secondary), var(--purple), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
  position: relative;
  animation: textGlitch 5s infinite;
}

@keyframes textGlitch {
  0%, 90%, 100% { text-shadow: none; }
  92% { text-shadow: 2px 0 var(--accent), -2px 0 var(--secondary); }
  94% { text-shadow: -2px 0 var(--accent), 2px 0 var(--secondary); }
  96% { text-shadow: 2px 0 var(--secondary), -2px 0 var(--accent); }
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--purple), var(--accent));
  transition: width 0.4s ease;
  box-shadow: 0 0 10px var(--secondary);
}

nav a::after {
  content: '//';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent);
}

nav a:hover {
  color: var(--secondary);
  transform: translateY(-2px);
  text-shadow: 0 0 20px var(--secondary);
}

nav a:hover::before {
  width: 100%;
}

nav a:hover::after {
  opacity: 1;
  left: -20px;
}

/* ===== MEMBERSHIP BUBBLE BUTTON ===== */
.membership-bubble {
  background: linear-gradient(135deg, var(--accent), var(--gold)) !important;
  color: white !important;
  padding: 0.8rem 2rem !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 5px 25px rgba(255, 107, 53, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
  animation: membershipPulse 2s infinite;
  border: 2px solid rgba(255, 215, 0, 0.8);
  margin-left: 1rem;
}

.membership-bubble::before,
.membership-bubble::after {
  display: none !important;
}

.membership-bubble:hover {
  transform: translateY(-5px) scale(1.1) !important;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.9), 0 0 60px rgba(255, 215, 0, 0.7) !important;
  background: linear-gradient(135deg, var(--gold), var(--accent)) !important;
}

@keyframes membershipPulse {
  0%, 100% { 
    box-shadow: 0 5px 25px rgba(255, 107, 53, 0.6), 0 0 40px rgba(255, 215, 0, 0.4);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.9), 0 0 60px rgba(255, 215, 0, 0.6);
    transform: scale(1.05);
  }
}

.membership-bubble:hover::before {
  content: '✨';
  position: absolute;
  left: 10px;
  animation: sparkleLeft 0.6s infinite;
  display: block !important;
}

.membership-bubble:hover::after {
  content: '✨';
  position: absolute;
  right: 10px;
  animation: sparkleRight 0.6s infinite;
  display: block !important;
}

@keyframes sparkleLeft {
  0%, 100% { opacity: 0; transform: translateX(-5px) rotate(0deg); }
  50% { opacity: 1; transform: translateX(0) rotate(180deg); }
}

@keyframes sparkleRight {
  0%, 100% { opacity: 0; transform: translateX(5px) rotate(0deg); }
  50% { opacity: 1; transform: translateX(0) rotate(-180deg); }
}

/* ===== EXPLOSIVE HERO SECTION ===== */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.4) 0%, rgba(180, 75, 243, 0.3) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(120px);
  animation: explosivePulse 3s ease-in-out infinite;
}

@keyframes explosivePulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
  50% { transform: scale(1.4) rotate(180deg); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: 5.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary) 30%, var(--purple) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroEntry 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.hero h1::before {
  content: 'KL DIGITAL';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: -1;
  animation: glitchSkew 7s infinite;
  opacity: 0;
}

@keyframes heroEntry {
  0% { opacity: 0; transform: scale(0.5) translateY(-100px) rotateX(-90deg); }
  100% { opacity: 1; transform: scale(1) translateY(0) rotateX(0); }
}

@keyframes glitchSkew {
  0%, 95%, 100% { opacity: 0; transform: translate(0, 0); }
  96% { opacity: 0.7; transform: translate(-5px, 5px) skewX(-10deg); }
  97% { opacity: 0.7; transform: translate(5px, -5px) skewX(10deg); }
  98% { opacity: 0.7; transform: translate(-3px, 3px) skewX(-5deg); }
}

.hero-tagline {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  letter-spacing: 12px;
  font-weight: 300;
  animation: fadeInUp 1.5s ease 0.3s both;
  text-transform: uppercase;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tagline span {
  display: inline-block;
  margin: 0 0.8rem;
  color: var(--secondary);
  font-weight: 700;
  animation: spinDot 3s infinite;
}

@keyframes spinDot {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.5); }
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--purple));
  background-size: 200% 200%;
  color: white;
  padding: 1.4rem 3.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.5s ease;
  box-shadow: 0 10px 40px rgba(0, 102, 255, 0.5), 0 0 80px rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  animation: buttonPulse 2s infinite;
  text-transform: uppercase;
}

@keyframes buttonPulse {
  0%, 100% { box-shadow: 0 10px 40px rgba(0, 102, 255, 0.5), 0 0 80px rgba(0, 212, 255, 0.3); }
  50% { box-shadow: 0 15px 50px rgba(0, 102, 255, 0.7), 0 0 100px rgba(0, 212, 255, 0.5); }
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.8s ease, height 0.8s ease;
}

.btn::after {
  content: '⚡';
  position: absolute;
  right: 20px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.8), 0 0 120px rgba(180, 75, 243, 0.6);
  background-position: 100% 0;
}

.btn:hover::before {
  width: 500px;
  height: 500px;
}

.btn:hover::after {
  right: 15px;
  animation: sparkle 0.5s infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.5) rotate(180deg); }
}

/* ===== QUANTUM TECH ICONS ===== */
.hero-tech-icons {
  display: flex;
  gap: 2.5rem;
  margin-top: 5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tech-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.03);
  border: 3px solid rgba(0, 212, 255, 0.4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  transition: all 0.5s ease;
  animation: quantumFloat 5s ease-in-out infinite;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.tech-icon::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(45deg, var(--secondary), var(--purple), var(--accent), var(--gold));
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  animation: borderSpin 3s linear infinite;
}

@keyframes borderSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes quantumFloat {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  25% { transform: translateY(-25px) rotateY(90deg); }
  50% { transform: translateY(-10px) rotateY(180deg); }
  75% { transform: translateY(-30px) rotateY(270deg); }
}

.tech-icon:nth-child(2) { animation-delay: 0.6s; }
.tech-icon:nth-child(3) { animation-delay: 1.2s; }
.tech-icon:nth-child(4) { animation-delay: 1.8s; }

.tech-icon:hover {
  background: rgba(0, 212, 255, 0.3);
  border-color: var(--secondary);
  transform: translateY(-20px) scale(1.3) rotateY(360deg);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.8), 0 0 100px rgba(180, 75, 243, 0.6);
}

.tech-icon:hover::before {
  opacity: 1;
}

/* ===== SECTIONS WITH MAGNETIC REVEAL ===== */
section {
  max-width: 1200px;
  margin: auto;
  padding: 6rem 2rem;
  text-align: center;
  opacity: 0;
  transform: translateY(80px) scale(0.9);
  transition: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 2;
}

section.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== PLASMA GLOWING H2 ===== */
h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, var(--secondary), var(--purple), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  position: relative;
  display: inline-block;
  animation: plasmaGlow 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6));
  text-transform: uppercase;
  letter-spacing: 4px;
}

@keyframes plasmaGlow {
  0%, 100% { 
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.6));
    background-position: 0% 50%;
  }
  50% { 
    filter: drop-shadow(0 0 50px rgba(180, 75, 243, 0.9)) drop-shadow(0 0 80px rgba(255, 107, 53, 0.6));
    background-position: 100% 50%;
  }
}

h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--secondary), var(--purple));
  background-size: 300% 300%;
  border-radius: 3px;
  animation: rainbowPulse 3s ease-in-out infinite;
  box-shadow: 0 0 20px var(--accent);
}

@keyframes rainbowPulse {
  0%, 100% { 
    transform: translateX(-50%) scaleX(1);
    background-position: 0% 50%; 
  }
  50% { 
    transform: translateX(-50%) scaleX(1.67);
    background-position: 100% 50%; 
  }
}

/* ===== HOLOGRAPHIC PROJECT CARDS ===== */
.project-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 25px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15) 0%, rgba(180, 75, 243, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.project-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--secondary) 90deg,
    transparent 180deg,
    var(--purple) 270deg,
    transparent 360deg
  );
  animation: hologramSpin 4s linear infinite;
  opacity: 0;
}

@keyframes hologramSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

.project-card:hover::after {
  opacity: 0.3;
}

.project-card:hover {
  transform: translateY(-25px) scale(1.05) rotateX(5deg);
  border-color: var(--secondary);
  box-shadow: 
    0 30px 70px rgba(0, 212, 255, 0.5),
    0 0 100px rgba(180, 75, 243, 0.4),
    inset 0 0 60px rgba(0, 212, 255, 0.2);
}

.project-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--purple));
  background-size: 200% 200%;
  border-radius<function_calls> <invoke name="artifacts">
<parameter name="command">update</parameter>
<parameter name="id">complete_style_css</parameter>
<parameter name="old_str">  border-radius</parameter>
<parameter name="new_str">  border-radius: 25px;
display: flex;
align-items: center;
justify-content: center;
font-size: 3.5rem;
transition: all 0.6s ease;
position: relative;
z-index: 1;
box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
animation: iconPulse 3s ease-in-out infinite;
}
@keyframes iconPulse {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}
.project-card:hover .project-icon {
transform: scale(1.2) rotate(360deg);
box-shadow: 0 15px 60px rgba(0, 212, 255, 0.8), 0 0 100px rgba(180, 75, 243, 0.6);
}
.project-card h3 {
font-size: 1.8rem;
color: var(--text);
margin-bottom: 1.5rem;
font-weight: 800;
position: relative;
z-index: 1;
text-transform: uppercase;
letter-spacing: 2px;
}
.project-card p {
color: rgba(255, 255, 255, 0.8);
line-height: 1.8;
font-size: 1.1rem;
position: relative;
z-index: 1;
}
.learn-more {
display: inline-block;
margin-top: 1.5rem;
color: var(--secondary);
font-weight: 700;
font-size: 1rem;
transition: all 0.4s ease;
position: relative;
z-index: 1;
text-transform: uppercase;
letter-spacing: 1px;
}
.learn-more::after {
content: '⚡';
margin-left: 5px;
display: inline-block;
transition: all 0.3s ease;
}
.learn-more:hover {
color: var(--accent);
transform: translateX(10px);
text-shadow: 0 0 20px var(--accent);
}
.learn-more:hover::after {
animation: sparkle 0.5s infinite;
}
/* ===== MODAL ENHANCEMENTS ===== */
.modal {
display: none;
position: fixed;
z-index: 200;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.95);
backdrop-filter: blur(20px);
overflow-y: auto;
animation: modalFadeIn 0.4s ease;
}
@keyframes modalFadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.modal.active {
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.modal-content {
background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
border: 3px solid rgba(0, 212, 255, 0.5);
border-radius: 35px;
max-width: 1100px;
width: 100%;
padding: 3.5rem;
position: relative;
animation: modalSlideIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
box-shadow:
0 30px 80px rgba(0, 212, 255, 0.4),
0 0 100px rgba(180, 75, 243, 0.3),
inset 0 0 60px rgba(0, 212, 255, 0.1);
max-height: 90vh;
overflow-y: auto;
}
@keyframes modalSlideIn {
from { opacity: 0; transform: translateY(100px) scale(0.8); }
to { opacity: 1; transform: translateY(0) scale(1); }
}
.close-modal {
position: absolute;
top: 1.5rem;
right: 1.5rem;
font-size: 2.5rem;
color: var(--text);
cursor: pointer;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: rgba(255, 107, 53, 0.2);
transition: all 0.4s ease;
z-index: 10;
border: 2px solid rgba(255, 107, 53, 0.5);
}
.close-modal:hover {
background: rgba(255, 107, 53, 0.5);
transform: rotate(180deg) scale(1.2);
box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
}
.modal-header {
text-align: center;
margin-bottom: 2.5rem;
}
.modal-header h2 {
font-size: 3.2rem;
margin-bottom: 1.5rem;
}
.modal-header p {
color: rgba(255, 255, 255, 0.8);
font-size: 1.3rem;
line-height: 1.8;
max-width: 800px;
margin: 0 auto;
}
.service-intro {
background: rgba(0, 212, 255, 0.08);
border-left: 5px solid var(--secondary);
padding: 2rem;
border-radius: 15px;
margin: 2.5rem 0;
text-align: left;
box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}
.service-intro h3 {
color: var(--secondary);
margin-bottom: 1.2rem;
font-size: 1.6rem;
text-transform: uppercase;
letter-spacing: 2px;
}
.service-intro p {
color: rgba(255, 255, 255, 0.85);
line-height: 1.9;
font-size: 1.05rem;
}
/* ===== NEON PRICING CARDS ===== */
.pricing-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2.5rem;
margin: 3.5rem 0;
}
.pricing-card {
background: rgba(255, 255, 255, 0.02);
border: 2px solid rgba(0, 212, 255, 0.3);
border-radius: 25px;
padding: 2.5rem;
transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
position: relative;
text-align: left;
overflow: hidden;
}
.pricing-card::before {
content: '';
position: absolute;
top: -3px;
left: -3px;
right: -3px;
bottom: -3px;
background: linear-gradient(
45deg,
var(--secondary),
var(--purple),
var(--accent),
var(--gold),
var(--secondary)
);
border-radius: 25px;
opacity: 0;
z-index: -1;
animation: neonBorder 4s linear infinite;
background-size: 400% 400%;
}
@keyframes neonBorder {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}
.pricing-card:not(.featured)::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
transition: left 0.7s ease;
pointer-events: none;
}
.pricing-card:not(.featured):hover::after {
left: 100%;
}
.pricing-card:hover::before {
opacity: 1;
}
.pricing-card.featured {
border-color: var(--accent);
background: rgba(255, 107, 53, 0.08);
transform: scale(1.08);
box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}
.pricing-card.featured::before {
opacity: 0.6;
}
.pricing-card.featured::after {
content: '⚡ POPULAR ⚡';
position: absolute;
top: -18px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(135deg, var(--accent), var(--gold));
color: white;
padding: 0.5rem 1.5rem;
border-radius: 25px;
font-size: 0.85rem;
font-weight: 800;
letter-spacing: 2px;
z-index: 10;
box-shadow: 0 5px 20px rgba(255, 107, 53, 0.6);
animation: popularPulse 2s infinite;
white-space: nowrap;
pointer-events: none;
}
@keyframes popularPulse {
0%, 100% { transform: translateX(-50%) scale(1); }
50% { transform: translateX(-50%) scale(1.1); }
}
.pricing-card:hover {
transform: translateY(-15px) rotateY(5deg);
box-shadow:
0 30px 60px rgba(0, 212, 255, 0.5),
0 0 80px rgba(180, 75, 243, 0.4);
border-color: var(--secondary);
}
.pricing-card.featured:hover {
transform: translateY(-15px) scale(1.08) rotateY(5deg);
}
.pricing-card h3 {
font-size: 2rem;
color: var(--text);
margin-bottom: 1rem;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 900;
position: relative;
z-index: 5;
}
.price {
font-size: 3rem;
font-weight: 900;
background: linear-gradient(135deg, var(--secondary), var(--purple), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.5rem;
text-align: center;
display: block;
position: relative;
z-index: 5;
}
.price-note {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 2rem;
text-align: center;
display: block;
text-transform: uppercase;
letter-spacing: 1px;
position: relative;
z-index: 5;
}
.pricing-card ul {
list-style: none;
margin: 2rem 0;
}
.pricing-card li {
padding: 1rem 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.85);
display: flex;
align-items: flex-start;
gap: 0.8rem;
line-height: 1.6;
transition: all 0.3s ease;
position: relative;
z-index: 5;
}
.pricing-card li:hover {
color: var(--secondary);
transform: translateX(5px);
}
.pricing-card li::before {
content: '⚡';
color: var(--secondary);
font-weight: 900;
font-size: 1.3rem;
flex-shrink: 0;
animation: sparkle 2s infinite;
}
.btn-select {
width: 100%;
margin-top: 2rem;
background: linear-gradient(135deg, var(--primary), var(--secondary), var(--purple));
background-size: 200% 200%;
animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}
.btn-select:hover {
transform: translateY(-5px) scale(1.02);
}
.modal-cta {
background: rgba(255, 107, 53, 0.15);
border: 3px solid var(--accent);
border-radius: 25px;
padding: 2.5rem;
margin-top: 4rem;
text-align: center;
box-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
position: relative;
overflow: hidden;
}
.modal-cta::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
animation: ctaSweep 3s infinite;
}
@keyframes ctaSweep {
0% { left: -100%; }
100% { left: 100%; }
}
.modal-cta h3 {
font-size: 2.2rem;
color: var(--accent);
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 3px;
text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}
.modal-cta p {
color: rgba(255, 255, 255, 0.9);
margin-bottom: 2rem;
font-size: 1.2rem;
line-height: 1.6;
}
/* ===== CONTACT SECTION ===== */
#contact {
background: rgba(255, 255, 255, 0.02);
border-radius: 35px;
border: 3px solid rgba(0, 212, 255, 0.3);
padding: 5rem 2rem;
box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}
.contact-info {
margin: 2.5rem 0;
}
.contact-info p {
font-size: 1.3rem;
margin: 1.5rem 0;
color: rgba(255, 255, 255, 0.9);
}
.contact-info a {
color: var(--secondary);
text-decoration: none;
font-weight: 700;
transition: all 0.3s ease;
position: relative;
}
.contact-info a::after {
content: '';
position: absolute;
bottom: -3px;
left: 0;
width: 0;
height: 2px;
background: var(--accent);
transition: width 0.3s ease;
}
.contact-info a:hover {
color: var(--accent);
text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}
.contact-info a:hover::after {
width: 100%;
}
.contact-form {
max-width: 600px;
margin: 3.5rem auto 0;
display: flex;
flex-direction: column;
gap: 2rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
background: rgba(255, 255, 255, 0.05);
border: 2px solid rgba(0, 212, 255, 0.3);
border-radius: 15px;
padding: 1.2rem 1.8rem;
color: var(--text);
font-size: 1.05rem;
font-family: inherit;
transition: all 0.4s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
outline: none;
border-color: var(--secondary);
box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), inset 0 0 20px rgba(0, 212, 255, 0.1);
background: rgba(255, 255, 255, 0.1);
transform: translateY(-2px);
}
.contact-form textarea {
resize: vertical;
min-height: 180px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
color: rgba(255, 255, 255, 0.5);
}
.contact-form select {
cursor: pointer;
}
.contact-form select option {
background: var(--dark);
color: var(--text);
}
#form-status {
text-align: center;
padding: 1.2rem;
border-radius: 15px;
margin-top: 1.5rem;
display: none;
font-weight: 600;
letter-spacing: 1px;
}
#form-status.success {
background: rgba(0, 212, 255, 0.2);
border: 2px solid var(--secondary);
color: var(--secondary);
display: block;
box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}
#form-status.error {
background: rgba(255, 107, 53, 0.2);
border: 2px solid var(--accent);
color: var(--accent);
display: block;
box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}
/* ===== FOOTER ===== */
footer {
background: linear-gradient(180deg, rgba(10, 14, 39, 0.95) 0%, rgba(6, 8, 20, 0.98) 100%);
backdrop-filter: blur(20px);
border-top: 2px solid transparent;
border-image: linear-gradient(90deg, var(--secondary), var(--purple), var(--accent)) 1;
padding: 4rem 2rem 2rem;
margin-top: 5rem;
position: relative;
z-index: 2;
overflow: hidden;
}
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg,
transparent 0%,
var(--secondary) 20%,
var(--purple) 50%,
var(--accent) 80%,
transparent 100%);
animation: borderFlow 3s ease-in-out infinite;
}
@keyframes borderFlow {
0%, 100% { opacity: 0.5; }
50% { opacity: 1; }
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}
.footer-section h3 {
font-size: 1.3rem;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, var(--secondary), var(--purple));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 2px;
position: relative;
display: inline-block;
}
.footer-section h3::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 50px;
height: 3px;
background: linear-gradient(90deg, var(--secondary), var(--accent));
border-radius: 2px;
}
.footer-section p {
color: rgba(255, 255, 255, 0.8);
line-height: 1.8;
margin-bottom: 1rem;
font-size: 0.95rem;
}
.footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links li {
margin-bottom: 0.8rem;
}
.footer-links a {
color: rgba(255, 255, 255, 0.75);
text-decoration: none;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-size: 0.95rem;
}
.footer-links a::before {
content: '→';
opacity: 0;
transform: translateX(-10px);
transition: all 0.3s ease;
color: var(--secondary);
}
.footer-links a:hover {
color: var(--secondary);
transform: translateX(5px);
}
.footer-links a:hover::before {
opacity: 1;
transform: translateX(0);
}
.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-icon {
width: 45px;
height: 45px;
border-radius: 12px;
background: rgba(255, 255, 255, 0.05);
border: 2px solid rgba(0, 212, 255, 0.3);
display: flex;
align-items: center;
justify-content: center;
color: var(--text);
text-decoration: none;
font-size: 1.3rem;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}
.social-icon::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, var(--secondary), var(--purple));
opacity: 0;
transition: opacity 0.4s ease;
}
.social-icon span {
position: relative;
z-index: 1;
}
.social-icon:hover {
border-color: var(--secondary);
transform: translateY(-5px) scale(1.1);
box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
}
.social-icon:hover::before {
opacity: 1;
}
.footer-contact {
display: flex;
flex-direction: column;
gap: 1rem;
}
.contact-item {
display: flex;
align-items: center;
gap: 1rem;
color: rgba(255, 255, 255, 0.8);
font-size: 0.95rem;
}
.contact-item-icon {
width: 35px;
height: 35px;
border-radius: 10px;
background: rgba(0, 212, 255, 0.1);
border: 1px solid rgba(0, 212, 255, 0.3);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
flex-shrink: 0;
}
.contact-item a {
color: var(--secondary);
text-decoration: none;
transition: all 0.3s ease;
}
.contact-item a:hover {
color: var(--accent);
text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 2rem;
margin-top: 2rem;
text-align: center;
}
.footer-bottom-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
max-width: 1200px;
margin: 0 auto;
}
.footer-logo {
display: flex;
align-items: center;
gap: 0.8rem;
margin-bottom: 0.5rem;
}
.footer-logo-icon {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--secondary), var(--purple));
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
font-weight: 900;
color: white;
box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}
.footer-logo-text {
font-size: 1.3rem;
font-weight: 900;
background: linear-gradient(135deg, var(--secondary), var(--purple), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: 2px;
}
.footer-copyright {
color: rgba(255, 255, 255, 0.6);
font-size: 0.9rem;
letter-spacing: 1px;
}
.footer-tagline {
color: rgba(255, 255, 255, 0.7);
font-size: 0.85rem;
font-style: italic;
margin-top: 0.5rem;
}
.footer-badges {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
justify-content: center;
margin-top: 1rem;
}
.badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: rgba(0, 212, 255, 0.1);
border: 1px solid rgba(0, 212, 255, 0.3);
border-radius: 20px;
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.8);
transition: all 0.3s ease;
}
.badge:hover {
background: rgba(0, 212, 255, 0.2);
border-color: var(--secondary);
transform: translateY(-2px);
}
.badge-icon {
font-size: 1rem;
}
/* ===== SCROLL TO TOP ROCKET ===== */
.scroll-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), var(--secondary), var(--purple));
background-size: 200% 200%;
border: none;
border-radius: 50%;
color: white;
font-size: 2rem;
cursor: pointer;
opacity: 0;
transform: scale(0) rotate(0deg);
transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
z-index: 100;
box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
animation: rocketPulse 2s infinite;
}
@keyframes rocketPulse {
0%, 100% { box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5); }
50% { box-shadow: 0 12px 40px rgba(0, 212, 255, 0.8); }
}
.scroll-top.visible {
opacity: 1;
transform: scale(1) rotate(0deg);
}
.scroll-top:hover {
transform: scale(1.2) rotate(360deg) translateY(-10px);
box-shadow: 0 15px 50px rgba(0, 212, 255, 0.9), 0 0 80px rgba(180, 75, 243, 0.6);
background-position: 100% 0;
}
/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
display: none;
flex-direction: column;
gap: 6px;
background: none;
border: none;
cursor: pointer;
}
.mobile-menu-btn span {
width: 30px;
height: 4px;
background: linear-gradient(90deg, var(--secondary), var(--purple), var(--accent));
border-radius: 3px;
transition: all 0.4s ease;
box-shadow: 0 0 10px var(--secondary);
}
.mobile-menu-btn:hover span {
box-shadow: 0 0 20px var(--secondary);
}
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
.particles,
.cursor-trail,
.bg-gradient::before {
display: none !important;
}
.project-card::after,
.project-card::before,
.pricing-card::before {
display: none !important;
}

{
animation: none !important;
}

.tech-icon {
animation: mobileFloat 4s ease-in-out infinite !important;Continue12:06 PM}
.tech-icon:nth-child(2) { animation-delay: 0.6s !important; }
.tech-icon:nth-child(3) { animation-delay: 1.2s !important; }
.tech-icon:nth-child(4) { animation-delay: 1.8s !important; }
@keyframes mobileFloat {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
}
.mobile-menu-btn {
display: flex;
}
nav {
position: fixed;
top: 90px;
left: -100%;
width: 100%;
background: rgba(10, 14, 39, 0.98);
backdrop-filter: blur(30px);
flex-direction: column;
padding: 3rem 2rem;
gap: 2rem;
transition: left 0.5s ease;
border-top: 2px solid rgba(0, 212, 255, 0.3);
box-shadow: 0 10px 50px rgba(0, 212, 255, 0.3);
overflow-y: auto;
max-height: calc(100vh - 90px);
}
nav.active {
left: 0;
}
.membership-bubble {
margin-left: 0 !important;
margin-top: 1rem;
padding: 1rem 2.5rem !important;
font-size: 1rem !important;
width: 100%;
text-align: center;
}
.hero h1 {
font-size: 2.2rem;
}
.hero-tagline {
font-size: 0.9rem;
letter-spacing: 3px;
}
h2 {
font-size: 1.8rem;
}
.project-container {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.project-card h3 {
font-size: 1.3rem;
}
.project-card p {
font-size: 0.95rem;
}
.logo-section .logo-img {
width: 45px;
height: 45px;
}
header h1 {
font-size: 1.2rem;
letter-spacing: 1px;
}
.modal-content {
padding: 2rem 1.2rem;
max-height: 90vh;
overflow-y: auto;
}
.modal-header h2 {
font-size: 1.6rem;
}
.modal-header p {
font-size: 1rem;
}
.pricing-cards {
grid-template-columns: 1fr;
}
.pricing-card.featured {
transform: scale(1);
}
.pricing-card.featured:hover {
transform: translateY(-15px) scale(1);
}
.pricing-card h3 {
font-size: 1.5rem;
}
.price {
font-size: 2.2rem;
}
.tech-icon {
width: 60px;
height: 60px;
font-size: 1.8rem;
}
.btn {
padding: 1rem 2rem;
font-size: 0.95rem;
}
section {
padding: 4rem 1.5rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
font-size: 1rem;
padding: 1rem 1.2rem;
}
.footer-container {
grid-template-columns: repeat(2, 1fr);
gap: 2rem 1.5rem;
}
footer {
padding: 3rem 1.5rem 1.5rem;
}
.footer-section h3 {
font-size: 1.1rem;
}
.footer-section p,
.footer-links a,
.contact-item {
font-size: 0.85rem;
}
.social-icon {
width: 40px;
height: 40px;
font-size: 1.1rem;
}
.footer-bottom-content {
gap: 1.5rem;
}
.footer-badges {
gap: 0.8rem;
}
.badge {
font-size: 0.75rem;
padding: 0.4rem 0.8rem;
}
}
@media (max-width: 480px) {
.footer-container {
grid-template-columns: 1fr;
gap: 2rem;
}
}</parameter>
