.bannerPic{
    background: url('../assets/lab-breadcumb.jpg');
    height: 50vh;
    background-position: center;
    background-size: cover;
}
.bannerPic h1{
    margin-top: 60px;
    color: white;
}
.job-card {
    transition: transform 0.3s ease;
  }
  .job-card:hover {
    transform: translateY(-10px);
  }
  .modal-dialog {
    animation: modal-show 0.3s;
  }
  @keyframes modal-show {
    from { opacity: 0; transform: translateY(-100px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .job-card span{
    font-size: 13px !important;
  }