/* ===== Careers Page Container ===== */
.careers-container {
    margin-top: 120px; /* push below fixed nav */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background: #f0f4f8; /* page background */
  }
  
  /* ===== Header Styling ===== */
  .careers-header {
    text-align: center;
    background: rgba(255, 255, 255, 0.25); /* glass panel */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 100px 20px 60px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  
  .careers-header h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #0a3d62;
    text-shadow: 0 1px 2px rgba(255,255,255,0.2);
  }
  
  .careers-header p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    color: #0a3d62;
  }
  
  /* ===== Careers Card ===== */
  .careers-card {
    background: rgba(255, 255, 255, 0.35); /* slightly more opaque */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 60px 30px;
    margin: 40px auto;
    border-radius: 16px;
    max-width: 800px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .careers-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  }
  
  .careers-card h2 {
    color: #0a3d62;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
  }
  
  .careers-card h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: rgba(13, 62, 136, 0.7);
    margin: 10px auto 0 auto;
    border-radius: 2px;
  }
  
  .careers-card p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #1a1a1a; /* dark text */
  }
  
  .careers-card .careers-email a {
    display: inline-block;
    color: #0d3e88;
    background: rgba(255,255,255,0.6);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  .careers-card .careers-email a:hover {
    background: rgba(255,255,255,0.8);
    transform: translateY(-2px);
  }
  
  /* ===== Responsive ===== */
  @media screen and (max-width: 768px) {
    .careers-header h1 {
      font-size: 2.2rem;
    }
  
    .careers-header p {
      font-size: 1rem;
    }
  
    .careers-card {
      padding: 40px 20px;
    }
  
    .careers-card h2 {
      font-size: 1.8rem;
    }
  }
  

  /* ===== Larger fonts for big screens ===== */
@media screen and (min-width: 1400px) {
    .careers-header h1 {
      font-size: 4rem; /* bigger title */
    }
  
    .careers-header p {
      font-size: 1.8rem; /* larger subtitle */
    }
  
    .careers-card h2 {
      font-size: 2.8rem; /* bigger section title */
    }
  
    .careers-card p {
      font-size: 1.6rem; /* larger card text */
    }
  
    .careers-card .careers-email a {
      font-size: 1.6rem; /* slightly larger button text */
      padding: 12px 25px;
    }
  }
  