.career-hero {
  padding: 40px 20px;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.career-hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.career-text {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.badge {
  background-color: #e0e0e0;
  color: #1c3366;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.career-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.career-text h2 .highlight {
  font-size: 36px;
  color: #004aad;
  font-weight: 700;
}

.career-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 20px 0;
}

.btn-primary {
  display: inline-block;
  background-color: #004aad;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #003b89;
}

.career-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.career-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
}
.job-listings {
  background-color: #f4f7fc;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.job-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.job-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 6px;
}

.job-header .experience {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tag {
  background-color: #e5edff;
  color: #0a3d91;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.apply-btn {
  align-self: start;
  background-color: #0a3d91;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.apply-btn:hover {
  background-color: #062b67;
}
.recruit-section {
  padding: 80px 20px;
  background-color: #fff;
}

.recruit-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.recruit-left {
  flex: 1;
  min-width: 300px;
}

.recruit-left h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.4;
}

.recruit-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recruit-features li {
  font-size: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.recruit-features li span {
  color: #0a3d91;
  font-size: 18px;
  margin-right: 10px;
}

/* Form Styling */
.recruit-form {
  flex: 1;
  min-width: 320px;
  background: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group,
.form-full {
  display: flex;
  flex-direction: column;
}

.form-full {
  grid-column: 1 / -1;
  text-align: left; /* <-- add this */
}


label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="file"] {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

input[type="file"] {
  padding: 8px;
}

.checkbox-group {
  display: flex;
  align-items: left;
  font-size: 14px;
  justify-content: flex-start;
  text-align: left;
}


.checkbox-group input {
  margin-right: 10px;
}

.checkbox-group a {
  color: #0a3d91;
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  background-color: #0a3d91;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #062b67;
}

/* Responsive */
@media (max-width: 768px) {
  .recruit-container {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
