/* AI-Themed Portfolio with Fire Effects */

:root {
  --ai-primary: #00d4ff;
  --ai-secondary: #ff6b35;
  --ai-accent: #8b5cf6;
  --ai-text: #e2e8f0;
  --ai-text-muted: #94a3b8;
  --ai-bg: #0a0a0a;
  --ai-bg-card: rgba(20, 25, 40, 0.8);
  --ai-border: #334155;
  --ai-gradient: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 50%, #ff6b35 100%);
  --ai-fire-1: #ff4500;
  --ai-fire-2: #ff6b35;
  --ai-fire-3: #ffa500;
  --ai-fire-4: #ffff00;
  --ai-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --ai-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  background: var(--ai-bg);
  color: var(--ai-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

/* AI Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  z-index: -2;
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% {
    background: 
      radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 40% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
      linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  }
  33% {
    background: 
      radial-gradient(circle at 60% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 80% 40%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
      linear-gradient(135deg, #0a0a0a 0%, #2e1a1a 50%, #3e2116 100%);
  }
  66% {
    background: 
      radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
      radial-gradient(circle at 10% 40%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
      radial-gradient(circle at 50% 20%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
      linear-gradient(135deg, #0a0a0a 0%, #1a2e1a 50%, #16213e 100%);
  }
}

/* AI Neural Network Canvas */
#ai-neural-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
}

/* AI Particles */
.ai-particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

.ai-particle-bg {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--ai-primary);
  border-radius: 50%;
  animation: particleFloat 15s linear infinite;
}

.ai-particle-bg:nth-child(odd) {
  background: var(--ai-accent);
  animation-duration: 20s;
}

.ai-particle-bg:nth-child(3n) {
  background: var(--ai-secondary);
  animation-duration: 18s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/* Container Improvements */
.w-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Navigation Styling - Modern Design */
.div-block-9 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 0 0 24px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.div-block-9:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Navigation brand styling */
.div-block-9 .link {
  color: #ff6b35;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.div-block-9 .link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(0, 212, 255, 0.2));
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.div-block-9 .link:hover::before {
  opacity: 1;
}

.div-block-9 .link:hover {
  color: white;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
  transform: translateY(-2px);
  border-color: var(--ai-primary);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.div-block-14 {
  display: flex;
  gap: 20px;
  align-items: center;
}

.link-block,
.link-block-2 {
  background: rgba(30, 41, 59, 0.8);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 30px;
  padding: 10px 24px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.link-block::before,
.link-block-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--ai-gradient);
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.link-block::after,
.link-block-2::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.link-block:hover::before,
.link-block-2:hover::before {
  left: 0;
}

.link-block:hover::after,
.link-block-2:hover::after {
  width: 100px;
  height: 100px;
}

.link-block:hover,
.link-block-2:hover {
  color: white;
  border-color: var(--ai-primary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 12px 30px rgba(0, 212, 255, 0.4),
    0 0 20px rgba(0, 212, 255, 0.2);
}

.link-block:active,
.link-block-2:active {
  transform: translateY(-1px) scale(1.02);
}

.bold-text-3,
.bold-text-4 {
  font-weight: 700;
  color: var(--ai-text);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.link-block:hover .bold-text-3,
.link-block-2:hover .bold-text-4 {
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Fire-Bordered Profile Image */
.image-2 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.image-2::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--ai-fire-1) 0deg,
    var(--ai-fire-2) 60deg,
    var(--ai-fire-3) 120deg,
    var(--ai-fire-4) 180deg,
    var(--ai-fire-1) 240deg,
    var(--ai-fire-2) 300deg,
    var(--ai-fire-3) 360deg
  );
  z-index: -1;
  animation: fireRotate 3s linear infinite;
  filter: blur(1px);
}

.image-2::after {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 65%,
    var(--ai-fire-1) 70%,
    var(--ai-fire-2) 75%,
    var(--ai-fire-3) 80%,
    transparent 85%
  );
  z-index: -2;
  animation: fireFlicker 0.5s ease-in-out infinite alternate;
  opacity: 0.8;
}

.image-2:hover::before {
  animation-duration: 1s;
  filter: blur(2px);
}

.image-2:hover::after {
  animation-duration: 0.3s;
  opacity: 1;
}

.image-2:hover {
  transform: scale(1.05);
  box-shadow: 
    0 0 30px rgba(255, 69, 0, 0.6),
    0 0 60px rgba(255, 107, 53, 0.4),
    0 0 90px rgba(255, 165, 0, 0.2);
}

@keyframes fireRotate {
  0% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(90deg) scale(1.02); }
  50% { transform: rotate(180deg) scale(1); }
  75% { transform: rotate(270deg) scale(1.02); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes fireFlicker {
  0% { 
    opacity: 0.6; 
    transform: scale(1) rotate(0deg);
    filter: hue-rotate(0deg);
  }
  100% { 
    opacity: 1; 
    transform: scale(1.1) rotate(5deg);
    filter: hue-rotate(10deg);
  }
}

/* Hero Section */
.hero-sec {
  padding: 80px 0;
  text-align: center;
}

.header-name-text {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--ai-text);
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 212, 255, 0.2);
  letter-spacing: 1px;
}

/* Skills Badges */
.div-block-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 30px 0;
}

