.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }

  .stat-box {
    background:  rgba(62, 132, 109, 0.573);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    
  }

  .stat-box:hover {
    transform: translateY(-5px);
  }

  .stat-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
  }

  .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: white;
  }

  .stat-label {
    font-size: 16px;
    margin: 6px 0;
    color: black;
  }

  .stat-desc {
    font-size: 14px;
    color: black;
  }

  @media (max-width: 600px) {
    .stat-number {
      font-size: 22px;
    }

    .stat-desc {
      font-size: 13px;
    }
  }