@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    background-color: #000000;
    color: #ffffff;
  }

  h1 {
    text-transform: uppercase;
  }

  .span1 {
    font-weight: 400;
  }

  main {
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: #000000;
    margin: 0 auto;
    width: 100%;
    padding-top: 0px;

  }

  /* Careers Hero Section */
  .careers-hero {
    width: 100%;
    background-color: #000000;
    padding: 100px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(auto - 88px);
  }

  .careers-hero__container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-start;
  }

  .careers-hero__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;
  }

  .careers-hero__eyebrow {
    font-size: 14px;
  font-weight: 400;
  color: #b3b3b3;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .careers-hero__eyebrow.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .careers-hero__title {
    font-size: clamp(26px, 3vw, 50px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .careers-hero__title.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .careers-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 30px;
    background-color: #000000;
    border: 1px solid #ffffff;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, color 0.3s ease, opacity 0.6s ease, transform 0.6s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
  }

  .careers-hero__button.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .careers-hero__button:hover {
    background-color: #ffffff;
    color: #000000;
  }

  .careers-hero__image-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .careers-hero__image-wrapper.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .careers-hero__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 5px;
  }

  /* Tablet Responsive Styles */
  @media screen and (max-width: 1024px) and (min-width: 768px) {
    .careers-hero {
      padding: 80px 35px;
      min-height: auto;
    }

    .careers-hero__container {
      gap: 50px;
    }

    .careers-hero__content {
      gap: 25px;
    }

    .careers-hero__eyebrow {
      font-size: 15px;
    }

    .careers-hero__title {
      font-size: clamp(32px, 6vw, 56px);
    }

    .careers-hero__button {
      padding: 13px 30px;
      font-size: 15px;
    }

    .careers-hero__image-wrapper {
      flex: 1;
      width: 100%;
    }
  }

  /* Mobile Responsive Styles */
  @media screen and (max-width: 767px) {
    .careers-hero {
      padding: 60px 25px;
      min-height: auto;
      margin-top: 50px;
    }

    .careers-hero__container {
      gap: 40px;
    }

    .careers-hero__content {
      gap: 20px;
    }

    .careers-hero__eyebrow {
      font-size: 14px;
    }

    .careers-hero__title {
      font-size: clamp(28px, 7vw, 48px);
    }

    .careers-hero__button {
      padding: 12px 28px;
      font-size: 14px;
      width: 100%;
      max-width: 300px;
    }
  }

  /* Small Mobile Devices */
  @media screen and (max-width: 480px) {
    .careers-hero {
      padding: 50px 25px;
    }

    .careers-hero__container {
      gap: 40px;
    }

    .careers-hero__content {
      gap: 1px;
    }

    .careers-hero__eyebrow {
      font-size: 14px;
    }

    .careers-hero__title {
      font-size: clamp(24px, 6vw, 40px);
    }

    .careers-hero__button {
      padding: 11px 24px;
      font-size: 13px;
      max-width: 100%;
    }
  }

  /* Who We Are Section */
  .who-we-are {
    width: 100%;
    background-color: #000000;
    padding: 50px 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .who-we-are__container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 80px;
    align-items: stretch;
  }

  .who-we-are__left {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
  }

  .who-we-are__heading {
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .who-we-are__heading.is-visible {
    opacity: 1;
    transform: translateX(0);
  }

  .who-we-are__logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
  }

  .who-we-are__logo-wrapper {
    width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .who-we-are__logo-wrapper.is-visible {
    opacity: 1;
    transform: scale(1);
  }

  .who-we-are__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .who-we-are__logo-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .who-we-are__right {
    flex: 0 0 60%;
    display: flex;
    padding-right: 70px;
    flex-direction: column;
    gap: 30px;
  }

  .who-we-are__title {
    font-size: clamp(32px, 4vw, 25px);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .who-we-are__title.is-visible {
    opacity: 1;
    transform: translateX(0);
  }

  .who-we-are__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
  }

  .who-we-are__paragraph {
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.8;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .who-we-are__paragraph.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .who-we-are__read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.6s ease;
    width: fit-content;
    margin-top: auto;
    opacity: 0;
    transform: translateY(20px);
  }

  .who-we-are__read-more.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .who-we-are__read-more:hover {
    opacity: 0.7;
  }

  .who-we-are__read-more i {
    font-size: 14px;
  }

  /* Tablet Responsive Styles for Who We Are */
  @media screen and (max-width: 1024px) and (min-width: 768px) {
    .who-we-are {
      padding: 0px 35px;
    }

    .who-we-are__container {
      flex-direction: column;
      gap: 60px;
    }

    .who-we-are__left {
      flex: 1;
      width: 100%;
      gap: 40px;
    }

    .who-we-are__heading {
      font-size: clamp(28px, 5vw, 42px);
    }

    .who-we-are__logo-section {
      justify-content: center;
    }

    .who-we-are__logo-wrapper {
      width: 300px;
    }

    .who-we-are__right {
      flex: 1;
      width: 100%;
      gap: 25px;
    }

    .who-we-are__title {
      font-size: clamp(28px, 5vw, 42px);
    }

    .who-we-are__paragraph {
      font-size: 14px;
      line-height: 1.75;
    }

    .who-we-are__content {
      gap: 20px;
    }
  }

  /* Mobile Responsive Styles for Who We Are */
  @media screen and (max-width: 767px) {
    .who-we-are {
      padding: 60px 25px;
    }

    .who-we-are__container {
      flex-direction: column;
      gap: 50px;
    }

    .who-we-are__left {
      flex: 1;
      width: 100%;
      gap: 35px;
    }

    .who-we-are__heading {
      font-size: clamp(24px, 6vw, 36px);
    }

    .who-we-are__logo-section {
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .who-we-are__logo-wrapper {
      width: 90px;
      height: 90px;
    }

    .who-we-are__logo-text {
      align-items: center;
      text-align: center;
    }

    .who-we-are__chinese-text {
      font-size: 28px;
    }

    .who-we-are__group-text {
      font-size: 15px;
    }

    .who-we-are__right {
      flex: 1;
      width: 100%;
      gap: 20px;
    }

    .who-we-are__title {
      font-size: clamp(24px, 6vw, 36px);
    }

    .who-we-are__paragraph {
      font-size: 14px;
      line-height: 1.7;
    }

    .who-we-are__content {
      gap: 18px;
    }

    .who-we-are__read-more {
      font-size: 18px;
    }
  }

  /* Small Mobile Devices for Who We Are */
  @media screen and (max-width: 480px) {
    .who-we-are {
      padding: 0px 25px 50px;
    }

    .who-we-are__container {
      gap: 40px;
    }

    .who-we-are__left {
      gap: 30px;
    }

    .who-we-are__heading {
      font-size: clamp(25.8px, 5vw, 32px);
      text-align: center;
    }

    .who-we-are__logo-wrapper {
      width: 250px;
    }

    .who-we-are__chinese-text {
      font-size: 24px;
    }

    .who-we-are__group-text {
      font-size: 14px;
    }

    .who-we-are__right {
      gap: 18px;
    }

    .who-we-are__title {
      font-size: clamp(24px, 5vw, 32px);
      
    }

    .who-we-are__paragraph {
      font-size: 14px;
      line-height: 1.65;
    }

    .who-we-are__content {
      gap: 16px;
    }

    .who-we-are__read-more {
      font-size: 18px;
    }
  }

  /* Redefine Statement Section */
  .redefine-statement {
    width: 100%;
    background-color: #131313;
    padding: 50px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40vh;
  }

  .redefine-statement__container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .redefine-statement__text {
    font-size: clamp(40px, 6vw, 50px);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .redefine-statement__line1 {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .redefine-statement__line1.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .redefine-statement__line2 {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .redefine-statement__line2.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Tablet Responsive Styles for Redefine Statement */
  @media screen and (max-width: 1024px) and (min-width: 768px) {
    .redefine-statement {
      padding: 100px 35px;
      min-height: 40vh;
    }

    .redefine-statement__text {
      font-size: clamp(36px, 7vw, 64px);
      letter-spacing: 1.5px;
      gap: 8px;
    }
  }

  /* Mobile Responsive Styles for Redefine Statement */
  @media screen and (max-width: 767px) {
    .redefine-statement {
      padding: 30px 25px;
      min-height: 30vh;
    }

    .redefine-statement__text {
      font-size: clamp(28px, 8vw, 48px);
      letter-spacing: 1px;
      gap: 6px;
      line-height: 1.2;
    }
    .who-we-are__logo-wrapper {
        width: 350px;
      }
  }

  /* Small Mobile Devices for Redefine Statement */
  @media screen and (max-width: 480px) {
    .redefine-statement {
      padding: 0px 20px;
      min-height: 25vh;
    }

    .redefine-statement__text {
      font-size: clamp(24px, 7vw, 40px);
      letter-spacing: 0.5px;
      gap: 5px;
    }
  }

  /* Open Positions Section */
  .open-positions {
    width: 100%;
    background-color: #000000;
    padding: 80px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .open-positions__container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .open-positions__title {
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .open-positions__title.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .open-positions__count {
    font-weight: 400;
    font-size: 20px;
    color: rgba(0, 255, 85, 0.85);
    margin-left: 0.25em;
  }

  .open-positions__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }

  .open-positions__filter-btn {
    padding: 10px 20px;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .open-positions__filter-btn:hover,
  .open-positions__filter-btn.is-active {
    background-color: #ffffff;
    color: #000000;
  }

  .open-positions__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .job-item {
    background-color: #000000;
    border-radius: 5px;
    padding: 30px;
    display: flex;
    border: 1px solid #ffffff;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
  }

  .job-item.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .job-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  }

  .job-item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .job-item__company {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
  }

  .job-item__title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
  }

  .job-item__location {
    font-size: 14px;
    font-weight: 300;
    color: #cccccc;
    margin: 0;
  }

  .job-item__button {
    padding: 12px 30px;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
  }

  .job-item__button:hover {
    background-color: #ffffff;
    color: #000000;
  }

  /* Tablet Responsive Styles for Open Positions */
  @media screen and (max-width: 1024px) and (min-width: 768px) {
    .open-positions {
      padding: 60px 35px;
    }

    .open-positions__container {
      gap: 40px;
    }

    .open-positions__filters {
      flex-wrap: nowrap;
      justify-content: flex-start;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 8px;
      margin: 0 -35px;
      padding-left: 35px;
      padding-right: 35px;
    }

    .open-positions__filter-btn {
      flex-shrink: 0;
    }

    .job-item {
      padding: 25px;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    .job-item__button {
      width: 100%;
      text-align: center;
    }
  }

  /* Mobile Responsive Styles for Open Positions */
  @media screen and (max-width: 767px) {
    .open-positions {
      padding: 50px 25px;
    }

    .open-positions__container {
      gap: 30px;
    }

    .open-positions__filters {
      flex-wrap: nowrap;
      justify-content: flex-start;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      gap: 8px;
      padding-bottom: 8px;
      margin: 0 -25px;
      padding-left: 25px;
      padding-right: 25px;
    }

    .open-positions__filter-btn {
      flex-shrink: 0;
      padding: 8px 14px;
      font-size: 12px;
    }

    .open-positions__title {
      font-size: clamp(24px, 6vw, 36px);
    }

    .job-item {
      padding: 20px;
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
    }

    .job-item__company {
      font-size: 12px;
    }

    .job-item__title {
      font-size: 20px;
    }

    .job-item__location {
      font-size: 14px;
    }

    .job-item__button {
      width: 100%;
      padding: 10px 25px;
      font-size: 14px;
    }
  }

  /* Small Mobile Devices for Open Positions */
  @media screen and (max-width: 480px) {
    .open-positions {
      padding: 40px 20px;
    }

    .open-positions__container {
      gap: 25px;
    }

    .open-positions__filters {
      margin: 0 -20px;
      padding-left: 20px;
      padding-right: 20px;
    }

    .job-item {
      padding: 18px;
    }

    .job-item__company {
      font-size: 11px;
    }

    .job-item__title {
      font-size: 18px;
    }
  }