/* CAREER SECTION */
.career {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.career h1 {
  font-size: 38px;
  color: #0f4c75;
  margin-bottom: 10px;
}

.career .subtitle {
  font-size: 18px;
  color: #475569;
  margin-bottom: 50px;
}

/* JOB GRID */
.job-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* JOB CARD */
.job-card {
  background: linear-gradient(145deg, #ffffff, #f1f5f9);
  border-radius: 18px;
  padding: 30px 25px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* TOP COLOR BAR */
.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #00b4d8, #0077b6);
}

/* HOVER EFFECT */
.job-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

/* JOB TITLE */
.job-card h2 {
  color: #1e293b;
  margin-bottom: 12px;
  font-size: 22px;
}

/* JOB DESCRIPTION */
.job-card p {
  color: #475569;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* SKILLS LIST */
.job-card ul {
  padding-left: 18px;
}

.job-card li {
  margin-bottom: 8px;
  color: #0f4c75;
  font-weight: 500;
}

/* SLIDE-UP ANIMATION */
.slide-up {
  animation: slideUp 0.9s ease forwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .career h1 {
    font-size: 28px;
  }

  .career .subtitle {
    font-size: 16px;
  }
}
