/* ===============================
   STATS SECTION
================================= */

.stats-section {
  background: #f4f6f9;
  padding: 80px 0;
  border-bottom: 1px solid #e2e8f0;
}

.stats-subtitle {
  color: #3b5b82;
  font-weight: 500;
  font-size: 18px;
}

.stat-box h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 20px;
}

.stat-box p {
  color: #4a6a91;
  margin-top: 5px;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #dbe9f3;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 24px;
  color: #1ba7a7;
}

.stats-bottom-text {
  color: #4a6a91;
  margin-top: 30px;
}
.stat-box{
  transition: transform 0.3s ease;
}

.stat-box:hover{
  transform: translateY(-6px);
}

.icon-box{
  animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-5px)}
}

.stat-box:hover .icon-box{
  background:#1ba7a7;
  color:white;
  transform: scale(1.1);
}