.skills-sub {
  background: var(--ai-bg-card);
  border: 1px solid var(--ai-border);
  border-radius: 25px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  color: var(--ai-text);
  backdrop-filter: blur(5px);
}

.skills-sub:hover {
  background: var(--ai-gradient);
  color: white;
  transform: translateY(-2px);
  box-shadow: 
    0 10px 25px rgba(0, 212, 255, 0.3),
    0 0 20px rgba(0, 212, 255, 0.5);
  border-color: transparent;
}

.skills-sub.skill-sub-color-1 { 
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
  border-color: var(--ai-primary); 
  color: #ffffff;
  animation: glow1 3s ease-in-out infinite;
}
.skills-sub.skill-sub-color-2 { 
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
  border-color: var(--ai-secondary); 
  color: #ffffff;
  animation: glow2 3s ease-in-out infinite 0.5s;
}
.skills-sub.skill-sub-color-3 { 
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
  border-color: var(--ai-accent); 
  color: #ffffff;
  animation: glow3 3s ease-in-out infinite 1s;
}
.skills-sub.skill-sub-color-4 { 
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
  border-color: #ef4444; 
  color: #ffffff;
  animation: glow4 3s ease-in-out infinite 1.5s;
}
.skills-sub.skill-sub-color-5 { 
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
  border-color: #f59e0b; 
  color: #ffffff;
  animation: glow5 3s ease-in-out infinite 2s;
}

@keyframes glow1 {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.3); }
  50% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.6); }
}
@keyframes glow2 {
  0%, 100% { box-shadow: 0 0 5px rgba(255, 107, 53, 0.3); }
  50% { box-shadow: 0 0 15px rgba(255, 107, 53, 0.6); }
}
@keyframes glow3 {
  0%, 100% { box-shadow: 0 0 5px rgba(139, 92, 246, 0.3); }
  50% { box-shadow: 0 0 15px rgba(139, 92, 246, 0.6); }
}
@keyframes glow4 {
  0%, 100% { box-shadow: 0 0 5px rgba(239, 68, 68, 0.3); }
  50% { box-shadow: 0 0 15px rgba(239, 68, 68, 0.6); }
}
@keyframes glow5 {
  0%, 100% { box-shadow: 0 0 5px rgba(245, 158, 11, 0.3); }
  50% { box-shadow: 0 0 15px rgba(245, 158, 11, 0.6); }
}

/* Social Icons */
.div-block-7 {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.social-icon-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ai-gradient);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.social-icon-link:hover::before {
  opacity: 0.8;
}

.social-icon-link:hover {
  border-color: var(--ai-primary);
  transform: translateY(-4px) scale(1.15);
  box-shadow: 
    0 20px 40px rgba(0, 212, 255, 0.4),
    0 0 35px rgba(0, 212, 255, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.social-icon {
  width: 28px;
  height: 28px;
  fill: var(--ai-text);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  position: relative;
  opacity: 0.9;
}

.social-icon-link:hover .social-icon {
  fill: #ffffff;
  transform: rotate(12deg) scale(1.1);
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.8));
  opacity: 1;
}

/* Individual icon hover colors */
.social-icon-link:nth-child(1):hover .social-icon {
  filter: drop-shadow(0 0 12px rgba(66, 103, 178, 0.8));
}

.social-icon-link:nth-child(2):hover .social-icon {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
}

.social-icon-link:nth-child(3):hover .social-icon {
  filter: drop-shadow(0 0 12px rgba(0, 136, 204, 0.8));
}

.social-icon-link:nth-child(4):hover .social-icon {
  filter: drop-shadow(0 0 12px rgba(114, 137, 218, 0.8));
}

.social-icon-link:nth-child(5):hover .social-icon {
  filter: drop-shadow(0 0 12px rgba(0, 119, 181, 0.8));
}

/* About Me Section */
.aboutme-wrapper {
  background: var(--ai-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  padding: 40px;
  margin: 60px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.aboutme-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.aboutme-wrapper h1 {
  color: var(--ai-text);
  margin-bottom: 20px;
  font-size: 32px;
}

.paragraph-3 {
  color: var(--ai-text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* Company Cards - Clean Fresh Start */
.companies-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Static background for better performance */
.companies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 10%, rgba(255, 107, 107, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(0, 255, 150, 0.06) 0%, transparent 40%),
    linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Only animate on larger screens */
@media (min-width: 768px) {
  .companies-section::before {
    animation: backgroundPulse 15s ease-in-out infinite;
  }
  
  .companies-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
      radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.08) 0%, transparent 25%),
      radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.08) 0%, transparent 25%),
      radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.06) 0%, transparent 20%);
    pointer-events: none;
    animation: backgroundFloat 25s linear infinite;
    z-index: 0;
  }
  
  /* Add subtle animated grid only on desktop */
  .companies-section {
    background-image: 
      linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 40s linear infinite;
  }
}

