/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

/* Hero Section */
.manpower-hero {
  position: relative;
  height: 50vh;
  background: url('images/manpower.png') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  margin-top: 80px; /* Offset for fixed header */
}
.manpower-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.manpower-hero .hero-content {
  position: relative;
  z-index: 2;
}
.manpower-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.manpower-hero p {
  font-size: 1.5rem;
}

/* Categories Section */
.categories {
  padding: 60px 20px;
}
.categories .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Category Card */
.category-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Card Header */
.category-card .card-header {
  background: #000;
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.category-card .card-header img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.category-card .card-header h2 {
  font-size: 1.2rem;
  margin: 0;
  flex: 1;
}

/* Card Body */
.category-card .card-body {
  padding: 20px;
}
.category-card .card-body ul {
  list-style: disc;
  padding-left: 20px;
}
.category-card .card-body li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .manpower-hero h1 {
    font-size: 2.5rem;
  }
  .manpower-hero p {
    font-size: 1.2rem;
  }
  .header-container {
    flex-direction: column;
  }
}
