/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f6f8;
    color: #0a1f44;
  }
  
  /* Navbar Styles */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(12px);
    background: hsla(208, 91%, 21%, 0.87); /* More opaque for contrast */
    color: #ffffff; /* Text color for better contrast */
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .navbar .logo img {
    height: 50px;
  }
  
  .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .navbar .nav-links a {
    text-decoration: none;
    color: #ffffff; /* White text for links */
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .navbar .nav-links a:hover {
    transform: scale(1.1);
  }
  
  .navbar .nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #0a1f44;;
    left: 0;
    bottom: -4px;
    transition: 0.4s;
  }
  
  .navbar .nav-links a:hover::after,
  .navbar .nav-links .active::after {
    width: 100%;
  }
  
  /* Career Section */
  .career {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(to right, rgba(0, 86, 163, 0.9), rgba(10, 14, 45, 0.9));
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    margin-top: 70px; /* Prevent navbar overlap */
  }
  
  .career h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease forwards;
  }
  
  .filters {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  
  .filter {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .filter label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: #ffffff;
  }
  
  .filter select {
    padding: 0.8rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background-color: #ffffff;
    color: #0a1f44;
    transition: all 0.3s ease;
  }
  
  .filter select:hover,
  .filter select:focus {
    border-color: #00b1f2;
    box-shadow: 0 0 5px #00b1f2;
  }
  
  .job-listings {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .job-listing {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .job-listing:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  .job-listing h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0a1f44;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .job-listing span {
    color: #00b1f2;
    font-weight: bold;
  }
  
  .job-listing p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #777;
  }
  
  .apply-btn {
    background-color: #0a1f44;;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: bold;
    margin-top: 1rem;
  }
  
  .apply-btn:hover {
    background-color: #0072ce;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    background-color: #0a1f44;
    color: white;
    margin-top: 3rem;
  }
  
  /* Fancy Animations */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @media (max-width: 768px) {
    .career h1 {
      font-size: 2.2rem;
    }
  
    .job-listing h2 {
      font-size: 1.5rem;
    }
  
    .apply-btn {
      padding: 0.7rem 1.5rem;
    }
  
    .filters {
      flex-direction: column;
      gap: 1rem;
    }
  
    .filter select {
      width: 100%;
      max-width: 250px;
    }
  }
  