:root {
  --primary: #86b817;
  --secondary: #fe8800;
  --light: #f5f5f5;
  --dark: #14141f;
}

body {
  font-family: 'Cairo', 'Heebo', sans-serif;
}

[dir='ltr'] body {
  font-family: 'Heebo', 'Cairo', sans-serif;
}

.fw-medium {
  font-weight: 600 !important;
}
.fw-semi-bold {
  font-weight: 700 !important;
}

.faz-logo {
  height: 100px;
  width: 235px;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}
#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.btn {
  font-family: 'Cairo', 'Nunito', sans-serif;
  font-weight: 600;
  transition: 0.5s;
}
.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}
.btn-square {
  width: 38px;
  height: 38px;
}
.btn-sm-square {
  width: 32px;
  height: 32px;
}
.btn-lg-square {
  width: 48px;
  height: 48px;
}
.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 0px;
}

.lang-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  border-radius: 20px;
  padding: 3px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  margin-right: 8px;
  letter-spacing: 1px;
}
.lang-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.sticky-top .lang-btn {
  border-color: var(--dark);
  color: var(--dark);
}
.sticky-top .lang-btn:hover {
  border-color: var(--primary);
  color: #fff;
}

.navbar-light .navbar-nav .nav-link {
  font-family: 'Cairo', 'Nunito', sans-serif;
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}
.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark) !important;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: #ffffff;
  }
  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }
  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--dark) !important;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }
  .sticky-top.navbar-light {
    position: fixed;
    background: #ffffff;
  }
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }
  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }
}

.hero-header {
  background:
    linear-gradient(rgba(20, 20, 31, 0.75), rgba(20, 20, 31, 0.75)),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}
.section-title::before {
  position: absolute;
  content: '';
  width: calc(100% + 80px);
  height: 2px;
  top: 4px;
  left: -40px;
  background: var(--primary);
  z-index: -1;
}
.section-title::after {
  position: absolute;
  content: '';
  width: calc(100% + 120px);
  height: 2px;
  bottom: 5px;
  left: -60px;
  background: var(--primary);
  z-index: -1;
}
.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}
.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}
.sector-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: 0.35s;
  position: relative;
}
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(134, 184, 23, 0.25);
}
.sector-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  transition: 0.4s;
}
.sector-card:hover img {
  transform: scale(1.05);
}
.sector-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(20, 20, 31, 0.85));
  padding: 25px 20px 20px;
  color: #fff;
}
.sector-overlay h5 {
  color: #fff;
  margin-bottom: 4px;
  font-size: 1.1rem;
}
.sector-overlay p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin: 0;
}
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
}
.service-item:hover {
  background: var(--primary);
}
.service-item * {
  transition: 0.5s;
}
.service-item:hover * {
  color: var(--light) !important;
}

.destination img {
  transition: 0.5s;
}
.destination a:hover img {
  transform: scale(1.1);
}
.project-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.project-card:hover {
  box-shadow: 0 10px 40px rgba(134, 184, 23, 0.2);
  transform: translateY(-4px);
}
.project-card img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}
.project-badge {
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: normal;
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}
.footer .btn.btn-social:hover {
  color: var(--primary);
}
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: right;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}
[dir='ltr'] .footer .btn.btn-link {
  text-align: left;
}
.footer .btn.btn-link::before {
  position: relative;
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-left: 10px;
}
[dir='ltr'] .footer .btn.btn-link::before {
  margin-left: 0;
  margin-right: 10px;
}
.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}
.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}
.footer .copyright a {
  color: var(--light);
}
.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.about-img {
  background: url('https://images.unsplash.com/photo-1560179707-f14e90ef3623?w=800&q=80')
    center/cover no-repeat;
  min-height: 400px;
}

[dir='rtl'] .navbar-nav {
  margin-right: auto !important;
  margin-left: 0 !important;
}
[dir='rtl'] .me-3 {
  margin-right: 0 !important;
  margin-left: 1rem !important;
}
[dir='rtl'] .me-2 {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}
[dir='rtl'] .ms-auto {
  margin-left: 0 !important;
  margin-right: auto !important;
}
[dir='rtl'] .ms-3 {
  margin-left: 0 !important;
  margin-right: 1rem !important;
}
[dir='rtl'] .pe-3 {
  padding-right: 0 !important;
  padding-left: 1rem !important;
}
[dir='rtl'] .text-lg-start {
  text-align: right !important;
}
[dir='rtl'] .text-lg-end {
  text-align: left !important;
}
[dir='rtl'] .text-md-start {
  text-align: right !important;
}
[dir='rtl'] .text-md-end {
  text-align: left !important;
}
[dir='rtl'] .text-start {
  text-align: right !important;
}
[dir='rtl'] .section-title.text-start::before {
  left: auto;
  right: 0;
}
[dir='rtl'] .section-title.text-start::after {
  left: auto;
  right: 0;
}
[dir='rtl'] .fa-arrow-right::before {
  content: '\f104';
}
[dir='rtl'] .navbar-light .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 25px;
}

.methodology-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}
.methodology-step:hover {
  box-shadow: 0 0 30px rgba(134, 184, 23, 0.15);
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 15px;
}
[dir='ltr'] .step-num {
  margin-left: 0;
  margin-right: 15px;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  background: var(--light);
  border-radius: 30px;
  padding: 10px 22px;
  margin: 6px;
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
  transition: 0.3s;
}
.partner-badge:hover {
  background: var(--primary);
  color: #fff;
}
.partner-badge i {
  margin-left: 8px;
  color: var(--primary);
}
[dir='ltr'] .partner-badge i {
  margin-left: 0;
  margin-right: 8px;
}
.partner-badge:hover i {
  color: #fff;
}
.value-card {
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: 0.3s;
}
.value-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(134, 184, 23, 0.15);
}
.value-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
