

/* Section Title */
.section-title {
  color: var(--dark-blue);
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
} */

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Job Cards */
.job-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.job-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.job-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-blue);
  min-height: 2.4em;
}

.job-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.job-meta i {
  color: var(--primary-color);
  margin-right: 5px;
}

.job-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.job-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.job-link:hover i {
  transform: translateX(5px);
}

/* Application Form */
.form-wrapper {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark-blue);
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(247, 148, 29, 0.25);
}

.custom-file-upload {
  position: relative;
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* .btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
  transform: translateY(-2px);
} */

.btn-primary:hover {
    background-color: #e58315;
    border-color: #e58315;
}

/* Responsive Adjustments */
@media (max-width: 992px) {

  .job-content h3 {
      font-size: 1rem;
  }
}

@media (max-width: 768px) {


  .section-title {
      font-size: 1.5rem;
  }

  .form-wrapper {
      padding: 20px;
  }
}

@media (max-width: 576px) {


  .job-card {
      padding: 15px;
  }
}