  .bg-gradient {
    background: linear-gradient(135deg, #22afe4, #007bff);
    color: #fff !important;
  }
  .btn-gradient {
    background: linear-gradient(135deg, #22afe4, #007bff);
    color: #fff;
    border: none;
    transition: 0.3s;
  }
  .btn-gradient:hover {
    background: linear-gradient(135deg, #007bff, #22afe4);
    color: #fff;
  }
  .job-card {
    background: #fff;
    border-radius: 15px;
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease-in-out;
    position: relative;
    min-height: 220px;
  }
  .job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-left: 5px solid #22afe4;
  }
  .job-card .job-header h5 {
    color: #333;
  }
  .job-card p {
    font-size: 0.9rem;
  }
  .days-left {
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid #e9ecef;
    font-weight: 600;
  }
  @media(max-width: 992px){
    .job-card { min-height: 250px; }
  }
  @media(max-width: 576px){
    .job-card { min-height: auto; }
  }