.career-hero {
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80')
    no-repeat center center/cover;
  height: 70vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.career-overlay {
  background: rgba(8, 50, 90, 0.8);
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.career-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.career-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.career-line {
  width: 80px;
  height: 4px;
  background: #ffc107;
  border-radius: 5px;
  margin-top: 15px;
}

/* ========== JOB SECTION ========== */
.career-section {
  padding: 80px 5%;
  background: #f7f9fb;
}

.job-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.job-card {
  background: #fff;
  border: 2px solid #e3eaf2;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(8, 50, 90, 0.08);
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 0;
  background: #08325a;
  left: 0;
  top: 0;
  border-radius: 0 5px 5px 0;
  transition: height 0.3s ease;
}

.job-card:hover::before {
  height: 100%;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(8, 50, 90, 0.2);
}

.job-type {
  font-size: 0.85rem;
  font-weight: 700;
  color: #08325a;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.job-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #08325a;
  margin-bottom: 10px;
}

.job-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.6;
}

.job-details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 18px;
}

.job-details span {
  background: #eef3f8;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.apply-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #08325a;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background: #ffc107;
  color: #08325a;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .career-title {
    font-size: 2.5rem;
  }
  .career-subtitle {
    font-size: 1rem;
  }
  .career-hero {
    height: 50vh;
  }
}


 .resume-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .resume-popup.show {
    opacity: 1;
  }

  /* Popup box */
  .popup-box {
    background: #fff;
    color: #08325a;
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
    max-width: 350px;
    width: 90%;
  }

  .popup-box p {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .popup-box strong {
    color: #0a4479;
  }

  /* OK button */
  #closePopup {
    background: #08325a;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  #closePopup:hover {
    background: #0a4479;
  }

  @keyframes fadeIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }



  /* --- Global --- */
  .why-love-section {
    background: #dfeaff;
    padding: 80px 20px;
    font-family: "Poppins", sans-serif;
  }

  .why-love-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .why-love-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
  }

  .why-love-section h2 span {
    color: #007bff;
  }

  .why-love-section .subtitle {
    color: #555;
    max-width: 750px;
    margin: 15px auto 50px;
    font-size: 1rem;
    line-height: 1.6;
  }

  /* --- Card Container --- */
  .why-love-section .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

  /* --- Individual Card --- */
  .why-love-section .card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 25px;
    position: relative;
    text-align: left;
    transition: all 0.3s ease;
  }

  .why-love-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  /* --- Badge --- */
  .why-love-section .badge {
    position: absolute;
    top: -15px;
    left: 25px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 7px 14px;
    border-radius: 5px;
    letter-spacing: 0.5px;
  }

  .why-love-section .badge.blue {
    background: #007bff;
  }

  .why-love-section .badge.orange {
    background: #ff9800;
  }

  .why-love-section .badge.green {
    background: #28a745;
  }

  .why-love-section .badge.pink {
    background: #e83e8c;
  }

  /* --- Card Content --- */
  .why-love-section .card h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #222;
    font-weight: 600;
  }

  .why-love-section .card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* --- Responsive --- */
  @media (max-width: 768px) {
    .why-love-section {
      padding: 60px 15px;
    }

    .why-love-section h2 {
      font-size: 1.8rem;
    }

    .why-love-section .subtitle {
      font-size: 0.95rem;
    }

    .why-love-section .card {
      padding: 30px 20px;
    }
  }

  @media (max-width: 480px) {
    .why-love-section h2 {
      font-size: 1.6rem;
    }

    .why-love-section .badge {
      font-size: 0.8rem;
      padding: 6px 10px;
    }
  }




  
