.manpower-hero {
     background: url('/images/services-bg.jpg') center/cover no-repeat;
      color: white;
      padding: 80px 20px;
      text-align: center;
    }
    .manpower-section-main {
	max-width: 1100px;
	margin: 40px auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 28px;
	align-items: center;
   }
   
   .split-left{
    order: 1;
  }
  .split-left h2{
  color: var(--deep);
  margin: 0 0 12px;
  font-size: clamp(22px, 2.2vw, 28px);
}
.split-left p{
  color: var(--ink);
  line-height: 1.7;
  margin: 0 0 14px;
}
/* Right image */
.split-right img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 20px var(--ring);
  object-fit: cover;
}
    .manpower-section {
      padding: 50px 20px;
      max-width: 1100px;
      margin: auto;
    }
    .manpower-section h2 {
      color: #f4a100;
      margin-bottom: 20px;
      text-align: center;
    }
    .manpower-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .card {
      background: #fff;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }
    .card:hover {
      transform: translateY(-5px);
    }
    .card h4 {
      color: #004d4d;
      margin-bottom: 10px;
    }
    
    /* ===================
   Mobile View Fixes
=================== */
@media (max-width: 768px) {
  /* Stack image & text */
  .manpower-section-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .split-left {
    order: 1;
  }
  .split-right {
    order: 2;
    margin-top: 20px;
  }

  /* Hero padding */
  .manpower-hero {
    padding: 50px 15px;
    font-size: 14px;
  }

  /* Headings */
  .manpower-section h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  /* Cards - one per row on mobile */
  .manpower-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card {
    padding: 15px;
    text-align: center;
  }

  /* Lists */
  .manpower-section ul {
    padding-left: 20px;
    text-align: left;
  }
}