/*Counter Custom Requirements Section */
.custom-requirements-section {
    padding: 50px 20px;
    background-color: #fff; 
    text-align: center;
  }
  
  .custom-requirements-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .custom-requirements-section h2 span {
    color: red;
  }
  
  .custom-requirements-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
  }
  
  /* Statistics Section */
  .statistics {
    display: flex;
    justify-content: center;
    gap: 40px;
    background-color: rgb(7, 7, 7);
    background: var(--primary-gradient); 
    padding: 30px 20px;
    flex-wrap: wrap;
  
  }
  
  .stat-item {
    text-align: center;
    color: white;
    
    animation: fadein 1s ease-in-out;  
    animation-timeline: view();
    animation-range: entry 0% cover 30% ;    
  }
  
  .stat-item i {
    font-size: 50px;
    margin-bottom: 10px;
    display: block;
    
    animation: fadein 1s ease-in-out;  
    animation-timeline: view();
    animation-range: entry 0% cover 30% ;   
  }
  
  @keyframes fadein {
    from{  
        opacity: 0;  
    }
    50%{
      opacity: 0.5;
    }
    to{
        opacity: 1; 
    }
  }
  .stat-item h3 {
    font-size: 40px;
    margin: 10px 0;
    font-weight: bold;
  }
  
  .stat-item p {
    font-size: 14px;
    color: white; 
    text-transform: uppercase;
  }
  