 :root {
      --neon-blue: #00f7ff;
      --neon-purple: #a100ff;
      --neon-pink: #ff00e6;
      --dark-bg: #0a0a15;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--dark-bg);
      color: white;
    }
    body {
    -webkit-overflow-scrolling: touch !important;
}


/*==================================================== hero section ================================================================== */
/* Ensure navbar has default cursor */
.cyber-navbar,
#cyber-mobile-menu,
#mobile-services-button,
#mobile-services-menu,
.group {
  cursor: default !important;
}

/* Unique Particle Canvas */
#unique-cyber-particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* pointer-events: none; */
}

/* Unique Hero Content */
.unique-cyber-hero-content {
  position: relative;
  z-index: 2;
}

/* Unique Gradient Text */
.unique-cyber-gradient-text {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Unique Glowing Button */
.unique-cyber-glow-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.unique-cyber-glow-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  z-index: -1;
  opacity: 0.7;
  transition: all 0.3s;
}

.unique-cyber-glow-btn:hover::before {
  opacity: 1;
  filter: brightness(1.2);
}

.unique-cyber-glow-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  z-index: -2;
  opacity: 0;
  filter: blur(10px);
  transition: all 0.3s;
}

.unique-cyber-glow-btn:hover::after {
  opacity: 0.6;
}

/* Unique Typing Animation */
.unique-cyber-typing-container {
  white-space: nowrap;
  /* Prevent text from wrapping */
  width: 100%;
  /* Ensure container takes full width */
  position: relative;
  min-height: 80px;
  margin: 1.5rem auto;
  overflow: visible;
  /* Prevent cropping */
}

.unique-cyber-typing-heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  /* Center the heading */
  width: auto;
  /* Allow heading to take natural width */
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
}

.unique-cyber-typing-heading.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.unique-cyber-typing-heading.inactive {
  opacity: 0;
  transform: translateX(-50%) translateY(-20px);
}

/* Ensure parent container doesn't restrict width */
.unique-cyber-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  /* Prevent max-width from constraining */
}

.unique-cyber-typing-text {
  display: inline-block;
  position: relative;
}

.unique-cyber-typing-text::after {
  content: "|";
  position: absolute;
  right: -12px;
  font-weight: bold;
  color: var(--neon-blue);
  text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue);
  animation: unique-cyber-blink 0.8s step-end infinite;
}

@keyframes unique-cyber-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  h1 {
    line-height: 1.8rem;
  }

  .unique-cyber-hero-content {
    padding-top: 2rem;
  }

  .unique-cyber-btn-group {
    justify-content: center;
  }

  .unique-cyber-typing-container {
    min-height: 30px;
  }

  .unique-cyber-typing-heading {
    font-size: 1.5rem;
    /* Reduce font size for smaller screens */
    line-height: 1.8rem;
  }
}

/* ======================================== services section ==========================================================*/
/* Glowing Button */
.glow-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  transition: all 0.3s;
}

.glow-btn:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  opacity: 0.7;
  z-index: -1;
  filter: brightness(1.2);
}

.glow-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
  z-index: -2;
  opacity: 0;
  filter: blur(10px);
  transition: all 0.3s;
}

.glow-btn:hover::after {
  opacity: 0.6;
}

/* 3D Effect for Service Cards */
.service-card {
  perspective: 1000px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.service-card:hover {
  transform: translateZ(20px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 247, 255, 0.3);
}

.service-card:hover .relative.z-10 {
  transform: rotateX(5deg) rotateY(5deg);
  transition: transform 0.5s ease;
}

/* Ensure content inside card remains readable */
.service-card .relative.z-10 {
  transform: rotateX(0deg) rotateY(0deg);
  transition: transform 0.5s ease;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .service-card {
    transform: none !important;
    /* Disable 3D effect on mobile for performance */
  }

  .service-card:hover .relative.z-10 {
    transform: none !important;
  }

  .service-card:hover {
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.2);
  }
}

/*==================================================== why choose section ================================================================== */
/* Custom animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes float-delay {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(-5deg);
  }
}

@keyframes gradient-shine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes pulse-slow {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.animate-float {
  animation: float 8s ease-in-out infinite;
}

.animate-float-delay {
  animation: float-delay 8s ease-in-out 2s infinite;
}

.animate-gradient-shine {
  animation: gradient-shine 3s linear infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 6s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.tech-tag {
  @apply px-3 py-1 text-xs font-medium rounded-full bg-gray-800 text-gray-300 transition-all duration-300;
}

.group:hover .tech-tag {
  @apply bg-cyan-400/10 text-cyan-400;
}












/* core technologies section */

/* Additional animations for tech slider */
@keyframes tech-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-tech-scroll {
  animation: tech-scroll 30s linear infinite;
}

.tech-slider-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.tech-item-3d {
  transform: translateZ(0);
  transition: transform 0.5s ease;
}

.tech-item-3d:hover {
  transform: translate3d(0, -5px, 10px);
}

.perspective-1000 {
  perspective: 1000px;
}

/* founder section */
/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes float-delay {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.animate-float {
  animation: float 8s ease-in-out infinite;
}

.animate-float-delay {
  animation: float-delay 8s ease-in-out 2s infinite;
}

.social-icon {
  @apply w-10 h-10 rounded-full flex items-center justify-center bg-gray-800 text-gray-400 hover:text-white hover:bg-cyan-400/10 transition-all duration-300;
}

.social-icon:hover {
  @apply shadow-lg shadow-cyan-400/10;
}









/* Faq's section */
/* Custom animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes float-delay {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(-5deg);
  }
}

@keyframes gradient-shine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes pulse-slow {
  0%,
  100% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.4;
  }
}

.animate-float {
  animation: float 8s ease-in-out infinite;
}

.animate-float-delay {
  animation: float-delay 8s ease-in-out 2s infinite;
}

.animate-gradient-shine {
  animation: gradient-shine 3s linear infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 6s ease-in-out infinite;
}

/* FAQ toggle icon rotation */
.faq-item.active .faq-toggle svg {
  transform: rotate(180deg);
}

/* FAQ content animation */
.faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.faq-item.active .faq-content {
  max-height: 500px;
  /* Fallback for non-JS dynamic height */
  opacity: 1;
}

/* Backdrop filter fallback for Safari */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
