.positions-section {
  padding: 60px 20px;
  background: #f5f9ff;
}

.positions-container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #0a2d55;
  margin-bottom: 40px;
}

.job-card {
  background: white;
  border-radius: 14px;
  padding: 25px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  gap: 20px;
}

.job-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-box {
  width: 70px;
  height: 70px;
  background: #13a8ff;
  color: white;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

.job-info h3 {
  font-size: 28px;
  color: #0a2d55;
  margin-bottom: 6px;
}

.job-info p {
  color: #666;
  font-size: 16px;
}

.job-info span {
  color: #13a8ff;
  font-weight: bold;
}

.job-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.job-category-heading {
  font-size: 28px;
  font-weight: 700;
  color: #0a2d55;
  margin: 35px 0 20px;
  padding-left: 8px;
  border-left: 5px solid #13a8ff;
}

.positions-count {
  background: #0a2d55;
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

.positions-count span {
  display: block;
  font-size: 12px;
  margin-top: 4px;
}

.upload-btn,
.apply-btn {
  border: none;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 700;
}

.upload-btn {
  background: #13a8ff;
  color: white;
}

.apply-btn {
  background: #0a2d55;
  color: white;
}

.apply-btn:disabled {
  background: #b5bcc4;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-right {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .job-right {
    flex-direction: column;
    width: 100%;
  }

  .upload-btn,
  .apply-btn {
    width: 100%;
  }
}
