.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 20px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  height: 100%; /* equal height in Bootstrap grid */
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #6a11cb;
  box-shadow: 0 12px 24px rgba(106, 17, 203, 0.15);
}

.service-card .icon {
  font-size: 42px;
  color:rgb(255,39,86);
  margin-bottom: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .icon {
  transform: scale(1.2) rotate(8deg);
  color: #2575fc;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}