body {
  padding-top: 150px !important;
}
@media (max-width: 991.98px) {
  body {
    padding-top: 120px !important;
  }
}
@media (max-width: 767.98px) {
  body {
    padding-top: 100px !important;
  }
}
@media (max-width: 575.98px) {
  body {
    padding-top: 85px !important;
  }
}

/* Hero image overlay and text styles */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(27, 34, 20, 0.7),
    rgba(38, 47, 27, 0.7)
  );
  z-index: 1;
}
.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 991.98px) {
  .hero-text {
    padding: 2rem 1rem;
    font-size: 1.1rem;
    max-width: 95vw;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 220px;
  }
  .hero-text {
    padding: 1.2rem 0.5rem;
    font-size: 1rem;
    border-radius: 0.7rem;
  }
}
body {
  background-color: #f5f5f5;
  padding-top: 126.7px; /* For fixed navbar */
  font-family: "DM Sans", sans-serif !important;
  font-optical-sizing: auto !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

.formbg {
  background: linear-gradient(135deg, #1b2214, #262f1b) !important;
}

/* Apply gold focus to inputs, textareas, selects */
input:focus,
textarea:focus,
select:focus {
  border-color: #d4af37 !important;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
}

/* Optional: buttons too */
button:focus,
.btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.5) !important;
  outline: none;
}

/* Gold focus ring for checkboxes and radios */
input[type="checkbox"]:focus,
input[type="radio"]:focus {
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.5) !important;
  border-color: #d4af37 !important;
  outline: none;
}

/* Optional: gold checkmark fill for custom checkboxes */
.form-check-input:checked {
  background-color: #d4af37 !important;
  border-color: #d4af37 !important;
}

/* Optional: hover effect for checkboxes */
.form-check-input:hover {
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.3);
}

/**/
/* Section with image + text */
.section-with-image .image-col {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-with-image img {
  max-width: 100%;
  height: auto;
}

.golden-text {
  color: #d4af37;
}

/* Default: image left, text right */
.section-with-image .image-col {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-right: 2rem; /* gap between image and text */
}

.section-with-image img {
  max-width: 100%;
  height: auto;
}

/* Reverse: flip order on desktop */
.section-with-image.reverse .image-col {
  order: 2;
  padding-right: 0;
  padding-left: 2rem; /* move gap to other side */
}

.section-with-image.reverse .text-col {
  order: 1;
}

@media (max-width: 767.98px) {
  /* On mobile, keep stacked order */
  .section-with-image .image-col,
  .section-with-image.reverse .image-col {
    order: 1;
    padding: 0;
    margin-bottom: 1.5rem;
  }
  .section-with-image .text-col,
  .section-with-image.reverse .text-col {
    order: 2;
  }
}

/*JOB LISTINGS*/
.job-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}
.accordion-button::after {
  margin-left: auto;
}
.job-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.job-left,
.job-right {
  flex: 1 1 300px;
}
.apply-btn {
  margin-top: 1rem;
}

.accordion-item {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.accordion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Neutralize active and focus styles */
.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  border: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Optional: remove border radius if you want a flat look */
.accordion-button {
  border-radius: 0;
}

.custom-divider-green-central {
  margin: 2rem auto;
  width: 10%;
  border: 0;
  border-top: 3px solid #394826;
}
