.container-fluid {
  margin-top: 0;
}

/* Layout: sidebar left fixed 600px, sections right */
.shs-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

.shs-sidebar {
  flex: 0 0 600px;
  padding: 40px 20px;
  color: #000;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.shs-sections {
  flex: 1;
}

/* Timeline styles */
.shs-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shs-step {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
}

.step-label {
  transition: all 0.3s ease;
  font-size: 29px;
  font-family: "Poppins", sans-serif;
  color: #000;
  line-height: 43px;
  letter-spacing: 0.1px;
}

.shs-description {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #000;
}

.shs-step.current .step-label {
  opacity: 1;
  font-size: 30px;
  font-weight: 600;
  color: #464db0;
  font-family: "Poppins", sans-serif;
  line-height: 43px;
  letter-spacing: 0.1px;
}

/* Default line color */
.shs-step::after {
  content: "";
  position: absolute;
  left: 14px;
  width: 4px;
  height: 60%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #b9c0cb;
}

/* Active (current) step line */
.shs-step.current::after {
  background-color: #464db0;
}

/* Inner container – natural centered */
.shs-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  transform: none;
}

/* Sections */
.shs-section {
  position: relative;
  /* min-height: 550px; */
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shs-image img.shs-img-fixed {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.shs-image img.shs-img-fixed:hover,
.shs-section.active .shs-image img.shs-img-fixed {
  transform: scale(1.05);
}

/* -------------------- Mobile -------------------- */
@media (max-width: 768px) {
  .shs-wrapper {
    flex-direction: column;
  }
  .shs-sidebar {
    display: none !important;
  }

  .shs-sections {
    width: 100%;
  }

  .shs-section {
    min-height: auto;
    padding-bottom: 24px;
  }

  .shs-inner {
    position: relative;
    top: auto;
    transform: none;
  }

  /* Make images natural height on mobile */
  .shs-image img.shs-img-fixed {
    height: auto;
    object-fit: contain;
  }

  /* Mobile title+description above image */
  .shs-mobile-title {
    display: block;
    margin: 12px 0 16px;
  }

  .shs-mobile-title .step-label {
    display: block;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 6px;
  }

  .shs-mobile-title .shs-description {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    margin: 0;
  }
}

/* Hide mobile title on larger screens */
@media (min-width: 769px) {
  .shs-mobile-title {
    display: none;
  }
}


/* -------------------- Responsive -------------------- */

/* Large tablets */
@media (max-width: 1200px) {
  .shs-sidebar {
    flex: 0 0 450px; /* sidebar shrinks */
  }

  .shs-step .step-label {
    font-size: 26px;
    line-height: 38px;
  }

  .shs-step .shs-description {
    font-size: 20px;
    line-height: 30px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .shs-sidebar {
    flex: 0 0 300px;
    padding: 20px 15px;
  }

.shs-step.current .step-label, 
  .shs-step .step-label {
    font-size: 20px;
    line-height: 0px;
  }

  .shs-step .shs-description {
    font-size: 18px;
    line-height: 28px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .shs-wrapper {
    flex-direction: column; /* stack sidebar + sections */
  }

  .shs-sidebar {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative; /* remove sticky */
    top: auto;
    height: auto;
    padding: 15px 10px;
  }

  .shs-sections {
    width: 100%;
  }

  .shs-section {
    min-height: auto;
    padding-bottom: 20px;
  }

  /* Sidebar text resize */
  .shs-step .step-label {
    font-size: 18px;
    line-height: 26px;
  }

  .shs-step .shs-description {
    font-size: 14px;
    line-height: 20px;
  }

  /* Images scale naturally */
  .shs-image img.shs-img-fixed {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Mobile title/description above image */
  .shs-mobile-title .step-label {
    font-size: 18px;
    line-height: 26px;
  }

  .shs-mobile-title .shs-description {
    font-size: 14px;
    line-height: 20px;
  }
}
