/* ================================
   HR SOLUTIONS PAGE STYLES
   ================================ */

/* 🔹 Intro Section (Text + Image) */
.hr-solution-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  gap: 50px;
  background: #f9f9f9;
}

.hr-solution-text {
  flex: 1;
}

.hr-solution-text h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #004d4d; /* Theme color */
}

.hr-solution-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

.hr-solution-image {
  flex: 1;
  text-align: right;
}

.hr-solution-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hr-solution-image img:hover {
  transform: scale(1.03);
}

/* 🔹 HR Cards Section */
.hr-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.hr-section h2 {
  color: #f4a100;
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
}

.hr-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.card h4 {
  color: #004d4d;
  margin-bottom: 12px;
  font-size: 20px;
}

.card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* 🔹 Responsive Design */
@media (max-width: 992px) {
  .hr-solution-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hr-solution-image {
    text-align: center;
    margin-top: 25px;
  }

  .hr-solution-text h2 {
    font-size: 28px;
  }

  .hr-solution-text p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hr-solution-section {
    padding: 30px 15px;
    gap: 30px;
  }

  .hr-solution-text h2 {
    font-size: 24px;
  }

  .hr-solution-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  .card {
    padding: 20px;
  }

  .card h4 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }
}