@keyframes backgroundPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes backgroundFloat {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  100% {
    transform: rotate(360deg) translate(0, 0);
  }
}

@keyframes gridMove {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 60px 60px, 60px 60px;
  }
}

.companies-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.companies-container::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 3px;
  height: 3px;
  background: rgba(0, 212, 255, 0.8);
  border-radius: 50%;
  box-shadow: 
    0 0 8px rgba(0, 212, 255, 0.6),
    25px 35px 0 2px rgba(139, 92, 246, 0.6),
    50px 15px 0 1px rgba(0, 212, 255, 0.5),
    75px 70px 0 2px rgba(255, 107, 107, 0.5),
    100px 25px 0 1px rgba(139, 92, 246, 0.4),
    -20px 50px 0 1px rgba(0, 255, 150, 0.4);
  animation: floatingParticles 20s ease-in-out infinite;
  z-index: 0;
}

.companies-container::after {
  content: '';
  position: absolute;
  top: 60%;
  right: 15%;
  width: 1px;
  height: 1px;
  background: rgba(139, 92, 246, 0.5);
  border-radius: 50%;
  box-shadow: 
    0 0 4px rgba(139, 92, 246, 0.3),
    -30px -20px 0 rgba(0, 212, 255, 0.4),
    -50px 10px 0 rgba(255, 107, 107, 0.3),
    -20px -40px 0 rgba(0, 212, 255, 0.2),
    -70px -10px 0 rgba(139, 92, 246, 0.3);
  animation: floatingParticles 20s ease-in-out infinite reverse;
  z-index: -1;
}

@keyframes floatingParticles {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px) translateX(-15px);
    opacity: 0.6;
  }
  75% {
    transform: translateY(-30px) translateX(5px);
    opacity: 0.9;
  }
}

/* Centered Heading */
.heading-3 {
  text-align: center;
  font-size: 44px;
  margin-bottom: 60px;
  color: var(--ai-text);
  background: var(--ai-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-weight: 700;
  width: 100%;
  line-height: 1.2;
  padding: 0 10px;
  overflow: visible;
}

/* Clean Two Column Grid Layout with Progress */
.comp-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 60px; /* Added 60px horizontal gap in center */
  margin-top: 40px;
  position: relative;
}

.comp-wrapper::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -2;
  animation: gridMove 40s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 40px);
  }
}

/* Simple flat progress line */
.comp-wrapper::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: var(--line-height, 0);
  background: linear-gradient(180deg, 
    rgba(64, 158, 255, 0.8) 0%,
    rgba(156, 163, 175, 0.7) 50%,
    rgba(251, 146, 60, 0.8) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: none;
  border: none;
  outline: none;
}

/* Removed ::after element - no glow effects */

/* Simplified Lightning Animation - Performance Optimized */
@media (min-width: 768px) {
  @keyframes lightningGlow {
    0%, 100% { 
      opacity: 0.8;
      filter: blur(0px) brightness(1);
    }
    50% { 
      opacity: 1;
      filter: blur(1px) brightness(1.2);
    }
  }

  @keyframes lightningOrb {
    0%, 100% { 
      transform: translateX(-50%) scale(1);
      opacity: 0.8;
    }
    50% { 
      transform: translateX(-50%) scale(1.1);
      opacity: 1;
    }
  }
}

/* Mobile: Static effects only */
@media (max-width: 767px) {
  @keyframes lightningGlow {
    0%, 100% { 
      opacity: 0.6;
    }
  }

  @keyframes lightningOrb {
    0%, 100% { 
      transform: translateX(-50%) scale(1);
    }
  }
}

/* Simple card highlight effect */
.company-card {
  position: relative;
  transition: transform 0.2s ease;
  /* Enable hardware acceleration on desktop only */
}

@media (min-width: 768px) {
  .company-card {
    will-change: transform;
  }
  
  .company-card.lightning-active {
    transform: scale(1.02);
  }
}

@media (max-width: 767px) {
  .company-card.lightning-active {
    transform: scale(1.01);
  }
}



/* Smooth lightning transition effects */

/* Simple progress visibility */
.comp-wrapper.progress-visible::before {
  opacity: 1;
}

.company-card {
  background: var(--ai-bg-card);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  opacity: 0.4;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

/* Clean hover effect */
.company-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.company-card:hover::before {
  left: 100%;
}

.company-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ai-gradient);
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 18px;
}

/* Industry icons */
.company-card[data-industry="bpo"]::before {
  content: '🏢';
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
}

.company-card[data-industry="gaming"]::before {
  content: '🎮';
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8b5cf6, #ff6b35);
}

.company-card[data-industry="marketing"]::before {
  content: '📈';
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b35, #f59e0b);
}

/* Simple hover effects */
.company-card:hover {
  border-color: var(--ai-primary);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 25px 50px -12px rgba(0, 212, 255, 0.25),
    0 0 30px rgba(0, 212, 255, 0.2);
}

