.careers-section {
  background: #f9fbfd;
}

.filter-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  min-height: 200px;
}
.filter-box h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #0077cc;
}

.job-card-horizontal {
  display: flex;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  margin-bottom: 25px;
  padding: 20px;
  align-items: center;
  transition: transform 0.3s ease;
}
.job-card-horizontal:hover {
  transform: translateY(-5px);
}

.job-card-left img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 20px;
}

.job-card-right h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0077cc;
}

.job-card-right p {
  margin-bottom: 10px;
  color: #555;
}

.apply-btn {
display: inline-block;
  font-family: var(--tp-ff-heading);
  font-weight: 600;
  font-size: 16px;
  background-image: var(--tp-gradient-primary);
  color: var(--tp-common-white);
  padding: 16px 44px;
  border-radius: 45px;
  transition: all 0.4s ease-in;
  background-size: 200% auto;
  overflow: hidden;
}

.apply-btn:hover {
  background: #005fa3;
  color: #ffffff;
}

/* Responsive for mobile */
@media (max-width: 767px) {
  .job-card-horizontal {
    flex-direction: column;
    text-align: center;
  }
  .job-card-left img {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
