/* ServiceHiring Section - Final Horizontal Design */
.service-hiring {
  padding: 50px 0 !important;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.hiring-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hiring-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hiring-title span {
  color: #54b248;
}

.hiring-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: #ffffff;
  max-width: 950px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  font-weight: 500;
}

.hiring-btn {
  background-color: #eaf6e5;
  color: #54b248;
  padding: 18px 45px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
}

.hiring-btn:hover {
  background-color: #54b248;
  color: #ffffff;
}

/* Horizontal Line Design */
.hiring-timeline-container {
  margin-top: 50px !important;
  /* Reduced from 100px */
  position: relative;
  width: 100%;
}

.hiring-timeline-wrapper {
  display: flex;
  justify-content: space-around;
  position: relative;
  width: 100%;
  padding: 0 80px;
}

/* Base White Line */
.hiring-timeline-line-base {
  position: absolute;
  top: 98px;
  /* New center based on 25px label + 60/2 + extra margin */
  left: 40px;
  right: 195px;
  height: 2px;
  background-color: white;
  z-index: 1;
}

/* Active Green Progress Line */
.hiring-timeline-line-active {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  /* Progress goes through first icon */
  background-color: #54b248;
  z-index: 2;
  box-shadow: 0 0 10px rgba(84, 178, 72, 0.4);
}

.hiring-step {
  flex: 1;
  position: relative;
  z-index: 3;
  /* Above lines */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-label {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.step-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: #54b248;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 0px solid #000;
}

.step-icon-wrapper img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.step-info {
  text-align: center;
  max-width: 400px;
}

.step-title {
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 500;
}

/* Mockup Nav Arrows at edges */
.timeline-nav-icon {
  position: absolute;
  top: 98px;
  transform: translateY(-50%);
  color: #ffffff;
  z-index: 4;
}

.nav-left {
  left: 0;
}

.nav-right {
  right: 0;
}

@media (max-width: 1200px) {
  .hiring-content {
    max-width: 1000px;
    padding: 0 30px;
  }
}

@media (max-width: 991px) {
  .hiring-timeline-line-base {
    display: none;
  }

  .hiring-timeline-wrapper {
    flex-direction: column;
    gap: 10px !important;
    /* Reduced from 80px */
    align-items: center;
    padding: 0;
  }

  .timeline-nav-icon {
    display: none;
  }

  .step-info {
    max-width: 100% !important;
  }
}

@media (max-width: 600px) {
  .hiring-content {
    padding: 0 20px;
  }

  .hiring-title {
    font-size: 28px !important;
  }

  .hiring-subtitle {
    font-size: 16px;
  }

  .hiring-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 30px;
  }

  .step-title {
    font-size: 20px;
  }

  .step-desc {
    font-size: 14px;
    max-width: 100%;
  }
}