/* ===== JOB PAGE GLOBAL ===== */

body {
  background: #f4f7fb;
}

/* HERO */
.jobs-hero {
  text-align: center;
  padding: 70px 20px;
}

/* CONTAINER */
.jobs-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* SECTION HEADING */
.section-heading {
  font-size: 26px;
  margin-bottom: 25px;
}

/* JOB CARD */
.job-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.job-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.job-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.salary {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  margin: 10px 0;
}

/* BUTTONS */
.btn {
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  margin-right: 10px;
  display: inline-block;
  transition: 0.3s ease;
}

.apply-btn {
  background: #1e88e5;
  color: #fff;
}

.apply-btn:hover {
  background: #1565c0;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #1da851;
}

/* ===== INTERNAL GRID ===== */

.internal-grid-section {
  margin-top: 60px;
}

.internal-grid-heading {
  font-size: 26px;
  margin-bottom: 25px;
}

.internal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.internal-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.internal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.internal-card a {
  text-decoration: none;
  font-weight: 600;
  color: #1e3c72;
  font-size: 16px;
  display: block;
}

.internal-card span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #666;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .job-card {
    padding: 20px;
  }

  .job-title {
    font-size: 18px;
  }

  .section-heading {
    font-size: 20px;
  }
}
