/* ================= SOFT SERVICES (ISOLATED) ================= */
.soft-services-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.soft-services-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.soft-services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.soft-services-badge {
  display: inline-block;
  background: rgba(30,58,138,0.1);
  color: #1e3a8a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.soft-services-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.soft-services-header p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* GRID */
.soft-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

/* CARD */
.soft-service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.soft-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.14);
}

.soft-service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 16px;
}

.soft-service-card h3 span {
  font-size: 13px;
  color: #64748b;
}

.soft-service-card ul {
  list-style: none;
  padding-left: 0;
}

.soft-service-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: #334155;
}

.soft-service-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  color: #16a34a;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .soft-services-header h2 {
    font-size: 30px;
  }
}
