/* LG = 7 per row */
@media (min-width: 992px) {
  .custom-lg-7 {
    flex: 0 0 14.2857%;
    max-width: 14.2857%;
  }
}

/* Icon wrapper */
/* .service-icon-wrapper {
  width: 120px;
  height: 120px;
} */

.service-icon {
  height: 100%;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.service-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.service-title {
  font-size: 13px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 40px auto;
}

.category-section {
  background: #f3f3f3;
  border-radius: 16px;
  padding: 24px;
}

.section-title {
  font-weight: 600;
  margin-bottom: 20px;
}

.category-row {
  display: flex;
  gap: 20px;
}

.category-card {
  text-decoration: none;
  color: #222;
  width: 100%;
}

.category-image {
  width: 100%;
  height: 170px;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.category-card:hover .category-image {
  transform: scale(1.05);
}

.category-label {
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .category-image {
    height: 200px;
  }

  .service-icon {
    width: 55px;
    height: 55px !important;
    font-size: 25px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
  }

  .avatar-lg {
      height: 3rem;
      width: 3rem;
  }
}

