body {
  font-family: 'Outfit', sans-serif;
  background: #ffffff;
  padding: 50px 20px;
  margin: 0;
}

.counter-sec-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.counter-sec {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.counter-sec-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow:0 8px 20px rgba(0, 0, 0, 0.05), 
            0 -8px 20px rgba(0, 0, 0, 0.05);;
  flex: 1 1 calc(25% - 20px); /* 4 columns with gap */
  max-width: calc(25% - 20px);
  text-align: center;
  transition: 0.3s ease;
}

.counter-sec-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-green { background-color: #d7f5e8; color: #0dbb7c; }
.icon-red { background-color: #fddfe3; color: #f55a5a; }
.icon-blue { background-color: #e4e3f8; color: #5549cc; }
.icon-yellow { background-color: #fff4d9; color: #f4b730; }

.counter-sec-count {
  font-size: 24px;
  font-weight: 700;
  color: #152b5a;
}

.counter-sec-label {
  font-size: 14px;
  color: #152b5a;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .counter-sec-wrapper {
    margin-top: -70px !important; /* 👈 Adjust as needed */
    padding-top: 0px !important;
  }
}

/* Tablet view: 2 columns */
@media (max-width: 992px) {
  .counter-sec-box {
    flex: 1 1 calc(48% - 20px);
    max-width: calc(48% - 20px);

  }
}

/* Mobile view: 1 column */
@media (max-width: 576px) {
  .counter-sec-box {
    flex: 1 1 100%;
    max-width: 100%;
    
  }
}

/* Tablet screen adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin-top: 30px; /* 👈 Move it lower */
  }
}

/* Mobile screen adjustments */
@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
    margin-top: 40px; /* 👈 Even more spacing for smaller screens */
  }
}

