/* ================= SERVICES PAGE ================= */
.services-page {
  
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  padding-top: 140px;   
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 90px;
  
}

.services-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(30,58,138,0.1);
  color: #1e3a8a;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.services-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #03091b;
}

.services-header p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* GRID */
.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* CARD */
.service-card {
  position: relative;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,23,42,0.9),
    rgba(15,23,42,0.2)
  );
  color: white;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  opacity: 0;
  transform: translateY(30px);
  transition: 0.45s ease;
}

.service-overlay h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-overlay p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.95;
}

/* HOVER EFFECT */
.service-card:hover img {
  transform: scale(1.08);
}

.service-card:hover .service-overlay {
  opacity: 1;
  transform: translateY(0);
}
/* ================= 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;
  }
}
