.hmv-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-item {
  text-align: center;
  text-decoration: none;
  color: #111;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 8px;
  overflow: hidden;
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit:cover;
  border-radius: 6px;
  display: block;
}

.service-item h3 {
  margin-top: 12px;
  text-transform:uppercase;
  font-size: 16px;
  font-weight: 600;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


.service-item {
  text-decoration: none !important;
}

.service-item * {
  text-decoration: none !important;
}