.stats-section {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      padding: 100px 10%;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.05) 100%);
      gap: 40px;
    }

    .stat-box {
    text-align: center;
    width: 240px;
    padding: 50px 30px;
    border-radius: 20px;
    background: rgb(22 193 51 / 10%);
    border: 1px solid rgb(52 180 74 / 23%);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .stat-box::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(46,143,255,0.15) 0%, transparent 60%);
      transform: rotate(45deg);
      transition: 0.5s;
      opacity: 0;
    }

    .stat-box:hover::before {
      opacity: 1;
      transform: rotate(0deg);
    }

   .stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgb(52 180 74 / 23%);
    border-color: rgb(52 180 74 / 37%);
}
   .stat-icon {
    font-size: 55px;
    background: linear-gradient(135deg, #34b44a, #34b44a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgb(52 180 74);
}

    .stat-number {
      font-size: 36px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
      letter-spacing: 1px;
    }

    .stat-text {
      font-size: 17px;
      color: #b0bdd0;
    }

    @media (max-width: 768px) {
      .stats-section {
        flex-direction: column;
        padding: 60px 5%;
      }

      .stat-box {
        width: 80%;
      }
    }