   .card h5 {
        color: #0a2c82;
    }

    .card p {
        color: #555;
        font-size: 0.95rem;
    }

    .btn-primary {
        background-color: #0a2c82;
        border-color: #0a2c82;
    }

    .btn-primary:hover {
        background-color: #1e3fa6;
        border-color: #1e3fa6;
    }

    section#career-form .form-control {
        border-radius: 4px;
        box-shadow: none;
    }

    section#career-form .bg-white {
        border-radius: 6px;
    }

    .text-secondary {
        color: #6c757d !important;
    }

    section.py-5 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
     .facility-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  }
  .facility-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .facility-body {
    padding: 20px;
  }
  .facility-body h5 {
    font-size: 18px;
    color: #0a2c82;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .facility-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }
  .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }
  .section-heading h2 {
    font-weight: 700;
    color: #0a2c82;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
  }
  .section-heading h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: #ff5722;
    bottom: 0;
    left: 20%;
    border-radius: 2px;
  }