/* Sub-services tags styling */
.sub-services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sub-service-tag {
  display: inline-block;
  padding: 12px 24px;
  background: #f6f6f6;
  color: #000014;
  text-decoration: none;
  border-radius: 50px;
  font-family: Geist, sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.sub-service-tag:hover {
  background: #0246d0;
  color: #fff;
  border-color: #0246d0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(2, 70, 208, 0.2);
}

@media screen and (max-width: 767px) {
  .sub-service-tag {
    padding: 10px 20px;
    font-size: 14px;
  }
}
