@import url('satoshi.css');
@import url('styles.css');
/* === Style For Desktop=== */

/* === Start Style for Employee Benefit section=== */
 .employee-benefit-section {
    width: 100%;
    background-color: var(--black_solid);
    padding: 56.33px 72px 89px 72px;
    display: flex;
    flex-direction: row;
    gap: auto;
    justify-content: space-between;
}

 .employee-benefit-text {
    width: 596px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

 .employee-benefit-text-header {
    height: auto;
    font-size: var(--text-54);
    font-family: 'Satoshi-Regular';
    color: var(--white_100);
    line-height: 130%;
}
 .employee-benefit-text-header span { color:  var(--yellow_500); }
 .employee-benefit-text-desc {
    font-size: var(--text-18);
    font-family: 'Satoshi-Regular';
    color: var(--white_100);
    line-height: 27px;
}

 .employee-benefit-image {
    width: 636px;
    height: 504px;
    border-radius: 40px;
    border: 12px solid #1D2B2F;
    overflow: hidden;
    flex-shrink: 0;
}
 .employee-benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === Start Style for Emp Benefit section=== */
.emp-bnft-section {
    width: 100%;
    background-color: var(--white_700);
    padding: 64px 72px 64px 72px;
  }

  .emp-bnft-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    row-gap: 32px;
    /* display: grid;
    grid-template-columns: repeat(2, 1fr); */

  }

  .emp-bnft-card {
    width: 633px;
    background-color: transparent;
    border: 1px solid var(--gray_900);
    border-radius: 16px;
    padding: 16px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .emp-bnft-card-image {
    width: 200px;
    height: 200px;
 }
  .emp-bnft-card img {
    width: 100%;
    height: 100%;
  }

  .emp-bnft-textt {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .emp-bnft-title {
    font-size: var(--text-24);
    font-family: 'Satoshi-Bold';
    color: var(--black_300);
    line-height: 36px;
  }

  .emp-bnft-para {
    font-size: var(--text-14);
    font-family: 'Satoshi-Regular';
    color: var(--gray_1100);
    line-height: 21px;
  }
  .emp-bnft-para span {
    font-family: 'Satoshi-Bold';
    color: var(--black_1000);
  }

  .emp-bnft-contact-card {
    width: 633px;
    background-color: #131A21;
    border-radius: 22px;
    border-radius: 16px;
    padding: 49.5px 46px 49.5px 38px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0px;
  }
  .emp-bnft-contact-card img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    align-self: center;
  }
  .emp-bnft-contact-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 30px;
  }

  .contact-header {
    text-align: left;
    font-size: var(--text-54);
    font-family: 'Satoshi-Bold';
    color: var(--white_700);
    line-height: 81px;
  }
  .contact-desc {
    margin-top: -22px;
    text-align: left;
    font-size: var(--text-24);
    font-family: 'Satoshi-Regular';
    color: var(--white_700);
    line-height: 36px;
  }

  .contact-info {
    display: flex;
    align-items: center;
    font-size: var(--text-24);
    font-family: 'Satoshi-Regular';
    color: var(--white_700);
    line-height: 36px;
  }
  .contact-info .icon {
    width: 24px;
    height: 24px;
    margin-right: 23px;
    object-fit: contain;
}


/* === Responsive Styles for Tablet Screen (744px to 1024px) === */
@media (min-width: 744px) and (max-width: 1024px) {
    .employee-benefit-section {
        padding: 32px 40px 32px 40px;
        flex-direction: column;
        gap: 24px;
        justify-content: space-between;
    }
    
     .employee-benefit-text  { width: 100%; }
     .employee-benefit-image { width: 100%; }
    
    
    .emp-bnft-section {
        width: 100%;
        padding: 32px 54px 32px 54px;
    }
    
      .emp-bnft-grid {
        width: 100%;
        display: flex;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 32px;
    }
    
      .emp-bnft-card { width: 100%; }
      .emp-bnft-card-image {
        width: 150px;
        height: 150px;
    }
      .emp-bnft-contact-card { width: 100%; }  
}

/* === Responsive Styles for Tablet Screen (320px to 744px) === */
@media (min-width: 320px) and (max-width: 744px) {
    .employee-benefit-section {
        padding: 32px 20px 32px 20px;
        flex-direction: column;
        gap: 24px;
        justify-content: space-between;
    }
    
    .employee-benefit-text { width: 100%; }
    
    .employee-benefit-text-header {
        font-size: var(--text-32);
        line-height: 48px;
    }
    .employee-benefit-text-desc {
        font-size: var(--text-14);
        line-height: 21px; }
    
    .employee-benefit-image { width: 100%; }

    .emp-bnft-section {
        width: 100%;
        padding: 32px 20px 32px 20px; 
    }
    .emp-bnft-grid {
        width: 100%;
        display: flex;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
    
    .emp-bnft-card { width: 100%; }
    .emp-bnft-card-image { width: 100px; height: 100px; }
    
    .emp-bnft-contact-card {
        width: 100%;
        padding: 38px 20px 38px 20px;
        text-align: left;
        flex-direction: column;
        align-items: flex-start;
        gap: 0px;
    }
    .emp-bnft-contact-card .highlight-icon {
        margin-left: -11px;
        margin-top: -17px;
        width: 24px;
        height: 24px;
        object-fit: cover;
        align-self: flex-start;
    }
    .emp-bnft-contact-content {
        margin-top: -7px;
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 30px;
    }
    .contact-header {
        font-size: var(--text-32);
        line-height: 48px;
    }
    .contact-desc {
        margin-top: -22px;
        font-size: var(--text-18);    
        line-height: 27px;
    }
    .contact-info {
        font-size: var(--text-18);
        line-height: 27px;
    }  
}





