
/* Job Card Container */
.job-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  gap: 30px;
}

/* Job Card */
.job-card {
  background: linear-gradient(145deg, #101522, #0d111b);
  border: 1px solid rgba(13, 110, 253, 0.2);
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(13, 110, 253, 0.08);
  padding: 25px;
  width: 100%;
  max-width: 450px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(13, 110, 253, 0.4);
  border-color: rgba(13, 110, 253, 0.5);
}

/* Job Header */
.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-header h3 {
  font-size: 1.3rem;
  margin: 0;
  color: #0D6EFD;
}

.job-type {
  background: #0D6EFD;
  color: #fff;
  padding: 3px 3px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Description & Details */
.job-desc {
  margin: 15px 0;
  color: #d3d3d3;
  line-height: 1.5;
  font-size: 0.95rem;
}

.job-details {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.job-details li {
  margin-bottom: 6px;
  color: #ccc;
  font-size: 0.9rem;
}

/* Skill Tags */
.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.job-tags span {
  background: rgba(13, 110, 253, 0.1);
  color: #0D6EFD;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.job-tags span:hover {
  background: rgba(13, 110, 253, 0.25);
}



.captcha-submit {
  text-align: center;
  margin-top: 15px;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
