.stats_strip {
    background: #000;
    padding: 30px 50px;
}

.stats_strip .stats_wrapper {
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.stats_strip .stat_item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
  height: 100%;
  min-height: 180px;
  padding: 25px 20px;
  background: #0b0b0b;
  transition: all 0.3s ease;
}

.stats_strip .stat_item:hover {
  background: rgba(255, 196, 0, 0.05);
}

.stats_strip .stat_item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.12);
}

.stats_strip .row > div:last-child .stat_item::after {
  display: none;
}

.stats_strip .icon_box {
  font-size: 40px;
  color: #d6a128;
  line-height: 1;
  transition: 0.3s;
}

.stats_strip .stat_item:hover .icon_box {
  color: #f5c542;
  transform: scale(1.08);
}

.stats_strip .content h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.stats_strip .content p {
  color: #c8c8c8;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ===========================
   Tablet (2 Cards Per Row)
=========================== */
.stat_item{
  opacity:0;
  animation:fadeUp .8s ease forwards;
}

.stat_item:nth-child(1){animation-delay:.1s;}
.stat_item:nth-child(2){animation-delay:.2s;}
.stat_item:nth-child(3){animation-delay:.3s;}
.stat_item:nth-child(4){animation-delay:.4s;}
.stat_item:nth-child(5){animation-delay:.5s;}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (max-width: 991px) {

  .stats_strip .stat_item {
    min-height: 170px;
    padding: 20px 15px;
  }

  .stats_strip .icon_box {
    font-size: 34px;
  }

  .stats_strip .content h5 {
    font-size: 15px;
  }

  .stats_strip .content p {
    font-size: 14px;
  }

  /* Remove all vertical dividers */
  .stats_strip .stat_item::after {
    display: none;
  }

  /* Right border for left cards */
  .stats_strip .row > div:nth-child(odd) .stat_item {
    border-right: 1px solid rgba(255,255,255,.08);
  }

  /* Bottom border except last row */
  .stats_strip .row > div:not(:nth-last-child(-n+1)) .stat_item {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
}

/* ===========================
   Mobile
=========================== */

@media (max-width: 575.98px) {

  .stats_strip {
    padding: 20px 0;
  }

  .stats_strip .stat_item {
    min-height: 150px;
    padding: 18px 12px;
  }

  .stats_strip .icon_box {
    font-size: 28px;
  }

  .stats_strip .content h5 {
    font-size: 13px;
  }

  .stats_strip .content p {
    font-size: 12px;
    line-height: 1.5;
  }
}