/**
 * Cards & Sections
 */

.service-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.service-card img {
  border-radius: 6px;
  margin-bottom: 20px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.testimonial {
  background: var(--light-bg);
  border-left: 3px solid var(--primary);
  padding: 25px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  color: var(--text-light);
}

.testimonial .author {
  font-weight: 600;
  color: var(--heading-color);
}
