
.cyber-gradient {
  background: linear-gradient(135deg, #0A192F 0%, #020C1B 100%);
}

.glow-effect {
  box-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(100, 255, 218, 0.4);
}

.text-cyber-blue {
  color: #64FFDA;
}

.bg-cyber-blue {
  background-color: #64FFDA;
}

.text-cyber-dark {
  color: #0A192F;
}

.bg-cyber-dark {
  background-color: #0A192F;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.bg-opacity-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Contact form placeholder styles */
input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Contact form focus styles */
input:focus,
textarea:focus {
  outline: none;
  border-color: #64FFDA;
  box-shadow: 0 0 0 2px rgba(100, 255, 218, 0.2);
}
