@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: poppins, arial;
  color: #fff;
}

.work_hero{
  background-image: url('/assets/gas-863172_1920.jpg');
  background-position: center;
  background-size: cover;
  height: 40vh;
  background-blend-mode: overlay;
  background-color: #00000067;
}

/* Workforce Development Section */
.workforce-development {
  padding: 80px 10%;
  background: #f8f9fa;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff8800;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

/* Workforce Grid */
.workforce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}

/* Workforce Card */
.workforce-card {
  background: #ffffff;
  border-left: 5px solid #ff8800;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.workforce-card:hover {
  transform: translateY(-5px);
}

.workforce-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ff8800;
}

.workforce-list {
  list-style: none;
  padding: 0;
}

.workforce-list li {
  font-size: 1rem;
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.workforce-list li:last-child {
  border-bottom: none;
}


strong{
  color: #000;
}

@media (max-width: 768px) {
  .section-title {
      font-size: 2rem;
  }

  .workforce-development{
    padding: 1rem;
  }

  .section-subtitle{
    margin: 0.7rem;
  }

  .work_hero{
    height: 20vh;
  }
}
