* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f7f9fc;
    color: #333;
    line-height: 1.6;
  }
  
.header {
    background: #333a56; /* ✅ Updated background color */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }
  
  .logo img {
    height: 60px;
    width: auto;
    display: block;
  }
  
  /* ✅ Navigation */
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .navbar ul li a {
    font-weight: 500;
    padding: 10px 15px;
    color: #fff; /* ✅ Updated nav link color to white */
    text-decoration: none; 
    transition: color 0.3s ease;
  }
  
  .navbar ul li a:hover {
    color: #f0c040;
  }
  .career-section {
    padding: 80px 20px;
  }
  
  .career-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
  }
  
  .career-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  
  .career-content {
    flex: 1;
    min-width: 300px;
  }
  
  .career-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
  }
  
  .career-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
  }
  @media (max-width: 768px) {
    .header .container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .logo img {
      height: 50px;
    }
  
    .navbar ul {
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
      margin-top: 10px;
    }
  
    .navbar ul li a {
      font-size: 1rem;
      padding: 8px 12px;
    }
  
    .career-section {
      padding: 60px 16px;
    }
  
    .career-container {
      flex-direction: column;
      gap: 30px;
      text-align: center;
    }
  
    .career-content h1 {
      font-size: 2.2rem;
    }
  
    .career-content p {
      font-size: 1rem;
    }
  
    .career-image img {
      max-width: 90%;
    }
  }
  