.comapany-text {
  font-weight: 700;
  font-size: 18px;
  color: var(--ai-text);
  position: relative;
  z-index: 1;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.comapany-text {
  font-weight: 600;
  font-size: 16px;
}

/* Skills Showcase */
.section-4 {
  padding: 80px 0;
}

.skills-wrapper {
  background: var(--ai-bg-card);
  border: 1px solid var(--ai-border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.skills-wrapper:hover {
  border-color: var(--ai-primary);
  box-shadow: 
    0 20px 25px -5px rgba(0, 212, 255, 0.1),
    0 0 30px rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.skill-head {
  color: var(--ai-text);
  font-size: 24px;
  margin-bottom: 16px;
}

.skill-text {
  color: var(--ai-text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Tools & Tech Section - Circular Animation */
.tools-tech-head {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--ai-text);
  background: var(--ai-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tools-circle-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tools-center {
  position: absolute;
  z-index: 10;
  background: var(--ai-gradient);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
  animation: centerPulse 3s ease-in-out infinite;
  line-height: 1.2;
}

@keyframes centerPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.8);
  }
}

.tools-orbit {
  position: absolute;
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 50%;
  animation: rotate 25s linear infinite;
}

.tools-orbit-1 {
  width: 280px;
  height: 280px;
}

.tools-orbit-2 {
  width: 350px;
  height: 350px;
  animation-duration: 30s;
  animation-direction: reverse;
}

.tools-orbit-3 {
  width: 420px;
  height: 420px;
  animation-duration: 35s;
}

.tools-orbit-item {
  position: absolute;
  background: var(--ai-bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ai-text);
  text-align: center;
  animation: counterRotate 25s linear infinite;
  transition: all 0.3s ease;
  padding: 8px 12px;
  min-width: 80px;
  min-height: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tools-orbit-2 .tools-orbit-item {
  animation-duration: 30s;
  animation-direction: reverse;
}

.tools-orbit-3 .tools-orbit-item {
  animation-duration: 35s;
}

.tools-orbit-item:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  z-index: 20;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes counterRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* Removed conflicting tools-section rule that was hiding the section */

/* Removed conflicting hover rule */

.tools-use {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--ai-text);
}

.tools-text {
  color: var(--ai-text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Contact Form - Fixed Layout */
.container-4 {
  padding: 80px 0;
}

.div-block-8 {
  max-width: 1000px;
  margin: 0 auto;
}

.heading-5 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: var(--ai-text);
  background: var(--ai-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.div-block-10 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.form-block {
  background: var(--ai-bg-card);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.form-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
  animation: shimmer 4s infinite;
}

.form-block label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ai-text);
  font-size: 15px;
  letter-spacing: 0.3px;
}

.form-block .w-input,
.form-block textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.9);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--ai-text);
  font-size: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  font-family: inherit;
  resize: vertical;
  min-height: 48px;
  box-sizing: border-box;
}

.form-block textarea {
  min-height: 120px;
  line-height: 1.5;
}

.form-block .w-input:focus,
.form-block textarea:focus {
  outline: none;
  border-color: var(--ai-primary);
  box-shadow: 
    0 0 0 3px rgba(0, 212, 255, 0.1),
    0 0 20px rgba(0, 212, 255, 0.2);
  background: rgba(15, 23, 42, 1);
}

.form-block .w-input::placeholder,
.form-block textarea::placeholder {
  color: var(--ai-text-muted);
}

.submit-button {
  background: var(--ai-gradient) !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 16px 40px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: white !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.submit-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 
    0 10px 25px rgba(0, 212, 255, 0.4),
    0 0 30px rgba(0, 212, 255, 0.3) !important;
}

.submit-button:active {
  transform: translateY(0) !important;
}

/* Contact Form Side Animation */
.div-block-11 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ai-bg-card);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 50px;
  min-height: 400px;
  width: 100%;
}

