/* =============================================================================
   NEFRA — Service Card CSS
   ============================================================================= */

.svc-card {
  background: var(--white);
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .28s ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.svc-card:hover {
  transform: translateY(-6px);
}

.svc-img {
  height: 215px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  padding: 15px 15px 0;
  border-radius: 0;
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform .45s ease;
}
.svc-card:hover .svc-img img {
  transform: scale(1.06);
}

.svc-body {
  padding: 20px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.svc-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}

.svc-more { display: none; }

