/* --- Modern Scroll Animation Effects --- */
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
  }

  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.03);
  }

  80% {
    transform: translateY(5px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-120px) scale(0.8) rotate(-8deg);
  }

  60% {
    opacity: 1;
    transform: translateX(20px) scale(1.05) rotate(2deg);
  }

  80% {
    transform: translateX(-5px) scale(0.98) rotate(-1deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(120px) scale(0.8) rotate(8deg);
  }

  60% {
    opacity: 1;
    transform: translateX(-20px) scale(1.05) rotate(-2deg);
  }

  80% {
    transform: translateX(5px) scale(0.98) rotate(1deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0);
  }
}

@keyframes zoomRotateIn {
  0% {
    opacity: 0;
    transform: scale(0.7) rotate(-10deg);
  }

  60% {
    opacity: 1;
    transform: scale(1.05) rotate(3deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.animate-fade-in {
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition: opacity 0.8s, transform 0.8s;
}

.animate-fade-in.animate {
  animation: fadeInUpBig 1.1s cubic-bezier(.22, 1.12, .56, 1.01) both;
}

.animate-slide-in-left {
  opacity: 0;
  transform: translateX(-120px) scale(0.8) rotate(-8deg);
  transition: opacity 0.8s, transform 0.8s;
}

.animate-slide-in-left.animate {
  animation: bounceInLeft 1.1s cubic-bezier(.22, 1.12, .56, 1.01) both;
}

.animate-slide-in-right {
  opacity: 0;
  transform: translateX(120px) scale(0.8) rotate(8deg);
  transition: opacity 0.8s, transform 0.8s;
}

.animate-slide-in-right.animate {
  animation: bounceInRight 1.1s cubic-bezier(.22, 1.12, .56, 1.01) both;
}

.animate-zoom-in {
  opacity: 0;
  transform: scale(0.7) rotate(-10deg);
  transition: opacity 0.8s, transform 0.8s;
}

.animate-zoom-in.animate {
  animation: zoomRotateIn 1.1s cubic-bezier(.22, 1.12, .56, 1.01) both;
}

/* Staggered effect for children */
.animate-stagger>* {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 0.7s, transform 0.7s;
}

.animate-stagger.animate>* {
  opacity: 1;
  transform: none;
  animation: fadeInUpBig 0.8s cubic-bezier(.22, 1.12, .56, 1.01) both;
}

.animate-stagger.animate>*:nth-child(1) {
  animation-delay: 0.1s;
}

.animate-stagger.animate>*:nth-child(2) {
  animation-delay: 0.25s;
}

.animate-stagger.animate>*:nth-child(3) {
  animation-delay: 0.4s;
}

.animate-stagger.animate>*:nth-child(4) {
  animation-delay: 0.55s;
}

.animate-stagger.animate>*:nth-child(5) {
  animation-delay: 0.7s;
}


.services {
  margin-top: 0.1rem;
}

.container .wwa-header {
  width: 100%;
  max-width: 100%;
  text-align: center;
  padding: 0.5rem 1rem 0.5rem 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .container .wwa-header {
    max-width: 75%;
    margin: 20px auto 0 auto;
    padding-top: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .container .wwa-header {
    max-width: 50%;
    text-align: left;
    margin-left: 0;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }
}

.wwa-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FAFAFA;
  margin-bottom: 0;
}

.wwa-description {
  font-size: 1.125rem;
  color: #A1A1AA;
  line-height: 1.6;
  margin-bottom: 50px;
}

.stats-bar {
  background-color: #0c0c0e;
  padding: 3rem 1rem;
  margin-bottom: 100px;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  flex: 1 1 200px;
  text-align: center;
  padding: 2rem 1rem;
  background-color: rgba(250, 204, 21, 0.06);
  /* Soft yellow bg */
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.stat-item:hover {
  background-color: rgba(250, 204, 21, 0.12);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: #facc15;
  /* Yellow */
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #e4e4e7;
}

@media (max-width: 1024px) {
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .stats-row {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-item {
    width: 100%;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    margin-top: -20px;

  }

  .process-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .process-step {
    width: 100%;
    flex-shrink: 0;
    text-align: center;
  }
}

[data-animate] {
  opacity: 0;
}

[data-animate].animate {
  opacity: 1;
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

/* Animations */
[data-animate="fade-in"].animate {
  animation-name: fadeIn;
}

[data-animate="slide-up"].animate {
  animation-name: slideUp;
}

[data-animate="zoom-in"].animate {
  animation-name: zoomIn;
}

/* Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}