/* Text Container */
.scroll-section .text-container {
  top: 50%; /* Center vertically */
  transform: translateY(-50%);
}

/* Fade Text */
.scroll-section .fade-text {
  opacity: 0; /* Start with text invisible */
  transform: translateY(20px); /* Start slightly below */
  transition: opacity 1s ease, transform 1s ease; /* Slow and smooth transition */
  display: inline-block; /* Ensure words are treated as individual blocks */
}

/* Active State for Fade Text */
.scroll-section .fade-text.active {
  opacity: 1; /* Fade in */
  transform: translateY(0); /* Move to original position */
}

.mission-section .scroll-section .fade-text {
  margin-left: 0px;
}
