    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      color: #161616;
      overflow-x: hidden;
    }

    .careers-section {
      max-width: 1400px;
      margin: 0 auto;
      margin-top: 120px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    .left-content {
      flex: 1 1 500px;
    }

    .left-content h1 {
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.6;
       font-family: 'Be Vietnam Pro', sans-serif;
    }

    .left-content h1 span {
      background-color: #530ac7;
      padding: 5px;
      color: #fff;
      border-radius: 5px;
    }

    .left-content p {
      font-size: 16px;
      line-height: 1.6;
      color: #555;
      margin-bottom: 30px;
      font-family: 'Roboto', sans-serif;
    }

    .team-info {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 30px;
    }

    .team-info img {
      width: 140px;
      border-radius: 10px;
      object-fit: cover;
    }

    .team-text {
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 16px;
    }

    .team-text div {
      display: flex;
      gap: 20px;
    }

    .team-text b {
      color: #444;
      min-width: 60px;
    }

    .cta-btn {
      display: inline-block;
      background: linear-gradient(145deg, #6c028d, #050505);
      color: #fff;
      padding: 14px 32px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .cta-btn:hover {
      background:  #050505;
    }

    .right-image {
      flex: 1 1 400px;
    }

    .right-image img {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
    }

    @media (max-width: 900px) {
      .careers-section {
        flex-direction: column;
        text-align: center;
      }

      .left-content h1 {
        font-size: 36px;
      }

      .team-info {
        flex-direction: column;
      }

      .team-text div {
        flex-direction: column;
        align-items: center;
        gap: 4px;
      }
    }



.why-join-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 10px;
}

.why-join-heading h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #161616;
}

.why-join-heading span {
  color: #530ac7;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.reason-box {
  background: #fff;
  border: 1px solid #cecece;
  border-radius: 10px;
  padding: 20px 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
  min-height: 120px;
}

.reason-box i {
  font-size: 22px;
  color: #6c028d;
  margin-bottom: 12px;
}

.reason-box p {
  font-size: 15px;
  font-weight: 500;
  color: #444;
}

.reason-box:hover {
  border-color: #8e44ec;
  box-shadow: 0 6px 14px rgba(142, 68, 236, 0.1);
  transform: translateY(-4px);
}

.job-opening{
  margin: 100px auto;
  max-width: 1000px;
  width: 98%;
}
.job-opening h2{
  font-size: 28px;
  text-align: center;
  color: #161616;
  margin: 100px auto;
}
















/* --------No Job-------------------------- */

.no-jb-box {
    display: flex;
    max-width: 800px;
    width: 95%;
    height: 100%;
    max-height: 200px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    align-items: center;
    margin: 100px auto;
    gap: 20px;
  }

  .no-jb-left {
    flex: 1 1 75%;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    padding: 20px;
  }

  .no-jb-heading i{
    font-size: 16px;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    background: #530ac7;
    margin-right: 12px;
  }

  .no-jb-heading {
    font-size: 24px;
    font-weight: 600;
    color: #333;
  }

  .no-jb-right {
    flex: 1 1 25%;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
  }

  .no-jb-image {
    max-height: 100%;
    width: 100%;
    object-fit: cover;
  }

  @media (max-width: 768px) {
    .no-jb-box {
      /* flex-direction: column; */
      /* align-items: flex-start; */
      max-height: none;
    }

    .no-jb-right {
      justify-content: center;
      width: 100%;
      margin-top: 20px;
    }

    /* .no-jb-image {
    width: 100%;
      height: 100%;
    } */
  }