/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f4f6f9;
  color: #333;
  line-height: 1.6;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* ===== HERO ===== */
.career-hero {
  height: 80vh;
  background: url('../../images/Bloomsvale-Bird-Eye-View.jpg') center/cover no-repeat;
  position: relative;
}

.overlay {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-hero .container {
  text-align: center;
  color: #fff;
}

.career-hero h1 {
  font-size: 42px;
}

.career-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===== BUTTON ===== */
.btn-primary {
  background: linear-gradient(135deg, #ff6600, #ff3300);
  padding: 12px 28px;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,102,0,0.4);
}

/* ===== FILTER ===== */
.job-filter {
  margin: -40px auto 50px;
  display: flex;
  gap: 12px;
  justify-content: center;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.job-filter input,
.job-filter select {
  padding: 10px;
  width: 200px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* ===== JOB SECTION ===== */
.jobs h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 30px;
}

/* ===== GRID ===== */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* ===== CARD ===== */
.job-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
.job-card {
  width: 100%;
  max-width: 100%;
}

.job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ===== IMAGE ===== */
.job-cover {
  position: relative;
  height: 230px;
}

.job-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== BADGE ===== */
.job-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #007bff, #0056d2);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* ===== CONTENT ===== */
.job-content {
  padding: 20px;
}

.job-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.job-content {
  word-break: normal;
  white-space: normal;
}


.job-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.job-summary,
.job-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

/* ===== LIST ===== */
.job-list,
.job-content ul {
  padding-left: 18px;
  font-size: 14px;
}

.job-list li,
.job-content li {
  margin-bottom: 5px;
}

/* ===== REQUIREMENT ===== */
.job-req {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
}

/* ===== APPLY BUTTON ===== */
.apply-btn {
  display: inline-block;
  margin-top: auto;
  background: linear-gradient(135deg, #ff6600, #ff3300);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.apply-btn:hover {
  transform: scale(1.05);
}

/* ===== WHY ===== */
.why-work {
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.why-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.why-item {
  max-width: 260px;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.why-item:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.05);
}

/* ICON */
.why-item i {
  font-size: 35px;
  color: #ff6600;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.08);
  padding: 15px;
  border-radius: 50%;
}

/* TEXT */
.why-item h3 {
  margin-bottom: 8px;
}

.why-item p {
  font-size: 14px;
  opacity: 0.8;
}


/* ===== STATS ===== */
.stats {
  background: #000;
  padding: 70px 0;
  text-align: center;
  color: #fff;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  position: relative;
}

/* DIVIDER LINE */
.stats-grid div {
  position: relative;
}

.stats-grid div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.stats h2 {
  font-size: 44px;
  color: #ff6600;
  margin-bottom: 5px;
}

.stats p {
  opacity: 0.7;
  font-size: 14px;
}


/* ===== CTA ===== */
.career-cta {
  background: linear-gradient(135deg, #ff6600, #ff3300);
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}

.career-cta h2 {
  font-size: 34px;
  font-weight: 700;
}

.career-cta p {
  margin: 15px 0 25px;
  opacity: 0.9;
}

/* BUTTON PRO STYLE */
.career-cta .btn-primary {
  background: #fff;
  color: #ff6600;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: bold;
  transition: 0.3s;
}

.career-cta .btn-primary:hover {
  background: #f5f5f5;
  transform: translateY(-3px);
}


/* ===== RESPONSIVE ===== */
@media(max-width:768px){

  .why-grid {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    flex-direction: column;
    gap: 25px;
  }

  .stats-grid div::after {
    display: none;
  }

}
/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .job-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px){

  .job-grid {
    grid-template-columns: 1fr;
  }

  .job-filter {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    flex-direction: column;
    gap: 20px;
  }

  .career-hero h1 {
    font-size: 28px;
  }

  .stats h2 {
    font-size: 32px;
  }

}