 .services-single {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.services-single:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.services-single .icon {
  height: 90px;
  width: 90px;
  line-height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 38px;
  background: linear-gradient(135deg, #56ccf2, #2f80ed);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.services-single:hover .icon {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  transform: rotate(10deg) scale(1.1);
}
.services-single h4 {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 20px;
  color: #333;
}
.services-single p {
  font-size: 15px;
  color: #666;
}