.service-card {
    transition: all 0.3s ease;
    border-radius: 15px !important;
    overflow: hidden;
  }
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 161, 0.2) !important;
  }
  .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(0, 102, 161, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
  }
  .service-card:hover .service-icon {
    background: var(--primary-color);
    transform: scale(1.1);
  }
  .service-card:hover .service-icon i {
    color: white !important;
  }
  .search-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  .filter-badge {
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .filter-badge:hover,
  .filter-badge.active {
    background-color: var(--primary-color) !important;
    color: white !important;
  }
  .no-results {
    padding: 3rem;
    text-align: center;
  }
  .no-results i {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
  }