* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f9fc;
  color: #333;
  line-height: 1.7;
}

a {
  text-decoration: none;
}

.career-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Hero */

.career-hero-section {
  background: linear-gradient(135deg, #0f4c81, #0077b6);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.career-small-title {
  display: inline-block;
  padding: 8px 20px;
  background: #ffffff20;
  border-radius: 50px;
  margin-bottom: 20px;
}

.career-main-title {
  font-size: 52px;
  margin-bottom: 20px;
}

.career-description {
  max-width: 700px;
  margin: auto;
  margin-bottom: 35px;
}

.career-primary-btn {
  display: inline-block;
  background: #fff;
  color: #0077b6;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
}

.career-primary-btn:hover {
  background: #ffd166;
}

/* Sections */

section {
  padding: 80px 0;
}

.career-section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.career-section-heading h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

/* Benefits */

.career-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.career-benefit-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.career-benefit-card:hover {
  transform: translateY(-8px);
}

.career-benefit-card i {
  font-size: 45px;
  color: #0077b6;
  margin-bottom: 20px;
}

.career-benefit-card h3 {
  margin-bottom: 15px;
}

/* Jobs */

.career-job-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.career-job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.career-job-info h3 {
  margin-bottom: 10px;
}

.career-apply-btn {
  background: #0077b6;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
}

.career-apply-btn:hover {
  background: #005c8d;
}

/* Form */

.career-application-form {
  max-width: 750px;
  margin: auto;
}

.career-form-group {
  margin-bottom: 20px;
}

.career-form-group input,
.career-form-group textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

.career-form-group input:focus,
.career-form-group textarea:focus {
  border-color: #0077b6;
}

.career-submit-btn {
  width: 100%;
  background: #0077b6;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.career-submit-btn:hover {
  background: #005c8d;
}

/* Responsive */

@media (max-width: 768px) {
  .career-main-title {
    font-size: 36px;
  }

  .career-job-card {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .career-section-heading h2 {
    font-size: 30px;
  }
}

.career-job-highlights {
  margin-top: 15px;
  padding-left: 20px;
}

.career-job-highlights li {
  margin-bottom: 8px;
  color: #666;
  font-size: 15px;
}

.career-job-info p {
  margin-top: 8px;
  color: #777;
}

.career-job-info p i {
  color: #0f6efd;
  margin-right: 5px;
}