/* AI Animation Container */
.ai-animation-container {
  width: 260px;
  height: 260px;
  background: var(--ai-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(0, 212, 255, 0.4);
  box-shadow: 
    0 0 40px rgba(0, 212, 255, 0.4),
    0 0 80px rgba(0, 212, 255, 0.2);
  padding: 10px;
}

.ai-animation-container .tg-qr {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin: 0;
  filter: brightness(1.15) contrast(1.05);
  object-fit: contain;
  z-index: 2;
  display: block !important;
  background: white;
  padding: 8px;
  opacity: 1 !important;
  visibility: visible !important;
}

/* QR Code specific styling */
.ai-animation-container .tg-qr {
  opacity: 1;
  visibility: visible;
}

.ai-animation-container:hover .tg-qr {
  transform: scale(1.03);
  filter: brightness(1.25) contrast(1.15);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

@keyframes aiPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Form Messages */
.w-form-done, .w-form-fail {
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
  font-weight: 500;
}

.w-form-done {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid #22c55e;
  color: #22c55e;
}

.w-form-fail {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

/* Responsive Design */
@media (max-width: 991px) {
  .div-block-9 {
    padding: 14px 30px;
    border-radius: 0 0 20px 20px;
  }
  
  .div-block-14 {
    gap: 16px;
  }
  
  .link-block,
  .link-block-2 {
    padding: 8px 20px;
    font-size: 13px;
    border-radius: 25px;
  }
  
  .div-block-9 .link {
    font-size: 16px;
    padding: 6px 14px;
  }
  
  .bold-text-3,
  .bold-text-4 {
    font-size: 13px;
  }
  
  .div-block-10 {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
    padding: 0 20px;
  }
  
  .aboutme-wrapper {
    padding: 30px;
    margin: 50px 0;
  }
  
  .skills-wrapper {
    padding: 24px;
  }
  
  .form-block {
    padding: 35px;
    max-width: 100%;
  }
  
  .heading-5 {
    font-size: 36px;
  }
  
  .tools-circle-container {
    height: 400px;
    max-width: 400px;
  }
  
  .tools-center {
    width: 120px;
    height: 120px;
    font-size: 16px;
  }
  
  .tools-orbit-1 {
    width: 240px;
    height: 240px;
  }
  
  .tools-orbit-2 {
    width: 300px;
    height: 300px;
  }
  
  .tools-orbit-3 {
    width: 360px;
    height: 360px;
  }
}

@media (max-width: 768px) {
  .w-container {
    padding: 0 16px;
  }
  
  .div-block-9 {
    padding: 12px 20px;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    border-radius: 0 0 18px 18px;
  }
  
  .div-block-14 {
    gap: 10px;
    justify-content: center;
  }
  
  .link-block,
  .link-block-2 {
    padding: 7px 16px;
    font-size: 12px;
    border-radius: 20px;
  }
  
  .div-block-9 .link {
    font-size: 15px;
    padding: 5px 12px;
  }
  
  .bold-text-3,
  .bold-text-4 {
    font-size: 12px;
  }
  
  .hero-sec {
    padding: 50px 0;
  }
  
  .image-2 {
    width: 130px;
    height: 130px;
  }
  
  .header-name-text {
    font-size: 32px;
    margin-bottom: 25px;
  }
  
  .div-block-4 {
    gap: 10px;
    margin: 25px 0;
  }
  
  .skills-sub {
    font-size: 13px;
    padding: 8px 14px;
  }
  
  .div-block-7 {
    gap: 16px;
    margin-top: 25px;
  }
  
  .social-icon-link {
    width: 48px;
    height: 48px;
  }
  
  .social-icon {
    width: 24px;
    height: 24px;
  }
  
  .div-block-7 a.w-inline-block {
    width: 48px;
    height: 48px;
  }
  

  
  .aboutme-wrapper {
    padding: 25px;
    margin: 40px 0;
  }
  
  .aboutme-wrapper h1 {
    font-size: 28px;
  }
  
  .paragraph-3 {
    font-size: 15px;
  }
  
  .companies-section,
  .section-4,
  .container-4 {
    padding: 50px 0;
  }
  
  .heading-3 {
    font-size: 30px;
    margin-bottom: 35px;
  }
  
  .heading-3 {
    font-size: 36px;
    margin-bottom: 35px;
  }
  
  .comp-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    margin-top: 30px;
  }
  
  .company-card {
    padding: 22px 18px;
    min-height: 100px;
  }
  
  .comapany-text {
    font-size: 15px;
  }
  
  .skills-wrapper {
    padding: 22px;
    margin-bottom: 20px;
  }
  
  .skill-head {
    font-size: 22px;
  }
  
  .skill-text {
    font-size: 15px;
  }
  
  .tools-tech-head {
    font-size: 30px;
    margin-bottom: 30px;
  }
  
  .tools-section {
    padding: 25px;
    margin-bottom: 20px;
    display: block !important;
  }
  
  .tools-use {
    font-size: 18px;
  }
  
  .tools-text {
    font-size: 15px;
  }
  
  .heading-5 {
    font-size: 32px;
    margin-bottom: 35px;
  }
  
  .div-block-10 {
    gap: 35px;
    max-width: 100%;
    padding: 0 15px;
  }
  
  .form-block {
    padding: 30px;
    max-width: 100%;
  }
  
  .form-block .w-input,
  .form-block textarea {
    padding: 11px 15px;
    font-size: 15px;
    margin-bottom: 18px;
    min-height: 45px;
  }
  
  .submit-button {
    padding: 14px 30px !important;
    font-size: 15px !important;
  }
  
  .div-block-11 {
    padding: 30px;
    min-height: 250px;
  }
  
  .ai-animation-container {
    width: 220px;
    height: 220px;
  }

  .ai-animation-container .tg-qr {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .w-container {
    padding: 0 14px;
  }
  
  .div-block-9 {
    padding: 10px 16px;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    border-radius: 0 0 16px 16px;
  }
  
  .div-block-14 {
    gap: 6px;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
  
  .link-block,
  .link-block-2 {
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 18px;
  }
  
  .div-block-9 .link {
    font-size: 14px;
    padding: 4px 10px;
  }
  
  .bold-text-3,
  .bold-text-4 {
    font-size: 11px;
    letter-spacing: 0.3px;
  }
  
  .hero-sec {
    padding: 40px 0;
  }
  
  .header-name-text {
    font-size: 26px;
    margin-bottom: 20px;
  }
  
  .image-2 {
    width: 110px;
    height: 110px;
  }
  
  .div-block-4 {
    gap: 8px;
    margin: 20px 0;
  }
  
  .skills-sub {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .div-block-7 {
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .social-icon-link {
    width: 44px;
    height: 44px;
  }
  
  .social-icon {
    width: 22px;
    height: 22px;
  }
  

  
  .aboutme-wrapper {
    padding: 20px;
    margin: 30px 0;
  }
  
  .aboutme-wrapper h1 {
    font-size: 24px;
  }
  
  .paragraph-3 {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .companies-section,
  .section-4,
  .container-4 {
    padding: 40px 0;
  }
  
  .heading-3 {
    font-size: 26px;
    margin-bottom: 30px;
  }
  
  .heading-3 {
    font-size: 28px;
    margin-bottom: 25px;
  }
  
  .comp-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 15px;
    margin-top: 25px;
  }
  
  .company-card {
    padding: 18px 14px;
    min-height: 90px;
  }
  
  .comapany-text {
    font-size: 14px;
    line-height: 1.3;
  }
  
  .skills-wrapper {
    padding: 18px;
    margin-bottom: 16px;
  }
  
  .skill-head {
    font-size: 19px;
    margin-bottom: 10px;
  }
  
  .skill-text {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .tools-tech-head {
    font-size: 26px;
    margin-bottom: 25px;
  }
  
  .tools-section {
    padding: 20px;
    margin-bottom: 16px;
    display: block !important;
  }
  
  .tools-use {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .tools-text {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .heading-5 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .div-block-10 {
    gap: 30px;
  }
  
  .form-block {
    padding: 25px;
    max-width: 100%;
  }
  
  .form-block .w-input,
  .form-block textarea {
    padding: 10px 14px;
    font-size: 14px;
    margin-bottom: 16px;
    min-height: 42px;
  }
  
  .form-block textarea {
    min-height: 90px;
  }
  
  .form-block .w-input {
    min-height: 40px;
  }
  
  .submit-button {
    padding: 12px 26px !important;
    font-size: 14px !important;
  }
  
  .div-block-11 {
    padding: 25px;
    min-height: 200px;
  }
  
  .ai-animation-container {
    width: 180px;
    height: 180px;
  }

  .ai-animation-container .tg-qr {
    width: 140px;
    height: 140px;
  }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  #ai-neural-canvas,
  .ai-particles-bg {
    display: none !important;
  }
  
  body::before {
    animation: none !important;
  }
}

/* QR Code Container Styles */
.qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ai-bg-card);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.qr-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
  animation: shimmer 4s infinite;
}

.qr-container:hover {
  border-color: var(--ai-primary);
  transform: translateY(-5px);
  box-shadow: 
    0 20px 40px rgba(0, 212, 255, 0.2),
    0 0 30px rgba(0, 212, 255, 0.1);
}

.tg-qr {
  width: 150px;
  height: 150px;
  border-radius: 16px;
  border: 3px solid var(--ai-primary);
  box-shadow: 
    0 0 20px rgba(0, 212, 255, 0.3),
    0 0 40px rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.tg-qr:hover {
  transform: scale(1.05);
  box-shadow: 
    0 0 30px rgba(0, 212, 255, 0.5),
    0 0 60px rgba(0, 212, 255, 0.2);
}

.qr-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--ai-text);
  margin-bottom: 8px;
  text-align: center;
  background: var(--ai-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qr-subtitle {
  font-size: 16px;
  color: var(--ai-text-muted);
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

/* Tools & Tech Section */
.tools-section {
  background: linear-gradient(135deg, 
    rgba(5, 10, 20, 0.95) 0%, 
    rgba(15, 20, 35, 0.95) 50%, 
    rgba(5, 10, 20, 0.95) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tools-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.tools-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.tools-heading {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(135deg, var(--ai-primary), var(--ai-accent), #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tool-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.tool-category::before {
  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.6s ease;
}

.tool-category:hover::before {
  left: 100%;
}

.tool-category:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(0, 212, 255, 0.2);
}

.category-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}

.category-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}

.category-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ai-text-primary);
  margin: 0;
  background: linear-gradient(135deg, var(--ai-primary), var(--ai-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-tag {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--ai-text-primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tool-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.4s ease;
}

.tool-tag:hover::before {
  left: 100%;
}

.tool-tag:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.tool-tag.featured {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(0, 212, 255, 0.2));
  border-color: rgba(255, 140, 0, 0.5);
  color: #fff;
  font-weight: 600;
  animation: featuredPulse 2s ease-in-out infinite;
}

@keyframes featuredPulse {
  0%, 100% { 
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
  }
  50% { 
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
  }
}

.tool-tag.featured:hover {
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.3), rgba(0, 212, 255, 0.3));
  transform: translateY(-3px) scale(1.05);
}

/* Category-specific colors */
.tool-category[data-category="project"]:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(139, 92, 246, 0.2);
}

.tool-category[data-category="automation"]:hover {
  border-color: rgba(255, 140, 0, 0.4);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 140, 0, 0.2);
}

.tool-category[data-category="blockchain"]:hover {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 215, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tools-heading {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  
  .tool-category {
    padding: 20px;
  }
  
  .category-icon {
    font-size: 1.5rem;
  }
  
  .category-title {
    font-size: 1.1rem;
  }
}

/* Contact Form Section */
.contact-section {
  background: linear-gradient(135deg, 
    rgba(10, 10, 10, 0.95) 0%, 
    rgba(20, 25, 40, 0.95) 50%, 
    rgba(10, 10, 10, 0.95) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  animation: contactPulse 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes contactPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.contact-container {
  position: relative;
  z-index: 2;
}

.contact-heading {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
  background: var(--ai-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.contact-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--ai-gradient);
  border-radius: 2px;
}

.contact-subtext {
  text-align: center;
  font-size: 18px;
  color: var(--ai-text-muted);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* Contact Form Styles */
.contact-form-container {
  background: rgba(20, 25, 40, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 212, 255, 0.05) 0%, 
    rgba(139, 92, 246, 0.05) 100%);
  pointer-events: none;
}

.form-group {
  margin-bottom: 32px;
  position: relative;
}

.input-wrapper {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 20px 24px;
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  font-size: 16px;
  color: var(--ai-text);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.form-input:focus {
  outline: none;
  border-color: var(--ai-primary);
  box-shadow: 
    0 0 20px rgba(0, 212, 255, 0.3),
    inset 0 0 20px rgba(0, 212, 255, 0.1);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label,
.form-input:valid + .form-label {
  transform: translateY(-32px) scale(0.85);
  color: var(--ai-primary);
}

.form-label {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 16px;
  color: var(--ai-text-muted);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 3;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}



.input-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ai-gradient);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.form-input:focus ~ .input-glow {
  opacity: 0.1;
}

.submit-btn {
  width: 100%;
  padding: 20px;
  background: transparent;
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ai-text);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--ai-gradient);
  transition: left 0.4s ease;
  z-index: 1;
}

.submit-btn:hover::before {
  left: 0;
}

.submit-btn:hover {
  border-color: var(--ai-primary);
  box-shadow: 
    0 0 30px rgba(0, 212, 255, 0.4),
    inset 0 0 20px rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.btn-text {
  position: relative;
  z-index: 2;
}

/* QR Code Section */
.contact-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qr-wrapper {
  position: relative;
  margin-bottom: 30px;
}

.qr-glow-ring {
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  border: 2px solid var(--ai-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: qrPulse 3s ease-in-out infinite;
}

@keyframes qrPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: scale(1.1);
    opacity: 0.6;
  }
}

.qr-code {
  width: 320px;
  height: 320px;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  border: 3px solid rgba(0, 212, 255, 0.3);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
  background: transparent;
  padding: 20px;
}

.qr-code:hover {
  transform: scale(1.05);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(0, 212, 255, 0.4);
}

.qr-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  pointer-events: none;
}

.qr-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--ai-primary) 50%, 
    transparent 100%);
  animation: qrScan 2s ease-in-out infinite;
}

@keyframes qrScan {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(320px); opacity: 0; }
}

.qr-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ai-text);
  margin-bottom: 10px;
  background: var(--ai-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qr-text p {
  color: var(--ai-text-muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.telegram-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(0, 136, 204, 0.1));
  border: 1px solid rgba(0, 136, 204, 0.3);
  border-radius: 25px;
  color: var(--ai-text);
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-decoration: none;
}

.telegram-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 136, 204, 0.3);
  border-color: rgba(0, 136, 204, 0.5);
  color: var(--ai-text);
  text-decoration: none;
}

