/* @import url("https://fonts.googleapis.com/css2?family=Alata&family=Quicksand:wght@300..700&display=swap"); */

/* Headings use Alata */
h1, h2, h3, h4, h5, h6 {
  font-family: "Alata", sans-serif;
  color:  var(--section-title-color) !important;
  transition: color 0.3s ease;;
}
/* Body/content uses Quicksand */
body, p, span, li, a {
  font-family: "Quicksand", sans-serif;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Same as headerOffset */
}

/* Hero Section */
.hero-section {
  position: relative;  
  overflow: hidden;
  padding: 80px 20px 20px;
}

.hero-bg-solution {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; 
}

.hero-section .row {
  position: relative;
  z-index: 1;
  margin-left: 5%;
}

.hero-section h2 {
  /* font-weight: 500; */
  font-size: 1.9rem;
  color: var(--text-color);
}

/* Responsive hero section heading */
@media (max-width: 1199px) {
  .hero-section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 991px) {
  .hero-section h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .hero-section h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .hero-section h2 {
    font-size: 1.4rem;
  }
}

.hero-section p {
  color: var(--text-color);
  font-size: 1.1rem;
}

/* Responsive hero section paragraph */
@media (max-width: 1199px) {
  .hero-section p {
    font-size: 1.15rem;
  }
}

