@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse-slow {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out forwards;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gradient-bg-1 {
  background: linear-gradient(135deg, #183054 0%, #225777 50%, #183054 100%);
}

.gradient-bg-2 {
  background: linear-gradient(135deg, #183054 0%, #225777 100%);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #225777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.card-hover:hover {
  transform: translateY(-5px);
}

.btn-primary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-container {
  transition: transform 0.3s ease;
}

.card-hover:hover .icon-container {
  transform: scale(1.1);
}

.stats-card {
  background: linear-gradient(135deg, #183054 0%, #225777 100%);
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(24, 48, 84, 0.3);
}

.icon-container {
  transition: transform 0.3s ease;
}

.card-hover:hover .icon-container {
  transform: scale(1.1) rotate(5deg);
}

.section-gradient {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.service-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #225777 0%, #183054 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(24, 48, 84, 0.4);
}

.service-card:hover .card-content {
  color: white;
}

.service-card:hover .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.card-content {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.icon-wrapper {
  transition: all 0.4s ease;
}

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

@keyframes floating {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.floating-delayed {
  animation: floating 6s ease-in-out infinite 3s;
}

.wave-animation {
  animation: wave 20s linear infinite;
}

@keyframes wave {
  0% {
    transform: translateX(0) translateY(0);
  }

  100% {
    transform: translateX(-50%) translateY(0);
  }
}

.geometric-shape {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {

  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
}

.team-card {
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.team-card:hover {
  border-left-color: #225777;
  background: rgba(34, 87, 119, 0.05);
  transform: translateX(8px);
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #225777, transparent);
}

.gradient-text {
  background: linear-gradient(135deg, #183054 0%, #225777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #225777 0%, #183054 100%);
  color: white;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.partnership-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(34, 87, 119, 0.2);
}

.stats-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.custom-shadow {
  box-shadow: 0 20px 60px rgba(24, 48, 84, 0.15);
}

.grid-background {
  background-image:
    linear-gradient(rgba(34, 87, 119, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 87, 119, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}


@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes pulse-slow {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out forwards;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gradient-bg-1 {
  background: linear-gradient(135deg, #183054 0%, #225777 50%, #183054 100%);
}

.gradient-bg-2 {
  background: linear-gradient(135deg, #183054 0%, #225777 100%);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #225777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.card-hover:hover {
  transform: translateY(-5px);
}

.btn-primary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-container {
  transition: transform 0.3s ease;
}

.card-hover:hover .icon-container {
  transform: scale(1.1);
}