/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  min-height: 600px;
  overflow: hidden;
  z-index: 3;
}

/* Carousel fills the entire hero */
.hero-carousel,
.hero-carousel-inner,
.carousel-item {
  height: 100%;
}

/* Each slide = a full-size background image */
.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Decorative vector on top */
.hero-vector {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/bg/hero-bg.svg');
  background-size: cover;
  pointer-events: none;
  z-index: 3;
}

/* Slide indicators */
.hero-indicators {
  z-index: 10;
  bottom: 100px;
}

.hero-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #E4D4B0;
  border: none;
  transition: background 0.3s;
}

.hero-indicators .active {
  background-color: var(--gold-btn);
  width: 52px;
  border-radius: 99px;
}

/* Content wrapper — sits above overlay */
.hero-body {
  position: absolute;
  inset: 0;
  z-index: 5;
  padding-inline: clamp(16px, 5.25vw, 100px);
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 333px;
  padding: 8.5px 24px;
}

.hero-badge span {
  color: var(--green);
  font-weight: 500;
  white-space: nowrap;
  font-size: var(--fs-24);
}

.hero-badge img {
  width: 24px;
  height: 24px;
}

/* ── HERO TITLE ── */
.hero-title {
  font-size: var(--fs-64);
  font-weight: 700;
  color: #fff;
  line-height: 150%;
  max-width: 800px;
  margin-bottom: 8px;
}

.hero-title .accent {
  color: var(--gold);
}

/* ── HERO BUTTONS ── */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 11px 22px;
  border-radius: 12px;
  font-size: clamp(15px, 1.5vw, 22px);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s, transform .2s;
  color: #fff;
  min-width: 250px;
}

.hero-btn:hover {
  opacity: .88;
  transform: translateY(-2px);
  color: #fff;
}

.hero-btn-primary {
  background: rgba(20, 94, 78, 0.75);
  backdrop-filter: blur(2px);
}

.hero-btn-yellow {
  background: var(--gold-btn);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
}

.hero-btn-yellow:hover {
  color: #fff;
}

.hero-btn-outline {
  background: linear-gradient(135deg, rgba(28, 31, 36, 0.94) 0%, rgba(46, 50, 57, 0.9) 58%, rgba(64, 69, 78, 0.9) 100%);
  border: 1px solid rgba(173, 178, 188, 0.42);
  box-shadow: 0 10px 24px rgba(8, 10, 13, 0.32);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: #f7f8fa;
}

.hero-btn-outline:hover {
  background: linear-gradient(135deg, rgba(22, 24, 29, 0.98) 0%, rgba(52, 56, 64, 0.95) 100%);
  border-color: rgba(202, 207, 216, 0.7);
  color: #ffffff;
}

/* Home guide video */
.home-guide-video {
  padding-inline: clamp(16px, 5.25vw, 100px);
  margin: 70px 0 50px;
}

.home-guide-video__head {
  max-width: 760px;
  margin: 0 auto 24px;
}

.home-guide-video__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--green);
  background: #edf4f2;
  color: var(--green);
  font-size: var(--fs-14);
}

.home-guide-video__head h2 {
  margin-top: 10px;
  color: var(--green);
  font-size: var(--fs-48);
  font-weight: 700;
}

.home-guide-video__head p {
  color: var(--green-dark);
  font-size: var(--fs-18);
}

.home-guide-video__card {
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
  aspect-ratio: 16 / 9;
}

.home-guide-video__player {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-guide-video__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  min-height: 46px;
  padding: 8px 20px;
}

.home-guide-video__cta:hover {
  color: #fff;
  opacity: .92;
}

/* ── RESPONSIVE HERO ── */
@media (max-width: 768px) {
  .hero-section {
    height: calc(100svh - 84px);
    min-height: 520px;
  }

  .hero-content {
    align-items: center;
    text-align: center;
    padding-top: 84px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-btn {
    padding: 12px 16px;
  }
}


@media (max-width: 768px) {
  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(270deg, rgba(19, 19, 19, 0.72) 22%, rgba(19, 19, 19, 0.45) 58%, rgba(19, 19, 19, 0.22) 100%);
  }
}

