* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ================= Careers Hero Section ================= */
.careers-hero {
    width: 100%;
    height: 90vh;
    background: url('./Assets/carrers/hero1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
    text-align: center;
}

/* Light Black Overlay Behind Text */
.careers-hero-content {
    background: rgba(0, 0, 0, 0.4);
    padding: 35px 45px;
    border-radius: 12px;
    max-width: 650px;
    color: #fff;
    z-index: 2;
}

.careers-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.careers-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* CTA Button */
.btn-hero {
    display: inline-block;
    padding: 12px 30px;
    background: #007bff;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.btn-hero:hover {
    background: #0056b3;
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
    .careers-hero {
        height: 75vh;
    }

    .careers-hero-content {
        padding: 25px 30px;
    }

    .careers-hero-content h1 {
        font-size: 2.2rem;
    }

    .careers-hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .careers-hero {
        height: auto;
        padding: 60px 15px;
    }

    .careers-hero-content {
        padding: 20px;
    }

    .careers-hero-content h1 {
        font-size: 1.8rem;
    }
}


/* Timeline Section */
.timeline-section {
  width: 100%;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 3rem;
  color: #1a1a1a;
}

.timeline {
  width: 80%;
  max-width: 900px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #1d4ed8;
  transform: translateX(-50%);
}

/* Timeline Items */
.timeline-item {
  width: 48%;
  padding: 25px;
  background: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: relative;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.timeline-item h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #1d4ed8;
  font-weight: 700;
}

.timeline-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

.timeline-item p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Position Left and Right */
.timeline-item.left {
  align-self: flex-start;
}

.timeline-item.right {
  align-self: flex-end;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .timeline {
    width: 95%;
  }

  .timeline-line {
    display: none;
  }

  .timeline-item {
    width: 100%;
    align-self: center;
  }
}


/* GENERAL CONTAINER */
.hiring-section {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

/* SECTION TITLE */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.section-subtitle {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 40px;
}

.email-link {
  color: #0ff;
  text-decoration: none;
  font-weight: 600;
}

/* JOB CARD */
.job-card {
  background: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
}

/* JOB INFO */
.job-info {
  text-align: left;
}

.experience {
  font-size: 0.9rem;
  color: #2563eb;
  margin-bottom: 5px;
}

.job-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.job-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: #6b7280;
}

.job-type {
  background: #f3f4f6;
  padding: 3px 10px;
  border-radius: 5px;
}

.job-time {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* APPLY BUTTON */
.apply-btn {
  background: #0ff;
  color: #fff;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.apply-btn:hover {
  background: #06b6d4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .apply-btn {
    align-self: stretch;
    text-align: center;
  }
}