.navbar {
  background-color: #003366;
}

/* GRID */
.edmJobCardWrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: auto;
}

.job-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.job-card:hover {
  box-shadow: 0 6px 18px #003366;
}

.job-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin: 12px 0;
}

.job-card:hover img {
  box-shadow: 0 6px 18px #003366;
}

.description-content {
  text-align: justify;
}

/* READ MORE BUTTON */
.read-more-btn {
  color: #003366;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
  display: inline-block;
}

.apply-box {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .edmJobCardWrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .job-card img {
    height: 160px;
  }
}

@media (max-width: 600px) {
  .edmJobCardWrapper {
    grid-template-columns: 1fr;
  }

  .job-card img {
    height: 150px;
  }

  .hero-section {
    height: 100px;
  }
}

/* ---------------------- MODAL POPUP ---------------------- */
.edmModalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 20px;
}

.edmModalBox {
  background: #fff;
  max-width: 650px;
  width: 100%;
  border-radius: 12px;
  padding: 25px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: popupShow 0.3s ease;
}

.edmModalClose {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 40px;
  cursor: pointer;
  color: red;
  font-weight: 700;
}

.edmModalTitle {
  font-size: 24px;
  font-weight: 700;
  color: #003366;
  text-align: center;
  margin-bottom: 12px;
}

@keyframes popupShow {
  from {
    transform: scale(0.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.edmModalBox::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.edmModalBox {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