/* ── TICKER ── */
.about-container {
  padding-inline: clamp(16px, 5.25vw, 100px);
}

/* rawafedNewDesign/pages/home.html + css/home.css — الشريط على .slider-track */
.client-section {
  margin: 0;
  padding: 0;
}

.about-container .client-section .slider-track {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  border-radius: 24px;
  padding: 24px 16px;
  margin-top: -50px;
  position: relative;
  z-index: 99;
  background-color: #E8EFED;
}

.slider-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-item img {
  transition: transform 0.3s ease, filter 0.3s ease;
  max-height: 65px;
  width: 65px;
  max-width: 160px;
  object-fit: contain;
}

.slider-item:hover img {
  transform: scale(1.1) translateY(-4px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

@media (max-width: 768px) {
  .about-container .client-section .slider-track {
    gap: 5px;
    padding: 16px 12px;
  }

  .about-title {
    max-width: 100%;
  }
}

/* ── ABOUT ── */
.about-inner {
  margin-bottom: 48px;
}

.about-section {
  position: relative;
  width: 100%;
  padding-top: 90px;
  overflow: hidden;
}

.bg-decoration {
  position: absolute;
  bottom: -25px;
  inset-inline-start: 0;
  max-width: 100%;
}

.bg-decoration img {
  max-width: 100%;
}

@media (max-width: 992px) {
  .bg-decoration {
    max-width: 60%;
    bottom: 0;
  }
}

.about-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  border: 1px solid var(--green);
  border-radius: 29px;
  padding: 7px 15px;
  font-size: var(--fs-16);
  font-weight: 500;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.about-title {
  font-size: var(--fs-48);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.5;
  max-width: 80%;
  margin-bottom: 1rem;
}

.about-title .accent {
  color: var(--green);
}

.about-desc {
  font-size: var(--fs-20);
  color: var(--text-dark);
  line-height: 1.5;
  max-width: 80%;
}

.about-images {
  min-height: 445px;
}

.about-image {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-top {
  top: 0;
  inset-inline-end: 0;
  width: 66%;
  height: 300px;
  z-index: 1;
}

.about-image-bottom {
  inset-inline-start: 0;
  bottom: 0;
  width: 68%;
  height: 300px;
  z-index: 2;
}

.about-floating-card {
  position: absolute;
  inset-inline-end: 170px;
  bottom: 70px;
  z-index: 3;

  width: 265px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  border-radius: 16px;
  padding: 8px 16px;
}

.about-badge-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.about-badge-header span {
  font-size: var(--fs-24);
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

.about-badge p {
  font-size: var(--fs-16);
  color: var(--green-dark);
  line-height: 1.5;
}

/* Tablet */
@media (max-width: 991.98px) {
  .about-images {
    min-height: 500px;
  }

  .about-image-top {
    width: 68%;
    height: 250px;
  }

  .about-image-bottom {
    width: 70%;
    height: 290px;
  }

  .about-floating-card {
    inset-inline-end: 115px;
    bottom: 180px;
    padding: 8px 16px;
  }

  .about-card-title {
    font-size: var(--fs-20);
  }

  .about-card-text {
    font-size: var(--fs-15);
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .about-images {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .about-image,
  .about-floating-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .about-image-top,
  .about-image-bottom {
    height: 240px;
  }

  .about-floating-card {
    z-index: 4;
    margin-top: -90px;
    margin-inline: auto;
    max-width: calc(100% - 32px);
    border-radius: 16px;
    padding: 8px 16px;
  }

  .about-card-title {
    font-size: var(--fs-18);
  }

  .about-card-text {
    font-size: var(--fs-14);
    line-height: 1.7;
  }
}

@media (max-width:1440px) {
  .about-desc {
    max-width: 100%;
  }

  .about-title {
    max-width: 100%;
  }
}

/* Feature cards */

.feature-card {
  background: #fff;
  border-radius: 16px;
  height: 162px;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(250, 213, 154, 0.5);
  padding: 24px 16px;
  transition: all 0.35s ease;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(250, 213, 154, 0.35);
}

.feature-card-title {
  font-size: var(--fs-24);
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 12px;
}

.feature-card-desc {
  font-size: var(--fs-16);
  color: var(--text-gray);
  line-height: 1.5;
}

.feature-card-icon {
  background-color: #F0F3F4;
  position: absolute;
  inset-inline-end: -15px;
  bottom: -15px;
  width: 88px;
  height: 92px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SERVICES */
.services-section {
  padding-inline: clamp(16px, 5.25vw, 100px);
}

.services-slider {
  padding: 96px 0;
  background: #141B1F;
  position: relative;
  z-index: 3;
  margin-bottom: 80px;
}

.service-img {
  border-radius: 24px;
  overflow: hidden;
}

.service-img img {
  border-radius: 24px;
  width: 100%;
  height: 420px;
  object-fit: cover;
}


.service-content {
  padding-inline-start: 32px;
  color: white;
  max-width: 570px;
  position: relative;
}

.service-badge {
  background: rgba(225, 236, 21, 0.20);
  padding: 8px 12px;
  border-radius: 32px;
  display: inline-block;
  margin-bottom: 12px;
  font-size: var(--fs-14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 1px 0 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.10),
    3px 4px 10px rgba(0, 0, 0, 0.20);
}

.service-title {
  font-size: var(--fs-48);
  font-weight: 700;
  line-height: 150%;
  color: #E4D4B0;
}

.service-text {
  font-size: var(--fs-20);
  line-height: 150%;
  font-weight: 400;
}

.service-btn {
  border-radius: 8px;
  background: rgba(252, 182, 21, 0.55);
  color: white;
  padding: 6px 16px;
  font-size: var(--fs-14);
  font-weight: 500;
  border: none;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.service-btn:hover {
  background: rgba(252, 182, 21, 0.75);

  transform: translateY(-2px);

  box-shadow:
    0 6px 14px rgba(252, 182, 21, 0.35),
    0 2px 4px rgba(0, 0, 0, 0.25);
}

.service-btn:active {
  transform: translateY(0);

  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.3);
}

.service-indicators.carousel-indicators {
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  width: auto;
}

.service-indicators.carousel-indicators [data-bs-target] {
  width: 6px;
  min-height: 68px;
  align-self: stretch;
  border: 0;
  border-radius: 4px;
  background: #E8EFED;
  padding: 0;
  transition: all .3s ease;
}

.service-indicators.carousel-indicators [data-bs-target].active {
  background: #976800;
}

.service-indicators.carousel-indicators [data-bs-target]:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* ── PROFILES ── */
.profile-offer {
  padding-inline: clamp(16px, 5.25vw, 100px);
}

.bg-decoration-profile-offer {
  position: absolute;
  top: -120px;
  inset-inline-end: 0;
  max-width: 100%;
}

.bg-decoration-profile-offer img {
  max-width: 100%;
}

@media (max-width: 992px) {
  .bg-decoration-profile-offer {
    max-width: 60%;
    bottom: 0;
  }
}

.profiles-section {
  margin-bottom: 90px;
}

.profiles-header {
  max-width: 854px;
  text-align: center;
  margin: 0 auto 48px;
}

.profiles-header h2 {
  font-size: var(--fs-48);
  font-weight: 700;
  color: var(--green);
  line-height: 1.5;
}

.profiles-header p {
  font-size: var(--fs-16);
  color: var(--green-dark);
  line-height: 1.5;
}


.team-card {
  background: #fff;
  border-radius: 24px;
  padding: 16px 24px;
  height: 310px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(5px);
}

.icon-wrap {
  width: 100px;
  height: 100px;
  background: #d6ab45;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 333px;
  background: #D5AD51;
  margin: 0 auto 22px;
}

.icon-wrap img {
  object-fit: contain;
}

.team-name {
  color: var(--green);
  font-size: var(--fs-32);
  font-weight: 500;
  line-height: 1.5;
}


.team-role {
  color: var(--green);
  font-size: var(--fs-18);
  font-weight: 400;
  line-height: 1.5;
}

.team-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.action-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: var(--fs-20);
  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.call-btn {
  background: var(--green);
}

.whatsapp-btn {
  background: #3B4953;
}

.team-slider-section .action-btn img {
  transition: transform .35s ease;
}


.team-slider-section .action-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
}

.team-slider-section .action-btn:hover img {
  transform: scale(1.2) rotate(8deg);
}

.slider-controls {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  justify-content: flex-end;
}

.slider-nav {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #DCE7E4;
  color: var(--white);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.slider-nav:hover {
  background: var(--green);
}

.slider-nav:active,
.slider-nav:focus {
  background: var(--green);
}

/* Hide default bootstrap carousel icons if present */
.carousel-control-prev,
.carousel-control-next {
  display: none;
}

/* Responsive */
@media (max-width: 991.98px) {
  .profiles-header h2 {
    font-size: var(--fs-36);
  }

  .profiles-header p {
    font-size: var(--fs-16);
  }

  .team-card {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .profiles-header h2 {
    font-size: var(--fs-28);
  }

  .team-name {
    font-size: var(--fs-22);
  }

  .team-role {
    font-size: var(--fs-16);
  }

  .icon-wrap {
    width: 95px;
    height: 95px;
  }
}

/* ── OFFERS ── */
.recruitment-offers-section {
  margin-bottom: 90px;
  overflow: hidden;
}

.recruitment-header {
  max-width: 682px;
  text-align: center;
  margin: 0 auto 48px;
}

.recruitment-header .section-subtitle {
  font-size: var(--fs-16);
  font-weight: 400;
  color: var(--green);
  line-height: 1.5;
  margin-bottom: 8px;
}

.recruitment-header .section-title {
  font-size: var(--fs-48);
  font-weight: 700;
  color: var(--green);
  line-height: 1.5;
  margin-bottom: 16px;
}

.recruitment-header .section-description {
  font-size: var(--fs-20);
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1.5;
  margin-bottom: 48px;
}

/* Card */
.offer-card {
  position: relative;
  min-height: 295px;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  padding: 16px;
}

.offer-card:hover {
  transform: translateY(-6px);
}

.offer-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.offer-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  z-index: 1;
}

.offer-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 1px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.offer-card__price {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 33px;
  padding: 8px;
  border-radius: 333px;
  background: rgba(106, 53, 21, 0.18);
  color: var(--white);
  font-size: var(--fs-14);
  font-weight: 500;
  line-height: 1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.offer-card__body {
  color: var(--white);
  padding-top: 79px;
}

.offer-card__title {
  font-size: var(--fs-24);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
  line-height: 1.5;
}

.offer-card__text {
  font-size: var(--fs-16);
  font-weight: 400;
  max-width: 259px;
  margin-bottom: 16px;
}

.offer-card__btn {
  min-height: 40px;
  border-radius: 333px;
  background: rgba(20, 94, 78, 0.50);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--fs-14);
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.offer-card__btn:hover {
  background: linear-gradient(90deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  transform: translateY(-1px);
}

.offer-card__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.offer-card__btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 1399.98px) {
  .section-title {
    font-size: var(--fs-48);
  }

  .section-description {
    font-size: var(--fs-22);
  }

  .offer-card {
    min-height: 380px;
  }

  .offer-card__title {
    font-size: var(--fs-34);
  }

  .offer-card__text {
    font-size: var(--fs-20);
  }

  .offer-card__btn {
    font-size: var(--fs-18);
    min-height: 52px;
  }
}

@media (max-width: 991.98px) {
  .recruitment-offers-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-subtitle {
    font-size: var(--fs-16);
  }

  .section-title {
    font-size: var(--fs-38);
  }

  .section-description {
    font-size: var(--fs-18);
    line-height: 1.8;
  }

  .offer-card {
    min-height: 360px;
    border-radius: 24px;
  }
}

@media (max-width: 767.98px) {
  .section-description {
    font-size: var(--fs-16);
  }

  .offer-card {
    min-height: 340px;
  }

  .offer-card__content {
    padding: 16px 14px 14px;
  }

  .offer-card__price {
    font-size: var(--fs-14);
    min-height: 36px;
    padding: 8px 14px;
  }

  .offer-card__title {
    font-size: var(--fs-28);
  }

  .offer-card__text {
    font-size: var(--fs-16);
  }

  .offer-card__btn {
    min-height: 50px;
    font-size: var(--fs-16);
  }
}

/* ── STATS ── */
.stats {
  padding-inline: clamp(16px, 5.85vw, 112px);
}

.stats-section {
  min-height: 761px;
  padding: 96px 0;
  background: #090E1F;
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/images/bg/stats-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.stats-section::after {
  content: "";
  position: absolute;
  inset: 100px;
  background-image: url("../assets/images/bg/stats-bg2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  pointer-events: none;
  z-index: 0;
}

.stats-header .stats-subtitle {
  color: var(--white);
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
}

.stats-header .stats-title {
  color: var(--white);
  font-size: var(--fs-48);
  font-weight: 700;
  line-height: 1.5;
}

.stats-box {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 125px 0;
}

.stat-item {
  position: relative;
  padding: 18px 20px;
}


.stat-number {
  line-height: 1;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: var(--fs-63);
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.24px;
}

.stat-label {
  line-height: 1.5;
  margin: 0;
  color: #ffffff;
  font-size: var(--fs-24);
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.24px;
}

@media (max-width: 991.98px) {
  .stats-section {
    padding: 70px 0 90px;
  }
}

@media (max-width: 767.98px) {
  .stats-box {
    padding: 12px 0;
  }

  .stat-item {
    padding: 24px 12px;
  }

  .stat-item::after {
    display: none;
  }

  .stats-box .row::before,
  .stats-box .row::after {
    display: none;
  }
}

/* REQUIREMENTS */

.bg-decoration-req {
  position: absolute;
  inset-inline-start: 0;
  max-width: 100%;
}

.bg-decoration-req img {
  max-width: 100%;
}

@media (max-width: 992px) {
  .bg-decoration-req {
    max-width: 60%;
  }
}

.requirements-container {
  padding-inline: clamp(16px, 5.25vw, 100px);
}

.req-section {
  position: relative;
  width: 100%;
  padding-top: 90px;
  overflow: hidden;
  margin-bottom: 70px;
}

.req-section .about-tag {
  color: #3B4953;

}

.steps-section {
  margin-top: 32px;
}

.step-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #FFF;
  border-inline-start: 1px solid var(--Foundation-Blue-Normal, #3B4953);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 16px;
  min-height: 64px;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.step-number {
  flex-shrink: 0;
  font-size: var(--fs-20);
  font-weight: 700;
  color: #B6CDC8;
  line-height: 1;
  text-align: left;
}

.step-title {
  flex: 1;
  margin: 0;
  font-size: var(--fs-16);
  font-weight: 500;
  color: #0F473B;
}

/* Optional extra text/link for requirement cards */
.step-title-wrap {
  flex: 1;
}

.step-desc {
  margin: 6px 0 0;
  font-size: 12.5px;
  font-weight: 400;
  color: #3B4953;
  line-height: 1.5;
}

.step-link {
  margin-top: 8px;
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: #0F473B;
  text-decoration: underline;
}

.step-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #d4a640;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-24);
  box-shadow: 0 4px 10px rgba(212, 166, 64, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .step-card {
    padding: 18px 14px;
    gap: 12px;
  }

  .step-number {
    min-width: 40px;
  }

  .step-title {
    line-height: 1.7;
  }

  .step-icon {
    width: 46px;
    height: 46px;
  }
}

/* feature-image */
.feature-image {
  position: relative;
  width: 100%;
}

.feature-image .img-fluid {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.feature-floating-card {
  position: absolute;
  inset-inline-start: 46px;
  bottom: 25px;
  z-index: 3;

  width: 265px;
  max-width: calc(100% - 46px);

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  border-radius: 16px;
  padding: 8px 16px;
}

/* recruitment-steps */
.recruitment-steps {
  margin-bottom: 75px;
  position: relative;
  overflow: hidden;
}

/* Wider than default .container so six steps fit comfortably in one row */
.recruitment-steps > .container {
  max-width: min(100%, 1440px);
}

.recruitment-header {
  text-align: center;
  max-width: 682px;
  margin: auto;
  margin-bottom: 48px;
}

.recruitment-header h2 {
  font-size: var(--fs-48);
  font-weight: 700;
  color: var(--Foundation-Blue-Normal);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.recruitment-header p {
  font-size: var(--fs-20);
  font-weight: 400;
  color: var(--Foundation-Blue-Normal);
  line-height: 1.5;
}

.recruitment-line-wrapper {
  position: relative;
}

.recruitment-line-wrapper::before {
  content: "";
  position: absolute;
  top: 50px;
  /* Align dashed line with icon centers for 6 columns (1/12 and 11/12 of row width). */
  left: calc(100% / 12);
  right: calc(100% / 12);
  border-top: 1px dashed var(--Foundation-Blue-Normal);
  z-index: 0;
}

.recruitment-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 24px);
}

.recruitment-item {
  text-align: center;
}

.recruitment-icon {
  display: flex;
  width: 88px;
  height: 88px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  aspect-ratio: 1/1;
  border-radius: 333px;
  border: 1px solid var(--Foundation-Green-Normal, #145E4E);
  margin: auto;
  margin-bottom: 12px;
  background: #edf2ef;
  position: relative;
  z-index: 2;
}

.recruitment-icon-inner {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 33px;
  background: #FFF;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.15);
}

.recruitment-item h3 {
  color: #D5AD51;
  font-size: var(--fs-14);
  font-weight: 500;
  margin-bottom: 16px;
}

.recruitment-item p {
  font-size: var(--fs-14);
  font-weight: 500;
  line-height: 1.5;
  color: var(--Foundation-Green-Darker);
  max-width: min(100%, 160px);
  margin: 0 auto;
}

/* =========================
   RESPONSIVE
========================= */

/* laptop */
@media (max-width: 1200px) {
  .recruitment-pattern {
    left: 50%;
    width: 50%;
    background-size: 260px;
    opacity: 0.15;
  }

  .recruitment-header {
    max-width: 720px;
    margin-bottom: 55px;
    padding-inline: 20px;
  }

  .recruitment-header p {
    line-height: 1.8;
  }

  .recruitment-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(10px, 1.2vw, 18px);
  }

  .recruitment-item p {
    max-width: min(100%, 140px);
    font-size: var(--fs-13, 13px);
  }

  .recruitment-icon {
    width: 80px;
    height: 80px;
  }

  .recruitment-icon img {
    width: 38px;
    height: 38px;
  }

  .recruitment-item p {
    line-height: 1.7;
  }
}

/* tablet */
@media (max-width: 992px) {
  .recruitment-pattern {
    left: 0;
    width: 100%;
    background-size: 220px;
    opacity: 0.08;
  }

  .recruitment-header {
    max-width: 100%;
    margin-bottom: 45px;
    padding-inline: 20px;
  }

  .recruitment-header h2 {
    font-size: var(--fs-36);
    margin-bottom: 16px;
  }

  .recruitment-line,
  .recruitment-line-wrapper::before,
  .recruitment-line-wrapper::after {
    display: none;
  }

  .recruitment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .recruitment-item {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(45, 123, 104, 0.12);
    border-radius: 20px;
    padding: 24px 16px;
  }

  .recruitment-icon {
    width: 88px;
    height: 88px;
    margin-bottom: 14px;
  }

  .recruitment-item p {
    max-width: 260px;
    margin-inline: auto;
    margin-bottom: 0;
  }
}

/* mobile */
@media (max-width: 576px) {
  .recruitment-header {
    margin-bottom: 35px;
    padding-inline: 16px;
  }

  .recruitment-header h2 {
    line-height: 1.3;
  }

  .recruitment-header p {
    font-size: var(--fs-15);
    line-height: 1.9;
  }

  .recruitment-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .recruitment-item {
    padding: 22px 14px;
    border-radius: 18px;
  }

  .recruitment-icon {
    width: 78px;
    height: 78px;
  }

  .recruitment-icon img {
    width: 32px;
    height: 32px;
  }

  .recruitment-item h3 {
    font-size: var(--fs-15);
    margin-bottom: 8px;
  }

  .recruitment-item p {
    font-size: var(--fs-14);
    line-height: 1.8;
    max-width: 220px;
  }
}

/* very small mobile */
@media (max-width: 380px) {
  .recruitment-header p {
    font-size: var(--fs-14);
  }

  .recruitment-item {
    padding: 18px 12px;
  }

  .recruitment-icon {
    width: 72px;
    height: 72px;
  }

}

/* contact */
.contact-section {
  margin-bottom: 85px;
  padding-inline: clamp(16px, 5.25vw, 100px);
}

.contact-header {
  margin: auto;
  max-width: 772px;
  text-align: center;
  margin-bottom: 48px;
}

.contact-title {
  color: var(--green);
  font-size: var(--fs-48);
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 16px;
}

.contact-desc {
  margin-inline: auto;
  color: #6B6B6B;
  font-size: var(--fs-20);
  line-height: 1.5;
}

.contact-form-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
  padding: 40px 24px;
  min-height: 530px;
}

.contact-label {
  color: var(--green);
  margin-bottom: 16px;
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 1.5;
}

.contact-input.form-control {
  min-height: 56px;
  border-radius: 8px;
  border: 1px solid var(--foundation-green-light-hover);
  background: #fff;
  padding: 16px;
  font-size: var(--fs-14);
  box-shadow: none;
}

.contact-textarea.form-control {
  min-height: 96px;
  resize: vertical;
  margin-bottom: 24px;
}

.contact-input.form-control::placeholder {
  color: #9ba3a0;
}

.contact-input.form-control:focus {
  border-color: rgba(20, 94, 78, 0.45);
  box-shadow: 0 0 0 3px rgba(20, 94, 78, 0.08);
}

.contact-submit-btn {
  min-height: 48px;
  border-radius: 8px;
  background: rgba(0, 106, 59, 0.66);
  color: #fff;
  border: 0;
  font-size: var(--fs-14);
  font-weight: 500;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.contact-submit-btn img {
  transition: transform .3s ease;
}

.contact-submit-btn:hover {
  background: #4f9473;
  transform: translateY(-2px);

  box-shadow:
    0 6px 14px rgba(0, 106, 59, .35),
    0 2px 4px rgba(0, 0, 0, .15);
}

.contact-submit-btn:hover img {
  transform: translateX(-6px) rotate(-10deg);
}

.contact-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

/* Contact subject options (radio pills) */
.subject-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 12px;
  border-radius: 10px;
  border: 1px solid var(--foundation-green-light-hover);
  background: rgba(255, 255, 255, 0.7);
}

.subject-options .form-check {
  margin: 0;
  flex: 1 1 calc(33.333% - 10px);
}

.subject-options .form-check-input {
  display: none;
}

.subject-options .form-check-label {
  cursor: pointer;
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(20, 94, 78, 0.18);
  background: #fff;
  color: #2f3a36;
  font-size: var(--fs-14);
  font-weight: 500;
  transition: all 0.2s ease;
  user-select: none;
}

.subject-options .form-check-input:checked + .form-check-label {
  border-color: rgba(20, 94, 78, 0.45);
  background: rgba(0, 106, 59, 0.12);
  color: var(--green);
  box-shadow: 0 0 0 3px rgba(20, 94, 78, 0.08);
}

@media (max-width: 576px) {
  .subject-options {
    flex-direction: column;
  }

  .subject-options .form-check {
    flex: 1 1 100%;
  }
}

@media (max-width: 900px) {
  /* Keep things readable: 2 columns on medium screens */
  .subject-options .form-check {
    flex: 1 1 calc(50% - 10px);
  }
}

.contact-map-wrapper {
  position: relative;
  min-height: 614px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: -32px;
  bottom: 0px;
  width: 78%;
  background: var(--green);
  border-start-end-radius: 24px;
  border-end-end-radius: 24px;
  z-index: 0;
}

.contact-map-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 550px;
  border-radius: 24px;
  overflow: hidden;
  background: #ddd8cf;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 550px;
  border: 0;
  display: block;
}

/* Google reviews */
.google-reviews-section {
  padding-inline: clamp(16px, 5.25vw, 100px);
  margin-bottom: 90px;
}

.google-reviews-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--green);
  background: #edf4f2;
  font-size: var(--fs-14);
}

.google-reviews-head h2 {
  margin-top: 10px;
  color: var(--green);
  font-size: var(--fs-48);
  font-weight: 700;
}

.google-reviews-head p {
  color: var(--green-dark);
  font-size: var(--fs-18);
}

.google-reviews-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(20, 94, 78, 0.08), rgba(213, 173, 81, 0.18));
  margin-bottom: 24px;
}

.google-reviews-summary__rating {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-28);
  font-weight: 700;
  color: #fff;
  background: var(--green);
  flex: 0 0 auto;
}

.google-reviews-summary__meta h3 {
  margin: 0 0 6px;
  color: var(--green);
  font-size: var(--fs-24);
}

.google-reviews-summary__meta p {
  margin: 0;
  color: var(--green-dark);
}

.google-reviews-link {
  margin-top: 8px;
  display: inline-flex;
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.google-review-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(20, 94, 78, 0.1);
  box-shadow: 0 10px 30px rgba(12, 34, 30, 0.06);
  padding: 18px;
  min-height: 230px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.google-review-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.google-review-card__author-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

.google-review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #f2f5f4;
}

.google-review-card__author {
  margin: 0;
  font-size: var(--fs-16);
  color: var(--green);
}

.google-review-card__time {
  color: #7a8a84;
}

.google-review-card__stars {
  line-height: 1;
}

.google-star {
  color: #cdd3d1;
  font-size: 18px;
}

.google-star.is-filled {
  color: #f7b500;
}

.google-review-card__text {
  color: var(--text-dark);
  line-height: 1.8;
  margin: 0;
  min-height: 145px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.google-reviews-carousel .carousel-inner {
  padding: 4px;
}

.google-reviews-controls {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  justify-content: center;
}

.google-reviews-nav {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #dce7e4;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease;
}

.google-reviews-nav:hover,
.google-reviews-nav:focus {
  background: var(--green);
}

@media (max-width: 767.98px) {
  .google-reviews-head h2 {
    font-size: var(--fs-32);
  }

  .google-reviews-summary {
    align-items: flex-start;
  }
}

/*LTR*/
html[dir="ltr"] .hero-vector,
html[dir="ltr"] .hero-btn-primary img,
html[dir="ltr"] .bg-decoration img,
html[dir="ltr"] .service-btn img,
html[dir="ltr"] .slider-nav img,
html[dir="ltr"] .offer-card__btn-icon img,
html[dir="ltr"] .bg-decoration-profile-offer img,
html[dir="ltr"] .contact-submit-btn img {
  transform: scaleX(-1);
}

/*LTR*/