.icon-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 800px;
    margin: auto;
}

.icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px;
    width: 45%;
}

.icon-circle {
    background-color: #0D6EFD;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    font-size: 20px;
    color: #000;
}

.icon-text {
    font-size: 16px;
    font-weight: 500;
}

/* Responsive fix only */
@media (max-width: 991px) {
  .icon-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
  }

  .icon-box {
    flex: 1 1 45%;
    min-width: 140px;
    max-width: 200px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .icon-box {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
}


* {
  scrollbar-width: none; 
  -ms-overflow-style: none;  
}

*::-webkit-scrollbar {
  display: none; 
}

