
.services-section {
  background: #f8fbff;
}

.services-badge {
  background: #eef2ff;
  color: var(--primary-hover-color);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
}

/* Card */
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(91,61,245,0.25);
}

/* Image */
.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 35px;
}

/* Icon Box */
.icon-box {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: absolute;
  top: 150px;
  left: 20px;
  transition: all 0.5s ease;
}

/* 🔥 Hover Animation */
.service-card:hover .icon-box {
  transform: rotate(360deg) scale(1.15);
  top: 20px;
  left: calc(100% - 80px);
}

/* Text */
.service-card h5 {
  font-weight: 700;
  margin-top: 25px;
}

.service-card p {
  color: #6b7280;
  font-size: 14px;
}

/* Read more */
.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.read-more:hover {
  padding-left: 6px;
  color: var(--primary-hover-color);
}

