/* Career Page Specific Styles */
    .career-hero {
      background: linear-gradient(135deg, #0f1a3d, #1a2b5a);
      text-align: center;
      padding: 40px 20px;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .career-hero h1 {
      font-size: 2.8rem;
      margin-bottom: 20px;
    }

    .mission-statement {
      max-width: 800px;
      padding: 1px 1px;
      margin: 60px auto;
      text-align: center;
      margin-bottom: 10px;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 40px auto;
      padding: 1px 1px;
      margin-bottom: -10px;
    }

    .benefit-card {
      background: rgba(255, 215, 0, 0.05);
      border: 1px solid rgba(79, 110, 230, 0.2);
      border-radius: 10px;
      padding: 30px;
      transition: transform 0.3s ease;
    }

    .benefit-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary-color);
    }

    .benefit-icon {
      font-size: 2rem;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    /* Updated Job Openings Grid */
    .job-openings {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 5px;
      margin-bottom: -90px;
    }

    .jobs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px 25px;

    }

   .job-card {
  background: #1a1a1a;
  border-left: 4px solid var(--secondary-color);
  border-radius: 5px;
  padding: 25px;
  transition: all 0.3s ease;
  height: 80%;
  display: flex;
  flex-direction: column;
  gap: 10px; /* ✅ space between elements inside card */
}

    .job-card:hover {
      background: #252525;
      border-left-color: var(--primary-color);
      transform: translateY(-3px);
    }

   .job-type {
    display: inline-block;
    background: rgba(79, 110, 230, 0.2);
    color: var(--secondary-color);
    padding: 4px 12px; /* Increased padding for better consistency */
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 10px;
    vertical-align: middle; /* Crucial for alignment */
    line-height: 1.2; /* Consistent line height */
    font-weight: 600; /* Consistent font weight */
    min-width: 100px; /* Ensures consistent width */
    text-align: center; /* Centers text within the badge */
}

    .job-card ul {
      margin: 15px 0;
      padding-left: 20px;
      flex-grow: 1;
    }

    .job-card li {
      margin-bottom: 8px;
    }

    .apply-btn {
  display: inline-block;
  background: var(--primary-color);
  color: #000;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;   /* keeps button at the bottom of card */
  transition: all 0.3s ease;
  align-self: flex-start; /* keeps button aligned left inside card */
}

    .apply-btn:hover {
      background: #e6c200;
      transform: translateY(-2px);
    }

    /* mail highlight removal */

.contact-link {
  text-decoration: none; /* removes underline */
  color: var(--primary-color); /* or any color you like */
  font-weight: 600;
  font-size: 1.2rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #e6c200; /* optional hover effect */
}

    @media (max-width: 768px) {
      .career-hero {
        padding: 80px 20px;
      }

      .career-hero h1 {
        font-size: 2.2rem;
      }

      .jobs-grid {
        grid-template-columns: 1fr;
      }
    }

.contact-mail {
    display: flex;
    justify-content: center;
    margin-top: 0; /* ← Change this from 30px to 10px or 0 */
    margin-bottom: 5px;
}

.contact-mail a {
  color: yellow;         /* makes the text yellow */
  text-decoration: none;
}
