html,body{
        background-color: #010315;
    }
    
    
    .portfolio-section {
      text-align: center;
      padding: 0px 20px;
      background-image: url("../images/common-bg/partners-bg.png");
      background-repeat: no-repeat;
      background-position: top;
      background-size: cover;
    }

    .portfolio-section h4 {
    color: #9A9A9A;
            font-weight: 600;
            text-align: left;
            margin-bottom: 30px;
    }

    .logos {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 50px;
    }

    .logos img {
      height: 50px;
      object-fit: contain;
      background-color: #fff;
      border-radius: 8px;
    }

    /* Flexbox container */
.stats{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

/* Each stat box */
.stat-box {
  flex: 1;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 105, 254, 0.10) 0%, rgba(77, 58, 212, 0.10) 100%);
  padding:16px 20px;
  border-radius: 10px;

}


/* Numbers */
.stat-box h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 10px;
  color: #fff;
}

/* Labels */
.stat-box p {
  font-size: 1.2rem;
  color: #ccc;
}


@media screen and (max-width: 768px) {

    .portfolio-section{
      
            .logos {
      gap: 20px;
    }
    }

      .stat-box {
    padding: 8px 4px;
    height: 86px;
    h2{
      font-size: 20px;
    }
    p {
    font-size: 10px;
    line-height: 1.4;
}
}
}
