/* animations */
/* fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px); /* Initial position */
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0); /* Final position */
}
/* Fly in animations */
.fly-in-right {
  opacity: 0;
  transform: translateX(200px);
  transition: opacity 1.5s, transform 1.5s;
}

/* Animation keyframes */
@keyframes flyInFromRight {
  0% {
      opacity: 0;
      transform: translateX(200px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Add the animation */
.fly-in-right.show {
  animation: flyInFromRight 0.5s ease-out forwards;
  
}

.fly-in-left {
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 1.5s, transform 1.5s;
}

/* Animation keyframes */
@keyframes flyInFromLeft {
  0% {
      opacity: 0;
      transform: translateX(-50%);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Add the animation */
.fly-in-left.show {
  animation: flyInFromLeft 0.5s ease-out forwards;
}

.fly-in-top{
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* Animation keyframes */
@keyframes flyInFromTop {
  0% {
      opacity: 0;
      transform: translateY(-40px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.fly-in-top.show{
  animation: flyInFromTop 0.5s ease-out forwards;
}

.fly-in-bottom{
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}
/* Animation keyframes */
@keyframes flyInFromBottom {
  0% {
      opacity: 0;
      transform: translateY(70px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.fly-in-bottom.show{
  animation: flyInFromBottom 1s ease-out forwards;
}

/* Hidden class to ensure elements are hidden initially */
.hidden {
  visibility: hidden;
}

.hidden.show {
  visibility: visible;
}