
.stats.stats--three img {
  max-width: 100%;
  height: auto;
}

.stats--three .stats__content {
  position: relative;
  z-index: 2;
}

.stats--three .stats-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.stats--three .stats-wrapper .swiper-wrapper {
  transition-timing-function: linear;
  padding: 18px 0;
}

.stats--three .stats-wrapper .swiper-slide {
  flex-shrink: 0;
  padding: 0 0;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats--three .stat-card {
  font-family: var(--body-text-font, var(--text-font, "Inter", sans-serif));
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-radius: 8px;
  border: 1px solid var(--border-color, #000);
  background: #fff;
  width: 100%;
  min-height: 120px;
  height: 100%;
}

.stats--three .stat-value h1, .stats--three .stat-value h2, .stats--three .stat-value h3, .stats--three .stat-value h4, .stats--three .stat-value h5, .stats--three .stat-value h6 {
  margin-bottom: 0px;
  background-color: transparent!important;
}
.stats--three .stat-label {
  margin: 0 0 0 0;
  font-family: var(--body-text-font, var(--text-font));
}

.stats--three .stat-icon {
  display: inline-block;
  line-height: 0;
  margin-bottom: 16px;
  color: var(--box-icon-color, inherit);
}

.stats--three .stat-icon path {
  fill: var(--box-icon-color, currentColor);
}

/* Apply icon color to SVG icons */
.stats--three .stat-icon svg path {
  fill: var(--box-icon-color, currentColor);
  color: var(--box-icon-color, currentColor);
}

.stats--three .stat-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.stats--three .stat-icon-placeholder {
  border-radius: 4px;
}

/* Loader styles */
.stats--three .loader {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */


/* Mobile (max-width: 767px) */
@media screen and (max-width: 767px) {
  .stats--three .stat-card {
    min-height: 100px;
    padding: 12px;
  }

}



