.job-banner {
  margin-top: 8rem;
}
.job-heading {
  color: #462b34 !important;
  font-size: 2rem;
}
.search-bar input {
  height: 50px;
  font-size: 16px;
  border-radius: 8px;
}
.form-control {
  width: 88% !important;
}

.search-bar button {
  height: 50px;
  font-size: 16px;
  border-radius: 8px;
  background-color: #ff5956;
  border: 1px solid #ff5956;
  padding: 10px 30px;
}
.search-bar button:hover {
  background-color: white;
  border: 1px solid #ff5956;
  color: #ff5956;
}
.job-item {
  width: 100%;
  background: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  position: relative;
}

.job-item:hover {
  transform: translateY(-5px);
  box-shadow: 5px 5px 18px rgba(0, 0, 0, 0.15);
}

.job-item h4 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.job-item p {
  font-size: 16px;
  color: #555;
}

.apply-btn {
  display: inline-block;
  padding: 8px 12px;
  background: #462b34;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.apply-btn:hover {
  background: #ff5956;
}

.pagination {
  margin-top: 20px;
}

.pagination .page-link {
  color: #ff5956;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.pagination .page-item.active .page-link {
  background-color: #ff5956;
  color: white;
  border: #ff5956;
  border-radius: 50px;
}

.pagination .page-item:hover .page-link {
  background: #ff5956;
  color: white;
}
