/* all css  */

.color-base--blue {
  color: #066ccb;
}

.color_grey {
  color: #555;
}

.color-text--title {
  color: #212529;
}

/* ============== career section ======================== */
/* .career_bannerImg {
  width: 90%;
  margin-left: auto;
  margin-right: 0;
} */

/* all css  */

.card-blue {
  background: linear-gradient(135deg, #75bcfacf, #cae4e6);
}

.card-purple {
  background: linear-gradient(135deg, #35fa77c0, #daf1edc9);
}

.card-orange {
  background: linear-gradient(135deg, #fbc2ebcd, #d4e2fbbb);
}

.card-yellow {
  background: linear-gradient(135deg, #ffe10090, #e3ddc0b7);
}

.card-green {
  background: linear-gradient(135deg, #95a8ffbb, #e4d4f4a7);
}

.card-plant {
  background: linear-gradient(135deg, #26efde8d, #bafbd393);
}

.value-hover:hover .value-hover__text {
  color: #555 !important;
}

.value-card {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-card-Icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* ============= lets get started ================ */
.bg-lets-get-started {
  font-size: 16px;
  margin-top: 0;
  color: #fff;
}

.bg-lets-get-started h2 {
  color: #fff;
}

@media (max-width: 1200px) {
  .content_container {
    padding-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .bg-lets-get-started {
    /* padding-top: 10rem; */
    font-size: 16px;
  }

  .bg-lets-get-started p {
    text-align: justify;
  }
}


/* ===================current openings=============================  */
.vaccancy__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #c9d7ffcf;
  margin-bottom: 1rem;
}

.vaccancy__infos {
  display: flex;
  flex-direction: column;
}

.vaccancy_dateContainer {
  width: 72px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e6f2fe;
  border: 1px solid #c7e3fd;
  border-radius: 12px;
  padding: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(6, 108, 203, 0.05);
}

.vaccancy_month {
  font-size: 11px;
  font-weight: 700;
  color: #066ccb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
  line-height: 1;
}

.vaccancy_day {
  font-size: 24px;
  font-weight: 800;
  color: #13203b;
  line-height: 1;
  margin: 2px 0 !important;
}

.vaccancy_year {
  font-size: 10px;
  font-weight: 500;
  color: #798090;
  margin-top: 2px;
  line-height: 1;
}

.vaccancy_contentContainer p {
  color: #212529;
  font-size: 14px;
}

.vaccancy_title {
  font-size: 1.3rem;
  font-weight: 700;
}

.job-link {
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 0;
}

.job-link svg {
  margin-left: 5px;
  transition: transform 0.2s ease;
}

.currentOpenings-title {
  margin-bottom: 20px;
}

.no_vacanccy_list {
  margin-top: 20px;
}

.no_vaccancy_number {
  font-weight: 700;
  font-size: 1.5rem;
}

.vaccancy__list {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 1.06rem;
  margin-bottom: 1.06rem;
  transition: all 0.35s ease;
}

.vaccancy__list .vaccancy_container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem !important;
}

.vaccancy_contentContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 0.2rem;
}

.vaccancy__infos {
  flex: 1 1;
  justify-content: space-between;
}

.vaccancy__infos div h3 {
  margin-top: 0 !important;
}

.extra-job {
  max-height: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
}

.extra-job.show {
  max-height: 300px;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom-width: 1px;
  opacity: 1;
  transform: translateY(0);
}

.link-btn {
  background: #066ccb;
  border-radius: 30px;
  color: white;
  padding: 10px 20px;
  transition:
    background-color 0.5s ease,
    color 0.5s ease,
    border 0.5s ease;
  font-size: 0.8rem;
  border: 1px solid transparent;
}

.link-btn:hover {
  background: #fff;
  border: 1px solid #066ccb;
  color: #066ccb;
}

#showMoreBtn {
  cursor: pointer;
  transition: transform 0.2s ease;
}

#showMoreBtn:active {
  transform: scale(0.96);
}

#showMoreBtn.btn-press {
  transform: translateY(3px);
  transition: transform 0.12s ease;
}

@media (min-width: 768px) {
  .vaccancy__infos {
    flex-direction: row;
  }

  .job-link {
    margin-left: auto;
  }

  .vaccancy_container {
    gap: 1.5rem !important;
  }
}

@media (max-width: 992px) {
  .no_vacanccy_list {
    margin-top: 0;
  }
}

/* --- Application Journey Section --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.steps__card {
  background-color: #ffffff;
  border: 1px solid #ebecef;
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.steps__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(6, 108, 203, 0.08);
  border-color: #c7e3fd;
}

.steps__card:hover .steps__card-badge {
  background-color: #066ccb;
  color: #ffffff;
}

.steps__card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: #ffffff;
  border: 1px solid #83bef5df;
  color: #066ccb;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.steps__card-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #066ccb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(6, 108, 203, 0.2);
}

.steps__card-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.steps__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #13203b;
  margin-bottom: 12px !important;
}

.steps__card-text {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 576px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .steps__card {
    padding: 24px 20px;
  }
}

.steps_container {
  width: 100%;
}

@media (min-width: 1200px) {
  .steps_container {
    width: 90%;
    margin: 0 auto;
  }
}

@media (min-width:1400px) {
  .steps {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}