/* Add this to your styles.css or in a style tag */
html {
  scroll-padding-top: 80px; /* Adjust based on your navbar height */
  scroll-behavior: smooth;
}

/* Adjust the journey section positioning */
#journey {
  scroll-margin-top: 80px;
}

/* Base Styles */
.step {
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.step.hidden {
  opacity: 0;
  transform: translateX(100%);
  position: absolute;
  pointer-events: none;
}
.choice-btn {
  transition: all 0.3s ease;
}
.choice-btn:hover {
  transform: scale(1.05);
}
.info-tooltip {
  position: relative;
  display: inline-block;
}
.info-tooltip .tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
}
.info-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
.nav-btn {
  transition: all 0.3s;
}
.required-field:invalid {
  border-color: #e21e26;
}

/* Carousel Styles */
.carousel-slide {
  transition: opacity 1s ease-in-out;
}
#carousel-indicators button {
  transition: background-color 0.3s ease;
  cursor: pointer;
}
#carousel-indicators button:hover {
  background-color: rgba(255, 255, 255, 0.75) !important;
}