.nationwide-presence-section {
  padding: 3rem 0;
}

/* Title Text Gradient */
.text-gradient {
  background: rgba(240, 92, 43, 1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card Styling */
.hover-card {
  background-color: white;
  transition: background-color 0.6s ease-in-out, color 0.3s ease-in-out;
}

.hover-card:hover {
  background: linear-gradient(
    90deg,
    rgba(240, 92, 43, 1) 32%,
    rgba(249, 162, 38, 1) 91%
  );
  color: white;
}

.hover-card:hover .title-text span {
  color: white !important;
}

.hover-card:hover p,
.hover-card:hover .count-text {
  color: white !important;
}

/* Icon Styling */
.icon-container {
  width: 56px;
  height: 56px;
  margin-top: 10px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease-in-out;
}

.icon-img {
  width: 100%;
  height: auto;
}

/* Count Text */
.count-text {
  font-size: 1.5rem;
  color: #2d3748;
  transition: color 0.3s ease-in-out;
}

/* Card Description */
.text-muted {
  color: #6c757d !important;
  transition: color 0.3s ease-in-out;
}

/* Responsive Design Adjustments */
@media (max-width: 767.98px) {
  .count-text {
    font-size: 1.2rem;
  }

  .icon-container {
    width: 48px;
    height: 48px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .count-text {
    font-size: 1.4rem;
  }
}
