:root {
  --neon-blue: #00f7ff;
  --neon-purple: #a100ff;
  --neon-pink: #ff00e6;
  --dark-bg: #0a0a15;
  --accent-green: #00ffaa;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--dark-bg);
  color: #e5e7eb;
  margin: 0;
  overflow-x: hidden;
}

.gradient-text {
  background: linear-gradient(
    90deg,
    var(--neon-blue),
    var(--neon-purple),
    var(--neon-pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
}

.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 247, 255, 0.25);
}

.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* background: linear-gradient(135deg, rgba(10, 10, 21, 0.9), rgba(0, 0, 0, 0.8)); */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 247, 255, 0.1) 0%,
    transparent 70%
  );
  z-index: 0;
}

#unique-cyber-particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.cta-button {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.3s ease, background 0.3s ease;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
}

.accordion-item {
  transition: all 0.3s ease;
  overflow: hidden;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  opacity: 1;
}

.accordion-content {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.accordion-arrow {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
  }

  .hero-section h1 {
    font-size: 2.8rem;
  }

  .hero-section p {
    font-size: 1.1rem;
    max-width: 95%;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .max-w-6xl,
  .max-w-7xl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .grid.md\:grid-cols-2,
  .grid.lg\:grid-cols-3 {
    grid-template-columns: 1fr;
  }

  img.h-80 {
    height: 18rem;
  }
}

@media (max-width: 640px) {
  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .sticky-cta {
    bottom: 15px;
    right: 15px;
  }
}
