body {
  background-image: linear-gradient(
    180deg,
    var(--bs-secondary-bg),
    var(--bs-body-bg) 100px,
    var(--bs-body-bg)
  );
}

#cta-btn {
  letter-spacing: 0.5px;
}

.color-theme {
  color: #fd0d7d;
}


.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 200;
  letter-spacing: 1px;
}


.navbar-nav .nav-item .nav-link.active {
  color: #fd0d7d;
}

.btn {
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.5px;
}

.step-circle {
  width: 60px;
  height: 60px;
  background-color: #fd0d7d; /* Your brand color */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  z-index: 10; /* Ensures circle sits ON TOP of the line */
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 0 5px #212529; /* Creates a "gap" between line and circle matching dark bg */
}

/* Desktop Only: The Connecting Line */
@media (min-width: 768px) {
  .step-wrapper {
    position: relative;
  }

  .step-wrapper::after {
    content: "";
    position: absolute;
    top: 30px; /* Half of circle height (60px) */
    left: 50%; /* Start at center of current item */
    width: 100%; /* Stretch to center of next item */
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2); /* Faint white line */
    z-index: 1; /* Sits BEHIND the circle */
  }

  /* Remove line from the last item */
  .last-step .step-wrapper::after {
    display: none;
  }
}

