:root {
  --primary: #1a5fb4;
  --primary-dark: #0d3b7a;
  --primary-light: #4a90d9;
  --secondary: #c0c8d8;
  --light: #f5f7fa;
  --dark: #14141f;
  --section-line: #b0b8c8;
}

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;
}

.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: 0;
}

.lang-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  border-radius: 30px;
  height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.lang-btn i {
  font-size: 15px;
}
.lang-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.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;
  background: var(--primary);
}

.topbar-info small {
  color: #c0c8d8;
}
.bg-dark.px-5 {
  background: #0d1b35 !important;
}

.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;
}

.nav-item.dropdown .dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(26, 95, 180, 0.15);
  padding: 8px 0;
  min-width: 200px;
  animation: fadeInDown 0.2s ease;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropdown-item {
  font-family: 'Cairo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  padding: 10px 20px;
  transition: 0.3s;
}
.dropdown-item:hover {
  background: var(--primary);
  color: #fff;
}
.dropdown-item i {
  width: 20px;
  margin-left: 8px;
  opacity: 0.7;
}
[dir='ltr'] .dropdown-item i {
  margin-left: 0;
  margin-right: 8px;
}

.navbar-light .navbar-nav .dropdown-toggle::after {
  border-top-color: #fff;
  transition: 0.3s;
}
.sticky-top.navbar-light .navbar-nav .dropdown-toggle::after {
  border-top-color: var(--dark);
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: #ffffff;
  }
  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #ddd;
  }
  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--dark) !important;
  }
  .navbar-light .navbar-nav .dropdown-toggle::after {
    border-top-color: var(--dark);
  }
  .dropdown-menu {
    border: none !important;
    box-shadow: none !important;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@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;
  }
  .navbar-light .navbar-nav .dropdown-toggle::before {
    display: none !important;
  }
}
.hero-header {
  position: relative;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 30, 58, 0.82);
  z-index: 2;
}

.hero-header .container {
  position: relative;
  z-index: 3;
}
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  direction: ltr;
}
.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(--section-line);
  z-index: -1;
}
.section-title::after {
  position: absolute;
  content: '';
  width: calc(100% + 120px);
  height: 2px;
  bottom: 5px;
  left: -60px;
  background: var(--section-line);
  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(26, 95, 180, 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(14, 30, 58, 0.88));
  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(26, 95, 180, 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 rgba(255, 255, 255, 0.4);
  border-radius: 35px;
  transition: 0.3s;
}
.footer .btn.btn-social:hover {
  color: #fff;
  background: var(--primary);
  border-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;
  color: var(--primary-light);
}
.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);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}
.footer .footer-menu a:hover {
  color: var(--primary-light);
}
.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.footer .social-row {
  display: flex;
  gap: 8px;
  padding-top: 8px;
  flex-wrap: wrap;
}

.about-img {
  background: url('/img/about-img.webp') center/cover no-repeat;
  min-height: 400px;
}

.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(26, 95, 180, 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-card {
  border: 2px solid #e8eef8;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.35s;
  background: #fff;
}
.partner-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(26, 95, 180, 0.12);
  transform: translateY(-4px);
}
.partner-card .partner-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.partner-card .partner-icon i {
  font-size: 1.8rem;
  color: #fff;
}
.partner-card h5 {
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 6px;
}
.partner-card p {
  font-size: 0.85rem;
  color: #6c757d;
  margin: 0;
}

.partner-category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  border-right: 4px solid var(--primary);
  padding-right: 12px;
  margin-bottom: 20px;
}
[dir='ltr'] .partner-category-title {
  border-right: none;
  border-left: 4px solid var(--primary);
  padding-right: 0;
  padding-left: 12px;
}

.value-card {
  border: 2px solid #e8eef8;
  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(26, 95, 180, 0.15);
}
.value-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.media-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  background: #fff;
}
.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(26, 95, 180, 0.15);
}
.media-card img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: 0.4s;
}
.media-card:hover img {
  transform: scale(1.04);
}
.media-card .media-body {
  padding: 24px;
}
.media-card .media-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.media-card .media-date {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}
.media-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.5;
}
.media-card p {
  font-size: 0.88rem;
  color: #6c757d;
  margin: 0;
}
.media-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  margin-top: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.media-card .read-more:hover {
  gap: 10px;
  color: var(--primary-dark);
}

.media-featured {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px rgba(26, 95, 180, 0.15);
}
.media-featured img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.media-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 0%, rgba(14, 30, 58, 0.92) 100%);
  padding: 40px 30px 30px;
  color: #fff;
}
.media-featured-overlay .media-tag {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.media-featured-overlay h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.media-featured-overlay p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
}

.article-hero {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 8px 40px rgba(26, 95, 180, 0.12);
}
.article-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.article-body h2 {
  color: var(--primary-dark);
  margin-top: 32px;
  margin-bottom: 12px;
}
.article-body p {
  color: #444;
  line-height: 1.9;
  margin-bottom: 16px;
}
.article-tag {
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
}
[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;
}
[dir='rtl'] .footer .footer-menu a {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
[dir='rtl'] .footer .footer-menu a:last-child {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
}
[dir='rtl'] .back-to-top {
  right: auto;
  left: 45px;
}

@media (min-width: 992px) {
  .dropdown-hover:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 0;
  }

  .dropdown-hover .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    top: 100%;
  }

  .dropdown-hover:hover > .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }
}

@media (min-width: 992px) {
  .navbar .dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(26, 95, 180, 0.15);
    border: none;
    padding: 10px 0;
  }
}

.faz-logo,
.navbar-brand img,
img[src*='faz-logo'] {
  height: 200px !important;
  width: auto !important;
  max-height: none !important;
  object-fit: contain;
  position: relative;
  z-index: 10;
  margin-top: -60px;
  margin-bottom: -60px;
}

.faz-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.navbar,
.nav-bar,
.navbar-expand-lg {
  min-height: 100px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  align-items: center !important;
}

@media (min-width: 992px) {
  .navbar,
  .navbar-expand-lg {
    min-height: 120px !important;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
}
