/* ===== HERO SECTION ===== */
.jv-hero {
  position: relative;
  background: linear-gradient(135deg, #0d214f 0%, #0067da 100%);
  padding: 100px 0 60px;
  overflow: hidden;
  height: 350px;
}

.jv-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/job_vacancy/job-vacancy-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.jv-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.jv-bg-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.jv-bg-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.jv-hero-container {
  position: relative;
  z-index: 2;

}

.jv-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  animation: slideInLeftJV 1s ease-out;
}

@keyframes slideInLeftJV {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.jv-hero-left {
  max-width: 600px;
}

.jv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.jv-hero-left h1 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.15;
}

.jv-hero-left p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  line-height: 1.8;
}

.jv-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.jv-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.jv-btn-primary {
  background: #fff;
  color: #0d214f;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.jv-btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.jv-btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.jv-btn-outline:hover {
  background: #fff;
  color: #0d214f;
  transform: translateY(-3px);
}

/* ===== HERO RIGHT - STAT BOXES ===== */
.jv-hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.jv-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.jv-stats-single {
  grid-template-columns: 1fr;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.jv-stat-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  /* Removed flex properties from previous version */
  flex: unset;
  min-width: unset;
}

.jv-stat-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.jv-stat-box h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.jv-stat-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ===== COMMON SECTION STYLES ===== */
.jv-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.jv-badge {
  display: inline-block;
  background: linear-gradient(135deg, #29b9ed, #2563eb);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.jv-section-title h2 {
  font-size: 40px;
  color: black;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.jv-section-title p {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ===== WHY WORK WITH US SECTION ===== */
.jv-why {
  padding: 80px 0;
  background: #f8f9fa;
}

.jv-why-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.jv-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.jv-feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.jv-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0067da, #0d214f);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.jv-feature-card:hover::before {
  transform: scaleX(1);
}

.jv-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.15);
  border-color: #0067da;
}

.jv-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0067da, #0d214f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: #fff;
}

.jv-feature-card h3 {
  font-size: 22px;
  color: black;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.jv-feature-card p {
  color: #475569;
  line-height: 1.8;
  font-size: 18px;
  margin-bottom: 18px;
}

/* ===== JOB OPENINGS SECTION ===== */
.jv-openings {
  padding: 80px 0;
  background: #fff;
}

.jv-openings-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.jv-jobs-list {
  margin-top: 50px;
}

.jv-job-card {
  background: #f8faff;
  border-radius: 15px;
  margin-bottom: 20px;
  border: 2px solid transparent;
  overflow: hidden;
  transition: all 0.3s ease;
}

.jv-job-card.active {
  border-color: #0067da;
  box-shadow: 0 10px 30px rgba(0, 103, 218, 0.1);
}

.jv-job-header {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.jv-job-title-section h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.15;
}

.jv-job-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.jv-job-meta span {
  font-size: 14px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jv-job-meta i {
  color: #0067da;
  font-size: 14px;
}

.jv-toggle-btn {
  width: 40px;
  height: 40px;
  background: #0067da;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.jv-toggle-btn:hover {
  background: #0d214f;
}

.jv-toggle-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.jv-job-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.jv-job-description {
  padding: 0 30px 30px;
}

.jv-job-description h4 {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 12px;
  margin-top: 20px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  line-height: 1.15;
}

.jv-job-description p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 15px;
}

.jv-job-description ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.jv-job-description ul li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
}

.jv-job-description ul li::before {
  content: '\2022';
  color: #0067da;
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  left: 0;
}

.jv-apply-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0067da, #0d214f);
  color: #fff;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 25px;
  text-decoration: none;
}

.jv-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 103, 218, 0.3);
  color: #fff;
}

/* ===== COMPANY CULTURE SECTION ===== */
.jv-culture {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.jv-culture-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.jv-culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.jv-culture-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.jv-culture-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.15);
  border-color: #0067da;
}

.jv-culture-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0067da, #0d214f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: #fff;
}

.jv-culture-card h3 {
  font-size: 22px;
  color: black;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.jv-culture-card p {
  color: #475569;
  line-height: 1.8;
  font-size: 18px;
  margin-bottom: 18px;
}

/* ===== CTA SECTION ===== */
.jv-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d214f 0%, #0067da 100%);
  position: relative;
  overflow: hidden;
}

.jv-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.jv-cta-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.jv-cta-content {
  text-align: center;
  color: #fff;
}

.jv-cta-content i {
  font-size: 22px;

  opacity: 0.9;
}

.jv-cta-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.15;
}

.jv-cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.jv-cta-primary {
  display: inline-block;
  background: #fff;
  color: #0d214f;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.jv-cta-primary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: #0d214f;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
  .jv-hero {
    height: auto;
    min-height: 400px;
    padding: 140px 0 60px;
  }

  .jv-hero-left {
    text-align: left;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .jv-hero-buttons {
    justify-content: flex-start;
  }

  .jv-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .jv-hero-right {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
  }

  .jv-stats-row {
    width: 100%;
    max-width: 600px;
  }

  .jv-stats-single {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .jv-job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .jv-toggle-btn {
    align-self: flex-end;
  }

  .ju-benefits-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ju-benefits-left {
    order: 1;
  }

  .ju-benefits-header {
    text-align: center;
  }

  .ju-benefits-image {
    order: 2;
  }
}

@media (max-width: 640px) {

  .jv-hero-left h1,
  .jv-section-title h2 {
    font-size: 32px;
  }

  .jv-features-grid,
  .jv-culture-grid {
    grid-template-columns: 1fr;
  }

  .jv-job-meta {
    flex-direction: column;
    gap: 10px;
  }
}