.telegram-badge-link:hover .telegram-icon {
  transform: rotate(12deg) scale(1.1);
}

.telegram-icon {
  fill: #0088cc;
}



/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-heading {
    font-size: 36px;
  }
  
  .contact-subtext {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-form-container {
    padding: 30px 25px;
  }
  
  .qr-code {
    width: 240px;
    height: 240px;
    padding: 15px;
  }
  
  .qr-glow-ring {
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
  }
}

@media (max-width: 480px) {
  .contact-heading {
    font-size: 28px;
  }
  
  .contact-form-container {
    padding: 25px 20px;
  }
  
  .form-input {
    padding: 16px 20px;
    font-size: 15px;
  }
  
  .form-label {
    top: 16px;
    left: 20px;
    font-size: 15px;
  }
  
  .form-input:focus + .form-label,
  .form-input:not(:placeholder-shown) + .form-label,
  .form-input:valid + .form-label {
    transform: translateY(-28px) scale(0.85);
  }
  
  .qr-code {
    width: 200px;
    height: 200px;
    padding: 12px;
  }
  
  .qr-glow-ring {
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
  }
}

/* Modern Footer Styles */
.footer-section {
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%, 
    rgba(30, 41, 59, 0.95) 50%, 
    rgba(15, 23, 42, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-top: 2px solid rgba(0, 212, 255, 0.2);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.04) 0%, transparent 50%);
  pointer-events: none;
  animation: footerPulse 20s ease-in-out infinite;
}

