/* section-4 */
.section-4-wrapper {
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
  }
  
  .section-4-container {
    width: 100vw;
    padding: 6rem 1.5rem 3rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    background-image: url("/files/images/career/gradient.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
  }
  
  .section-4-heading {
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1rem;
    font-family: "Syne", sans-serif;
    color: #090808;
    margin-top: 8rem;
  }
  
  .section-4-subtext {
    color: #3A3A3A;
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 5rem;
    font-family: "Syne", sans-serif;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  /* Timeline */
  .timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
     /* padding: 0 1rem; */
  }
  
  .timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 3px;
    background-color: rgb(226, 222, 222);
  }
  
  .timeline-step {
    position: relative;
    display: flex;
    align-items: start;
    margin-bottom: 4rem;
  }
  
  .timeline-step.left .step-content {
    margin-left: 55%;
    text-align: left;
    /* margin-top: -1.5rem; */
  }
  
  .timeline-step.right .step-content {
    margin-right: 55%;
    text-align: right;
    margin-top: -1.5rem;
    margin-left: 9rem;
  }
  
  .step-number.first-step {
    background-color: #fff;
    border: 2px solid #07124D;
    color: #07124D;
    font-family: "roboto", sans-serif;
    font-weight: 600;  
}
  
  .step-number {
    position: absolute;
    left: 50%;
    top: -0.5rem;
    transform: translateX(-50%);
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 9999px;
    background-color: white;
    color: #000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-family: "roboto", sans-serif;
  }
  
  .step-final {
    position: absolute;
    left: 50%;
    top: 0rem;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-color: white;
    color: #07124D;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
  }
  
  .step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #07124D;
    margin-bottom: 0.5rem;
    font-family: "Syne", sans-serif;
  }
  
  .step-desc {
    color: #53648B;
    font-size: 0.8rem;
    /* max-width: 85%; */
    line-height: 1.5;
    font-family: "poppins", sans-serif;
  }
  .step-title-final{
    margin-top: 2rem;
    margin-left: 8rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #07124D;
  }


 /* Mobile Responsive Styles */
/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .timeline-line {
    left: 1.2rem;
    transform: none;
  }

  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    margin-left: 0;
    padding-left: 3rem;
    margin-bottom: 3rem;
  }

  .timeline-step.left .step-content,
  .timeline-step.right .step-content {
    margin: 0;
    text-align: left;
    margin-left: 1rem;
    max-width: calc(100% - 4rem);
  }

  .step-number {
    left: -0.8rem;
    transform: none;
    top: 0.2rem;
    z-index: 2;
  }

  .step-final {
   left: -0.8rem;
    transform: none;
    z-index: 2;
  }

  .step-title-final {
    margin: 0;
  }

  .timeline-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
