body {
    font-family: 'Segoe UI', sans-serif;
    background: #f8f9fa;
  }
  .hero {
    background: #002244;
    color: white;
    padding: 60px 20px;
    text-align: center;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .apply-btn {
    background-color: #00b4ff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
  }
  .popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  .popup-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
  }
  .popup-box button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    background: #dd0309;
    color: white;
    border: none;
    border-radius: 6px;
  }
  footer {
    background: #dd0309;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  
  footer a, footer a:hover {color:#fff;}