/*--------------------------------------------------------------
# Advanced Tech Grid Animations & Effects
--------------------------------------------------------------*/

/* Network illuminated background */
.network-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: transparent;
}

/* Glowing corners on cards - Disabled */


/* Pulsing border animation for service cards - Disabled */

/* Holographic effect on hover */
.portfolio-card:hover .portfolio-image {
  position: relative;
}

.portfolio-card:hover .portfolio-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 102, 255, 0.3),
    transparent
  );
  animation: holoScan 1.5s ease-in-out;
}

@keyframes holoScan {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Typing cursor effect - Disabled */

/* Energy pulse on stat cards - Disabled */

/* Hexagon pattern overlay - Disabled */


/* Glitch effect on section titles - Disabled */

/* Reveal animation for cards on scroll */
@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(50px) rotateX(-10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.bento-card {
  animation: cardReveal 0.6s ease-out;
  animation-fill-mode: both;
}

.bento-card:nth-child(1) { animation-delay: 0.1s; }
.bento-card:nth-child(2) { animation-delay: 0.2s; }
.bento-card:nth-child(3) { animation-delay: 0.3s; }
.bento-card:nth-child(4) { animation-delay: 0.4s; }
.bento-card:nth-child(5) { animation-delay: 0.5s; }
.bento-card:nth-child(6) { animation-delay: 0.6s; }
.bento-card:nth-child(7) { animation-delay: 0.7s; }
.bento-card:nth-child(8) { animation-delay: 0.8s; }

/* Digital rain effect for testimonials - Disabled */
.testimonial-wrapper {
  position: relative;
  overflow: hidden;
}

/* Neon glow on focus for form inputs - Disabled */

/* Loading bar animation - Disabled */
