
	
	/* ================================
   AVALON METRICS STRIP (ISOLATED)
================================ */

.av-metrics-strip{
  padding:40px 20px;
    background: #fff url("https://www.avalontec.com/wp-content/uploads/sites/8/2026/images/pcb-line-small-new.jpg") center / cover no-repeat;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


.av-metrics-wrap{
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  text-align: center;
}

/* ITEM */
.av-metric{
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ICON CIRCLE */
.av-metric-icon{
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #1a7dc5; /* matches image blue */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.av-metric-icon img{
  width: 90px;
  height: 90px;
  object-fit: contain;
}

/* NUMBER */
.av-metric-num{
  font-size: 25px;
  font-weight: 700;
  color: #1f3f7a;
  margin-bottom: 6px;
  line-height: 1;
}

/* Infinity special */
.av-metric-num--icon img{
  height: 34px;
}

/* TEXT */
.av-metric-text{
  font-size: 16px;
  line-height: 1.35;
  color: #1f3f7a;
  font-weight: 500;
}





/* RESPONSIVE */
@media (max-width: 1100px){
  .av-metrics-wrap{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px){
  .av-metrics-wrap{
    grid-template-columns: repeat(2, 1fr);margin: 5px 0;
  }
	.av-metric{box-shadow: 0 20px 60px rgba(15, 23, 42, 0.10);background-color: #fbfbfb;
  padding: 12px 6px;
  border-radius: 12px;}

  .av-metric-icon{
    width: 82px;
    height: 82px;
  }

  .av-metric-num{
    font-size: 20px;
  }

  .av-metric-text{
    font-size: 15px;
  }
}

