/* === Career Page Styles (Classic Format) === */

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  color: #0f172a;
}

/* Container */
.career {
  width: 100%;
  margin: 2rem auto;
  padding: 0 1rem;
}

.career .career-head,
.career form {
  width: 100%;
}

/* Header */
.career-head {
  text-align: center;
  margin-bottom: 2rem;
}

.career-head h2 {
  font-size: 2rem;
  margin: 0;
  color: #01354d;
}

.career-head .career-sub {
  color: #475569;
  margin-top: 0.3rem;
}

/* Grid Layout */
.career-grid {
  width: auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .career-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Card */
.career-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.career-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Titles and Descriptions */
.career-title {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: #01354d;
}

.career-desc {
  color: #475569;
  margin-bottom: 0.8rem;
}

/* Requirements List */
.career-req {
  font-size: 0.95rem;
  margin: 0 0 1rem;
  padding-left: 1rem;
}

.career-req li {
  margin-bottom: 0.3rem;
}

/* Form Fields */
.career-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.career-form input[type="text"],
.career-form input[type="email"],
.career-form input[type="number"],
.career-form input[type="file"],
.career-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  margin-bottom: 12px;
  background: #fff;
}

.career-form textarea {
  resize: vertical;
}


.career-form .checkbox-row{
  display: inline;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}


/* Resume Upload Text */
.resume-upload {
  font-size: 0.9rem;
  color: #475569;
}

/* Submit Button */
.career-link {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  background: #ffc107;
  color: black;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.career-link:hover {
  background-color: #01354d;
  color: #ffc107;
}

/* Success Message */
.success {
  color: green;
  margin-top: 10px;
  font-weight: 600;
  text-align: center;
}
