.jobs-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.iframe {
  height: 900px;
  width: 900px;
  max-width: 90%;
  max-height: 90%;
  border: none;
}

* {
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
}

.font-display {
  font-family: "Outfit", system-ui, sans-serif;
}

.font-body {
  font-family: "Inter", system-ui, sans-serif;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes slide-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.animate-float {
  animation: float 8s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

.animate-slide-in-up {
  animation: slide-in-up 0.8s ease-out forwards;
}

.animate-slide-in-right {
  animation: slide-in-right 0.6s ease-out forwards;
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg-animated {
  background: linear-gradient(270deg, #3b82f6, #8b5cf6, #06b6d4);
  background-size: 600% 600%;
  animation: gradient-shift 8s ease infinite;
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.25);
}

.benefit-card {
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateX(8px);
}

.step-number {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@view-transition {
  navigation: auto;
}

/* Mobile menu animation */
.mobile-menu {
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.mobile-menu.hidden {
  transform: translateX(100%);
  opacity: 0;
}

.mobile-menu.visible {
  transform: translateX(0);
  opacity: 1;
}
