/* SERVICES SECTION */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
}

.service-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.icon {
  width: 70px;
  height: 70px;
  background: rgba(51, 204, 51, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

.service-card h3 {
  margin-bottom: 20px;
  color: #1f2937;
  font-size: 24px;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 14px;
  color: #555;
  line-height: 1.6;
}

.service-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Featured Card */

.service-card.why {
  background: #1f2937;
  color: #fff;
}

.service-card.why h3 {
  color: #fff;
}

.service-card.why li {
  color: #e4e4e4;
}

.service-card.why .icon {
  background: rgba(51, 204, 51, 0.1);
  color: var(--primary-color);
}
