/* Career Page Styles */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

/* Hero */
.career-hero {
  background: url('../BizLand-1.0.0/assets/img/dark\ career.png') no-repeat center center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  padding: 20px;
}
.career-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}
.career-hero-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.career-hero h1 {
    color: #f9f9f9;
  font-size: 3rem;
  margin-bottom: 15px;
}
.career-hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #106eea;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover {
  background: white;
  color: #333;
}

/* Why Work With Us */
.career-why {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.career-why h2 {
  margin-bottom: 40px;
}
.career-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.card i {
  font-size: 2rem;
  color: #106eea;
  margin-bottom: 15px;
}

/* Job Openings */
.career-openings {
  padding: 60px 20px;
  text-align: center;
}
.job-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.job-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
}
.job-card h3 {
  color: #106eea;
}

/* Life at JEET */
.career-life {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}
.photo-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.photo-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* CTA */
.career-cta {
  padding: 60px 20px;
  text-align: center;
  background: #dbe0e7;
  color: white;
}
.career-cta h2 {
  margin-bottom: 20px;
}



/* -------------------
   RESPONSIVE DESIGN
------------------- */
@media (max-width: 768px) {
  .career-hero {
    height: auto;
    padding: 100px 20px;
  }
  .career-hero h1 {
    font-size: 2rem;
  }
  .career-hero p {
    font-size: 1rem;
  }
  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 500px) {
  .career-hero h1 {
    font-size: 1.7rem;
  }
  .career-hero p {
    font-size: 0.9rem;
  }
  .card, .job-card {
    padding: 20px;
  }
  .career-why h2,
  .career-openings h2,
  .career-life h2,
  .career-cta h2 {
    font-size: 1.5rem;
  }
}
