/* Horizontal Steps Component */
.horizontal-steps {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  counter-reset: step;
}

.horizontal-steps li {
  flex: 1;
  position: relative;
  text-align: center;
  padding: 0 20px;
}

.horizontal-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
  z-index: 1;
}

.horizontal-steps li .step-circle {
  width: 60px;
  height: 60px;
  background: #0bc1df;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-weight: bold;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.horizontal-steps li.completed .step-circle {
  background: #28a745;
}

.horizontal-steps li .step-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.horizontal-steps li .step-text {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}
  height: 100%;
  object-fit: cover;
}

.horizontal-steps li .step-text {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.exp-img-cover {
  height: 400px;
  object-fit: cover;
  background-color: #eee;
}

@media (max-width: 767px) {
  .exp-img-cover {
    height: 250px;
  }
}
