/* Additional CSS for Manpower Supply Services Section */
.section-padding.parallax-section.alt {
  position: relative;
  z-index: 1;
}
.parallax-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.svc-card {
  position: relative;
  border-radius: 1.2rem;
  box-shadow: 0 6px 24px rgba(44,44,44,0.11);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.22s, transform 0.22s;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  box-shadow: 0 12px 32px #FFC544;
  transform: translateY(-6px) scale(1.03);
}
.svc-img {
  width: 100%;
  height: 250px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
}
.svc-body {
  padding: 24px 18px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.svc-badge.icon-float {
  background: #ffd000;
  color: #2D5C5F;
  border-radius: 50%;
  box-shadow: 0 3px 14px rgba(44,44,44,0.09);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  position: absolute;
  top: 230px;
  left: 18px;
  z-index: 2;
}
.svc-body h5 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2D5C5F;
  margin-top: 32px;
  margin-bottom: 15px;
}
.svc-body ul {
  padding-left: 1.2em;
  margin-bottom: 0;
}
.svc-body li {
  font-size: 1rem;
  margin-bottom: 7px;
  color: #183046;
}

@media (max-width: 992px) {
  .svc-img { height: 200px; }
  .svc-badge.icon-float { top: 170px; }
}

@media (max-width: 576px) {
  .svc-card { min-height: 300px; }
  .svc-img { height: 200px; }
  .svc-badge.icon-float { top: 175px; left: 18px; width: 48px; height: 48px; font-size: 1.2rem; }
  .svc-body h5 { font-size: 1rem; margin-top: 20px; }
}

