/* =====================================================
   WORK ABROAD – FULL STYLESHEET
   ===================================================== */

/* ================= SECTION ================= */

.wa-section {
  padding: 70px 20px;
  background: #f7f9fc;
}

.wa-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #162c40;
}

/* ================= COUNTRY BUTTONS ================= */

.wa-countries {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
}

.country-btn {
  padding: 10px 28px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #0d6efd;
  background: #ffffff;
  color: #0d6efd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.country-btn:hover {
  background: #e8f0ff;
}

.country-btn.active {
  background: #0d6efd;
  color: #ffffff;
}

/* ================= JOB GRID ================= */

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* ================= JOB CARD ================= */

.job-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.job-card:hover {
  transform: translateY(-6px);
}

.job-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: #eef2f7;
}

/* ================= JOB CONTENT ================= */

.job-card-content {
  padding: 24px;
  text-align: left;
}

.job-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #162c40;
}

/* ================= VIEW DETAILS BUTTON ================= */

.details-btn {
  width: 100%;
  padding: 10px;
  border-radius: 22px;
  background: #eef3ff;
  border: none;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.details-btn:hover {
  background: #e1e9ff;
}

/* ================= JOB DETAILS ================= */

.job-details {
  display: none;
  background: #f9fafc;
  padding: 18px 20px;
  border-radius: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.job-details h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #162c40;
}

.job-details p {
  margin-bottom: 10px;
}

.job-details ul {
  padding-left: 18px;
  margin-bottom: 12px;
}

.job-details ul li {
  margin-bottom: 6px;
}

/* ================= ACTION BUTTONS ================= */

.job-actions {
  display: flex;
  gap: 12px;
}

.call-btn,
.enquire-btn {
  flex: 1;
  padding: 12px 0;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

.call-btn {
  background: #198754;
  color: #ffffff;
  text-decoration: none;
}

.call-btn:hover {
  background: #157347;
}

.enquire-btn {
  background: #0d6efd;
  color: #ffffff;
  border: none;
}

.enquire-btn:hover {
  background: #0b5ed7;
}

/* ================= ENQUIRY SECTION ================= */

.enquiry-section {
  background: #ffffff;
  padding: 70px 20px;
}

.enquiry-section h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #162c40;
}

.enquiry-form {
  max-width: 500px;
  margin: auto;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #0d6efd;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.submit-btn:hover {
  background: #0b5ed7;
}

/* ================= MOBILE OPTIMISATION ================= */

@media (max-width: 600px) {
  .wa-title {
    font-size: 26px;
  }

  .job-card-content {
    padding: 18px;
  }

  .job-details {
    font-size: 13px;
  }

  .enquiry-section h2 {
    font-size: 24px;
  }
}






/* =====================================================
   WORK ABROAD – ENQUIRY SECTION (SCOPED)
   Prefix: wa-enquiry-1-
   ===================================================== */

.wa-enquiry-1-section {
  background: #ffffff;
  padding: 70px 20px;
}

.wa-enquiry-1-section h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #162c40;
  margin-bottom: 10px;
}

.wa-enquiry-1-subtext {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 35px;
  font-size: 14px;
  color: #555;
}

/* ================= FORM WRAPPER ================= */

.wa-enquiry-1-form {
  max-width: 520px;
  margin: auto;
}

/* ================= FORM GROUP ================= */

.wa-enquiry-1-group {
  margin-bottom: 16px;
}

.wa-enquiry-1-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* ================= INPUTS ================= */

.wa-enquiry-1-group input,
.wa-enquiry-1-group select,
.wa-enquiry-1-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.wa-enquiry-1-group textarea {
  min-height: 130px;
  resize: vertical;
}

.wa-enquiry-1-group input:focus,
.wa-enquiry-1-group select:focus,
.wa-enquiry-1-group textarea:focus {
  border-color: #0d6efd;
  outline: none;
}

/* ================= SUBMIT BUTTON ================= */

.wa-enquiry-1-submit {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background: #0d6efd;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.wa-enquiry-1-submit:hover {
  background: #0b5ed7;
}

/* ================= MOBILE OPTIMISATION ================= */

@media (max-width: 600px) {
  .wa-enquiry-1-section h2 {
    font-size: 24px;
  }

  .wa-enquiry-1-subtext {
    font-size: 13px;
  }
}

