.specialty-section {
  background: #fdf6f8;
}

.specialty-title {
  color: #a70b3a;
  font-weight: 700;
  letter-spacing: 1px;
}

.specialty-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  text-align: center;
}

.specialty-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.specialty-card h5 {
  color: #a70b3a;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.specialty-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Animation (fade-in) */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
  animation: fadeInUp 0.8s ease forwards;
}

/* Responsive spacing */
@media(max-width: 768px){
  .specialty-card img {
    height: 120px;
  }
}