@keyframes footerPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--ai-primary);
  margin-bottom: 16px;
  text-decoration: none;
  background: var(--ai-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: translateY(-2px);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.footer-description {
  color: var(--ai-text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--ai-gradient);
  border-color: var(--ai-primary);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.footer-social img {
  width: 20px;
  height: 20px;
  filter: brightness(1.2);
  transition: all 0.3s ease;
}

.footer-social a:hover img {
  filter: brightness(1.5) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ai-text);
  margin-bottom: 20px;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--ai-gradient);
  border-radius: 1px;
}

.footer-link {
  color: var(--ai-text-muted);
  text-decoration: none;
  font-size: 16px;
  padding: 8px 0;
  display: block;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--ai-gradient);
  transition: width 0.3s ease;
  transform: translateY(-50%);
}

.footer-link:hover {
  color: var(--ai-primary);
  padding-left: 20px;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-link:hover::before {
  width: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-copyright {
  color: var(--ai-text-muted);
  font-size: 14px;
  margin: 0;
  position: relative;
}

.footer-copyright::before {
  content: '©';
  font-size: 16px;
  color: var(--ai-primary);
  margin-right: 8px;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-section {
    padding: 40px 0 20px;
  }
  
  .footer-container {
    padding: 0 16px;
  }
  
  .footer-logo {
    font-size: 24px;
  }
  
  .footer-description {
    font-size: 15px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-link {
    font-size: 15px;
    text-align: center;
  }
  
  .footer-link:hover {
    padding-left: 0;
  }
  
  .footer-link::before {
    display: none;
  }
  
  .qr-container {
    padding: 30px;
    min-height: 250px;
  }
  
  .tg-qr {
    width: 130px;
    height: 130px;
  }
  
  .qr-title {
    font-size: 20px;
  }
  
  .qr-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-logo {
    font-size: 22px;
  }
  
  .footer-description {
    font-size: 14px;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
  }
  
  .footer-social img {
    width: 18px;
    height: 18px;
  }
  
  .footer-column h4 {
    font-size: 15px;
  }
  
  .footer-link {
    font-size: 14px;
  }
  
  .footer-copyright {
    font-size: 13px;
  }
  
  .qr-container {
    padding: 25px;
    min-height: 220px;
  }
  
  .tg-qr {
    width: 110px;
    height: 110px;
  }
  
  .qr-title {
    font-size: 18px;
  }
  
  .qr-subtitle {
    font-size: 14px;
  }
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
  .ai-particle-bg {
    display: none;
  }
  
  #ai-neural-canvas {
    opacity: 0.2;
  }
  
  .image-2::after {
    animation-duration: 1s;
  }
  
  .skills-sub {
    animation: none;
  }
  
  .skills-sub:hover {
    animation: none;
  }
  
  body::before {
    animation-duration: 30s;
  }
}

/* Very small screens - minimal animations */
@media (max-width: 480px) {
  #ai-neural-canvas {
    display: none;
  }
  
  .image-2::before,
  .image-2::after {
    animation-duration: 2s;
  }
  
  .header-name-text {
    animation: none;
    text-shadow: none;
  }
  
  .aboutme-wrapper::before {
    animation: none;
  }
}

/* High performance mode for lower-end devices */
@media (max-resolution: 1dppx) {
  .ai-particles-bg {
    display: none;
  }
  
  .image-2::before {
    filter: none;
  }
}

/* Dark mode enhancements */
@media (prefers-color-scheme: dark) {
  :root {
    --ai-text: #f1f5f9;
    --ai-text-muted: #cbd5e1;
  }
}

/* Battery saving mode */
@media (prefers-reduced-data: reduce) {
  #ai-neural-canvas,
  .ai-particles-bg {
    display: none !important;
  }
  
  body::before {
    background: var(--ai-bg) !important;
    animation: none !important;
  }
}

/* Card Animation States */
.company-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.company-card.active {
  background: rgba(0, 212, 255, 0.12);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.25);
  transform: translateY(0) scale(1.01);
}