@media (max-width: 991px) {
  .hero-section p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section p {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .hero-section p {
    font-size: 1rem;
  }
}

/* Buttons */
/* .btn-dark-custom {
  background: var(--btn-primary-bg);
  color: var(--button-text-color);
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 500;
}

.btn-dark-custom:hover {
  background: var(--btn-primary-hover);
  color: var(--text-color);
} */

.fa-circle-check,
.fa-solid{
  color: #000 !important;
}

.btn-submit {
  background: var(--btn-primary-bg) !important;
  color: var(--button-text-color) !important;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background: var(--btn-primary-hover);
  color: #000; /* text turns black on hover */
}

/* Benefits */
.benefits {
  padding: 60px 20px;
  text-align: center;
}

/* Responsive benefits section */
@media (max-width: 1199px) {
  .benefits {
    padding: 55px 18px;
  }
}

@media (max-width: 991px) {
  .benefits {
    padding: 50px 16px;
  }
}

@media (max-width: 768px) {
  .benefits {
    padding: 40px 15px;
  }
}

@media (max-width: 576px) {
  .benefits {
    padding: 30px 12px;
  }
}

.benefit-box {
  padding: 20px;
}

/* Responsive benefit boxes */
@media (max-width: 1199px) {
  .benefit-box {
    padding: 18px;
  }
}

@media (max-width: 991px) {
  .benefit-box {
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .benefit-box {
    padding: 14px;
  }
}

@media (max-width: 576px) {
  .benefit-box {
    padding: 12px;
  }
}

.benefit-box i {
  font-size: 2rem;
  color: var(--btn-primary-bg);
  margin-bottom: 15px;
}

/* Careers Accordion */
.accordion-button:not(.collapsed) {
  background: #fff8f0;
  color: #000;
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 10px;
  border: 1px solid #eee;
}

/* .footer {
  background: #111;
  color: #fff;
  padding: 60px 20px;
} */

/* .footer a {
  color: #ffd84d;
  text-decoration: none;
} */
/* 
.footer a:hover {
  text-decoration: underline;
} */

/* Current Openings */

/* Title */
.openings-title {
  text-align: center;
  font-weight: 600;
  font-size: 2rem;
  margin: 28px 0 36px 0;
  color: var(--section-title-color) !important;
}

/* Responsive openings title */
@media (max-width: 1199px) {
  .openings-title {
    font-size: 1.9rem;
    margin: 26px 0 34px 0;
  }
}

@media (max-width: 991px) {
  .openings-title {
    font-size: 1.8rem;
    margin: 24px 0 32px 0;
  }
}

@media (max-width: 768px) {
  .openings-title {
    font-size: 1.7rem;
    margin: 22px 0 30px 0;
  }
}

@media (max-width: 576px) {
  .openings-title {
    font-size: 1.5rem;
    margin: 20px 0 28px 0;
  }
}

/* Accordion Container */
.openings-accordion {
  /* background: #fdf8f3; */
  border-radius: 16px;
  padding: 32px 0;
  margin: 0 auto 40px auto;
  max-width: 900px;
}

/* Accordion Item */
.accordion-item {
  background: transparent;
  border: none;
}

/* Accordion Button */
.accordion-header .accordion-button {
  background: #fdf8f3;
  font-size: 1.19rem;
  font-weight: 400;
  border: none;
  outline: none;
  box-shadow: none;
  color: var(--text-color);
  border-radius: 12px !important;
  margin-bottom: 8px;
  transition: background 0.15s;
  padding: 22px 26px;
  justify-content: center;
}

/* Dark mode override */
[data-theme="dark"] .accordion-header .accordion-button {
  background: grey;
  color: var(--section-title-color);
  
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  /* width: 1.2em;
  height: 1.2em;
  background-size: 1.2em;
  transition: transform 0.22s;
  filter: invert(0.5); */
  display: none; /*uncomment when the opening are there*/
}

.accordion-body {
  background: var(--background-color);
  padding: 0 24px 0 24px;
  color: var(--text-color);
}

/* Job Row */
.accordion-item {
  margin-bottom: 12px;
  background: transparent;
  border: none;
}

.job-row {
  background: var(--background-color);
  border-radius: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 22px;
  box-shadow: 0 1.5px 7px #f9e1bc26;
  font-size: 1.11rem;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-color);
}

.job-info {
  display: flex;
  gap: 12px;
  flex: 1;
}

.job-title {
  font-weight: 600;
  color: var(--text-color);
}

.job-exp {
  color: var(--text-color);
}

.apply-btn {
  background: var(--btn-primary-bg);
  color: var(--button-text-color);
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.apply-btn:hover {
  background: var(--btn-primary-hover);
  color: var(--text-color);
}

/* Responsive Adjustments */
@media (max-width: 700px) {
  .openings-title {
    font-size: 1.35rem;
    margin: 20px 0 28px 0;
  }

  .openings-accordion {
    padding: 16px 0;
  }

  .accordion-header .accordion-button {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .accordion-body {
    padding: 0 10px;
  }

  .job-row {
    font-size: 0.97rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 12px;
  }

  .job-exp,
  .apply-btn {
    margin-top: 10px;
    text-align: left;
    flex: none;
  }

  .apply-btn {
    width: 100%;
  }
}

/* Divider styling */
@media (max-width: 991px) {
  .border-md-bottom {
    border-bottom: 1px solid var(--benefit-divider);
  }
  .row .col-md-4:last-child {
    border-bottom: none;
  }
}
@media (min-width: 992px) {
  .border-lg-end {
    border-right: 1px solid var(--benefit-divider);
  }
  .row .col-md-4:last-child {
    border-right: none;
  }
}

@media (max-width: 992px) {
  .modal-body {
    padding: 10px;
  }
  .modal-left {
    display: none !important;
  }
  .modal-right {
    padding: 10px;
  }
}

/* Close button */
.btn-close {
  filter: invert(0.5);
}

[data-theme="dark"] .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}


/* [data-theme="dark"] .btn-animate:hover {
  color: #000 !important; 
} */

@media (max-width: 768px) {
  .benefit-box p {
    max-width: 100%;  
  }
}

.benefit-box {
  padding: 20px;
  display: flex;
  flex-direction: column;  
  align-items: center;     
  justify-content: center; 
  text-align: center;      
  height: 100%;       
}

.social-icon-carrer {
  display: inline-block;
  background: #d9a73a;
  color: #000;
  padding: 10px;
  border-radius: 8px;
  margin: 0 6px;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-bottom: 2%;
}

.image-hero{
  margin-top: 5%;
}

.icon-size-hero{
  width: 11% !important;
}