/* Banner base */
.welcome-banner {
  width: 100%;
  background-color: #18a4df;
}

/* Content container */
.welcome-banner .welcome-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

/* FORCE h1 styles */
.welcome-banner .welcome-title {
  color: #ffffff !important;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 10px;
  opacity: 0;
  animation: fadeInRight 1.5s ease-out forwards;
}

/* FORCE p styles */
.welcome-banner .welcome-text {
  color: #ffffff !important;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0;
  opacity: 0.9;
  animation: fadeInLeft 1.5s ease-out forwards;
  animation-delay: 0.2s;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