.company-card.completed {
  opacity: 0.7;
  transform: translateY(0);
}

/* Mobile optimizations */
@media (hover: none) {
  .company-card:hover::before {
    left: -100% !important;
  }
  
  .company-card::before {
    display: none;
  }
  
  /* Clean mobile progress line */
  /* Simplified mobile progress line */
  .comp-wrapper::before {
    width: 1px;
    background: linear-gradient(180deg, 
      rgba(64, 158, 255, 0.8) 0%,
      rgba(156, 163, 175, 0.7) 50%,
      rgba(251, 146, 60, 0.8) 100%);
    z-index: 1;
    box-shadow: none;
    border: none;
    outline: none;
    /* Disable animation on mobile */
    animation: none;
  }
  
  /* Remove background grid on mobile */
  .comp-wrapper::after {
    display: none;
  }
  
  /* Simplified mobile card styles */
  .company-card {
    position: relative;
    z-index: 1;
    /* Reduce transitions for better mobile performance */
    transition: transform 0.2s ease;
  }
  
  /* Disable complex animations on mobile */
  .companies-section,
  .companies-section::before,
  .companies-section::after {
    animation: none !important;
  }
  
  /* Simplified mobile hover effects */
  .company-card.lightning-active {
    transform: scale(1.01);
  }
}