.welcome-container {
    position: relative;
    height: 80px; /* Equivalent to h-20 */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
}

.welcome-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: flex;
  justify-content: start;
  align-items: center;

  /* Animation settings */
  animation: fadeLoop 18s infinite;
}

@keyframes fadeLoop {
  0%, 16.6% { opacity: 1; }  /* Visible for the first 1/6th of time */
  20%, 100% { opacity: 0; }  /* Fade out and stay hidden */
}

/* Stagger the start time for each slide (Total time / Number of slides) */
.welcome-slide:nth-child(1) { animation-delay: 0s; }
.welcome-slide:nth-child(2) { animation-delay: 3s; }
.welcome-slide:nth-child(3) { animation-delay: 6s; }
.welcome-slide:nth-child(4) { animation-delay: 9s; }
.welcome-slide:nth-child(5) { animation-delay: 12s; }
.welcome-slide:nth-child(6) { animation-delay: 15s; }
