/* Background utama */
.job-stat-page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
  background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Container untuk posisi tengah */
.job-stat-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Kartu utama (lebih lebar) */
.job-stat-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 750px; /* Lebarkan card */
  width: 100%;
}

/* Header dengan logo */
.job-stat-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.job-stat-header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  text-align: left;
}

/* Logo */
.job-logo {
  width: 150px;
  height: auto;
}

/* Statistik */
.job-stat-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
}

.job-stat-list li {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}

.job-stat-list li:last-child {
  border-bottom: none;
}

/* Tombol */
.job-stat-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease-in-out;
  margin-top: 20px;
}

.job-stat-btn:hover {
  background: #128c7e;
}

/* Responsivitas */
@media (max-width: 768px) {
  .job-stat-card {
    max-width: 90%;
    padding: 25px;
  }

  .job-stat-header {
    flex-direction: column;
    text-align: center;
  }

  .job-stat-header h2 {
    font-size: 20px;
    text-align: center;
  }

  .job-logo {
    width: 45px;
  }

  .job-stat-list li {
    font-size: 16px;
  }

  .job-stat-btn {
    font-size: 16px;
    padding: 10px 18px;
  }
}

/* Gaya untuk layanan (services) */
.services .card-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
  text-align: center;
  height: 100%;
}

.services .card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.services .icon {
  font-size: 48px;
  color: #5cb874;
  margin-bottom: 15px;
}

.services h4 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.services p {
  font-size: 14px;
  color: #666;
  line-height: 24px;
}

/* Gaya untuk highlight section */
/* Akses Bantuan - CTA */
#help-access {
  background: linear-gradient(135deg, #25d366, #128c7e);
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #fff;
}

#help-access h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

#help-access p {
  font-size: 16px;
  line-height: 1.6;
  color: #f8f9fa;
}

.cta-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: #1ebc57;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-btn i {
  margin-right: 10px;
  font-size: 22px;
}

.cta-btn:hover {
  background-color: #0e9f47;
  transform: translateY(-3px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  #help-access {
    text-align: center;
    padding: 30px 15px;
  }

  .cta-btn {
    width: 100%;
    padding: 15px;
  }
}

/* Gaya untuk pemutar video */
.video-container {
  max-width: 100%;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: auto;
  text-align: center;
}

.video-container h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
  font-weight: bold;
}

.video-wrapper {
  overflow-x: auto;
  padding: 10px;
}

.video-scroll {
  display: flex;
  gap: 15px;
  padding: 10px;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
}

.video-scroll iframe {
  width: 350px;
  height: 200px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.video-scroll iframe:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .video-scroll iframe {
    width: 100%;
    height: auto;
  }
}
