/* Hero Banner Section */
.apply-hero-banner {
  background: linear-gradient(to right, #0f1113, #1c1e21);
  color: #fff;
  padding: 6rem 2rem 4rem;
  width: 100%;
}

.content-wrapper {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
}

.apply-hero-banner h1 {
  font-size: 4rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.apply-hero-banner h2 {
  font-size: 2.4rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 500;
  color: #e0e0e0;
}

.apply-hero-banner p {
  font-size: 1.6rem;
  max-width: 800px;
  color: #ccc;
  line-height: 1.6;
}

.banner-content > div {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.banner-content > div p i {
  color: #ccc;
}

.banner-ctn {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.apply-social-media {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.banner-ctn a {
  background-color: white;
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-ctn a:hover {
  background-color: #000000ff;
  color: #fff;
}

.banner-ctn a:hover i {
  color: #fff;
}

.apply-social-media a {
  padding: 5px 10px;
}

.apply-social-media i {
  color: black;
}
/* Job Info Layout */
.apply-job-info {
  background: #f9f9f9;
  padding: 5rem 2rem;
}

.apply-job-info > div {
  margin: 2rem 1.5rem;
}

.job-info-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 0 auto;
  align-items: stretch;
  justify-content: space-between;
}

.job-info-card,
.experience, .similar-jobs-container {
  min-width: 280px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  background: #fff;
  box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.1);
}

.experience {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.experience i {
  background-color: #333;
  font-size: 2rem;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
}

.job-info-left,
.job-info-right {
  display: flex;
  gap: 3rem;
  flex: 1;
  flex-direction: column;
}

.job-info-left h3,
.job-info-left h4 {
  font-size: 2.2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  color: #111;
  font-weight: 600;
}

.job-info-left ul {
  padding-left: 4rem;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.8;
}

.job-info-left ul li {
  list-style-type: disc;
}
.job-info-left p {
  font-size: 1.6rem;
  color: #444;
  line-height: 1.7;
}

/* Apply Button (Scroll) */
.scroll-apply-btn {
  background-color: #000;
  color: #fff;
  padding: 1.2rem 2.8rem;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.scroll-apply-btn:hover {
  background-color: #222;
  transform: translateY(-2px);
}

.form-wrapper {
  width: 100%;
  height: 100%;
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  background: #fff;
  box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.1);
}


.form-wrapper iframe{
  min-height: 900px;
}

/* Optional Smooth Scroll Offset */
[id] {
  scroll-margin-top: 100px;
}

.similar-jobs-header {
  background: #f9f9f9;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.similar-jobs-list {
  max-height: 400px;
  overflow-y: auto;
  transition: all 0.3s ease;
}

.job-card {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.job-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.job-info h5 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
}

.job-info p {
  margin: 0;
  font-size: 13px;
  color: #555;
}

.job-info a {
  font-size: 12px;
  color: #0073e6;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .apply-job-info {
    padding: 2rem 1rem;
  }

  .job-info-wrapper {
    flex-direction: column;
  }

  .job-info-left {
    width: 100%;
  }

  .job-info-right {
    width: 100%;
    justify-content: center;
    padding-top: 0;
  }

  .scroll-apply-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .apply-hero-banner h1 {
    font-size: 3rem;
  }

  .apply-hero-banner h2 {
    font-size: 2rem;
  }

  .apply-hero-banner p {
    font-size: 1.4rem;
  }

  .banner-content > div p i {
    font-size: 1.2rem;
  }

  .job-info-left h3,
  .job-info-left h4 {
    font-size: 1.8rem;
  }

  .job-info-left ul {
    font-size: 1.4rem;
  }

  .apply-hero-banner {
    flex-direction: column;
    padding: 4rem 1rem;
  }
  .content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .apply-job-info {
    padding: 0;
  }
}
