.fact-tm {
  position: relative;
  padding-bottom: 90px;
  background: transparent;
}

.fact-tm-title-wrapper {
  margin-bottom: 60px;
}

.fact-tm-subtitle {
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color, #7960ff); /* Adjust to your theme color */
  font-weight: 600;
}


.fact-tm-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--title-color, #1e1e1e);
  text-transform: capitalize;
  margin: 0;
}

.fact-tm-item {
  transition: transform 0.4s ease;
}

.fact-tm-item:hover {
  transform: translateY(-8px);
}

.fact-tm-item__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(121, 96, 255, 0.1); /* Light tint of primary color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary-color, #7960ff);
  transition: all 0.4s ease;
}

.fact-tm-item:hover .fact-tm-item__icon {
  background: var(--primary-color, #7960ff);
  color: #fff;
}
.fact-tm-item__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.fact-tm-item__content .fact-tm-item__count {
  font-size: 72px;
  font-weight: 700;
  color: var(--title-color, #1e1e1e);
  line-height: 1;
}

.fact-tm-item__content .plus {
  font-size: 36px;
  margin-left: 4px;
  color: var(--primary-color, #799f0c);
}

/* Odometer specific */
.fact-tm-item__count .odometer {
  font-size: 48px;
  line-height: 48px;
}

.fact-tm-item__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color, #555);
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .fact-tm-title {
    font-size: 36px;
  }
  
  .fact-tm-item__count {
    font-size: 42px;
  }
  
  .fact-tm-item__icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .fact-tm-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  
  .fact-tm-item__icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .fact-tm-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .fact-tm-item__content {
    flex-direction: column;
    gap: 0;
  }
  .fact-tm-item{
    margin-bottom: 20px;
  }
  .fact-tm p{
    display: none;
  }
}
