.service-container
{
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 20px;
  background: #fff;
  justify-items: center;
}
.service-container .col
{
  background: #f9fafc;
  border: 1px solid #e0e4eb;
  border-radius: 10px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
}
.proven-result-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.proven-result-container .col-md-3 {
  background: #f7faff;
  border-radius: 10px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 240px;

}

.proven-result-container .col-md-3 p {
  font-size: 16px;
}
.industry-container>div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.industry-box {
  background: #f9fafc;
  border: 1px solid #e0e4eb;
  border-radius: 12px;
  padding: 35px 20px;
  text-align: center;
  width: 100%;
  max-width: 260px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.industry-box:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.industry-box .icon {
  font-size: 38px;
  color: #1d4ed8;
  margin-bottom: 15px;
}

.industry-box p {
  font-size: 15px;
  color: #333;
  margin: 0;
  line-height: 1.4;
}
.steps-container>div {
  display: flex;
  justify-content: center;
  gap: 0px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.step-box {
  text-align: center;
  width: 150px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #2ca4de;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
@media (min-width: 992px) {
  .service-container .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 30.333333%;
    max-width: 33.333333%;
  }
}
@media (max-width: 425px) {
  .service-container img,
    .proven-result-container img,
    .industry-container img {
    height: auto;
    margin-left: 0px;
  }

    img.meta-img {
    margin-left: 0px;
        height: auto;
  }
        .proven-result-container .col-md-3,
        .service-container .col {
          margin-bottom: 30px;
        }
}