
  /* old stat-section style */
  /* .stats-section {
    width: 100%;
    padding: 160px 80px 80px;
    background-color: #000000;
  } */

  .stats-section {
    width: 100%;
    padding: 40px 80px;
    background-color: #000000;
  }
  
  .intro-text {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
  }
  
  .stats-container {
    display: flex;
    justify-content: space-between;
    gap: 120px;
  }
  
  .stat-item {
    display: flex;
    align-items: flex-end;
    gap: 40px;
  }
  
  .vertical-line {
    width: 2px;
    height: 434px;
    background-color: #ebff03;
  }
  
  .stat-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  
  .stat-number {
    font-size: 120px;
    font-weight: 700;
    line-height: 100px;
    color: transparent;
    -webkit-text-stroke: 2px #ebff03;
    margin: 0;
  }
  
  .stat-label {
    color: #ebff03;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
  }
  
  /* Responsive styles */
  @media (max-width: 991px) {
    .stats-section {
      padding-left: 40px;
      padding-right: 40px;
    }
  
    .intro-text {
      font-size: 32px;
    }
  
    .stats-container {
      gap: 60px;
    }
  
    .vertical-line {
      height: 300px;
    }
  
    .stat-number {
      font-size: 65px;
      line-height: 60px;
    }
  
    .stat-label {
      font-size: 20px;
    }
  }
  
  @media (max-width: 640px) {
    .stats-section {
      padding: 20px !important;
    }
  
    .intro-text {
      font-size: 24px !important;
    }
  
    .stats-container {
      flex-direction: column;
      gap: 40px;
    }
  
    .stat-item {
      gap: 20px;
    }
  
    .stat-content {
      gap: 16px;
    }
  
    .stat-number {
      font-size: 60px;
      line-height: 48px;
    }
  
    .stat-label {
      font-size: 16px;
    }

    .stat-item {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .vertical-line {
      width: 100px; /* adjust as needed */
      height: 2px;
      transform: rotate(0deg); /* make sure it's not rotated */
    }

    .section-header {
      flex-direction: column;
      gap: 0px !important;
      margin-bottom: 20px !important;
    }
    
  }
  