@keyframes slow-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.animate-slow-pulse {
  animation: slow-pulse 8s ease-in-out infinite;
}

@keyframes slow-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-slow-gradient {
  animation: slow-gradient 15s ease infinite;
  background-size: 200% 200%;
}

@keyframes flip-horizontal {
  0% { transform: scaleX(1); }
  50% { transform: scaleX(-1); }
  100% { transform: scaleX(1); }
}

.animate-flip-horizontal {
  animation: flip-horizontal 0.5s ease-in-out;
}

.card {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  background: #111111;
  position: relative;
}


/* Mobile gradient - diagonal like desktop */
@media (max-width: 768px) {
  .hero-bg {
    background: #111111;
  }
  
}


.services {
  position: relative;
  overflow: hidden;
}

.services::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.contact-bg {
  background: transparent;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.contact-bg::before {
  display: none;
}

@keyframes gradient-shift {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

.contact-bg::after {
  display: none;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}


.contact-content {
  width: 100%;
  max-width: 6xl;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

@keyframes slide-in-right {
  0% { transform: translateX(100%); opacity: 0; }
  50% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(-100%); opacity: 0; }
}

.animate-slide-in-right {
  animation: slide-in-right 2s ease-in-out forwards;
}

@keyframes fade-out {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.animate-fade-out {
  animation: fade-out 0.3s ease-out forwards;
}

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

.rocket-wrapper {
  animation: float 3s ease-in-out infinite;
} 