﻿.stats-sec{
  background:linear-gradient(135deg, #2f5d50, #1e3f36);
  padding:35px 0;
}

.stats-wrap{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* ITEM */
.stat-item{
  text-align:center;
  flex:1;
  position:relative;
}

/* DIVIDER */
.stat-item:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:45px;
  background:rgba(255,255,255,0.15);
}

/* ICON */
.icon svg{
  width:32px;
  height:32px;
  stroke:#c9a74d;
  fill:none;
  stroke-width:1.5;
  margin-bottom:10px;
}

/* NUMBER */
.stat-item h3{
  font-size:26px;
  color:#c9a74d;
  font-weight:600;
  margin-bottom:4px;
}

/* TEXT */
.stat-item p{
  font-size:13px;
  color:#e6e6e6;
}

@media(max-width:768px){

  .stats-wrap{
    display:grid;
    grid-template-columns:1fr 1fr; /* ✅ 2 columns */
    gap:18px;
    padding:0 15px;
  }

  .stat-item{
    background:rgba(255,255,255,0.05); /* subtle card */
    padding:18px 10px;
    border-radius:10px;
    text-align:left;

    display:flex;
    align-items:center;
    gap:12px;
  }

  /* REMOVE divider lines */
  .stat-item::after{
    display:none;
  }

  /* ICON */
  .icon svg{
    width:26px;
    height:26px;
    flex-shrink:0;
  }

  /* TEXT ALIGNMENT */
  .stat-item h3{
    font-size:18px;
    margin:0;
  }

  .stat-item p{
    font-size:12px;
    margin:0;
  }

}