:root {
  --navy: #0f1d33;
  --navy-2: #142a45;
  --gray: #5b6472;
  --gold: #c7a35d;
  --ivory: #efe7dc;
  --ivory-2: #f6f1e8;
  --teal: #1e7f83;
  --bs-primary: #c7a35d;
  --bs-secondary: #0f1d33;
  --bs-dark: #0f1d33;
  --bs-light: #efe7dc;
  --bs-body: #5b6472;
  --bs-white: #ffffff;
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--gray);
  background: #ffffff;
}
[dir='rtl'] body {
  font-family: 'Cairo', 'Inter', sans-serif;
}
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  margin-inline-end: 10px;
  vertical-align: middle;
}
#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;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
}
[dir='rtl'] h1,
[dir='rtl'] h2,
[dir='rtl'] h3,
[dir='rtl'] h4,
[dir='rtl'] h5 {
  font-family: 'Cairo', 'Inter', sans-serif;
}
a {
  text-decoration: none;
}
.text-primary {
  color: var(--gold) !important;
}
.bg-primary {
  background: var(--gold) !important;
}
.bg-light {
  background: var(--bs-dark) !important;
}
.bg-dark {
  background: var(--navy) !important;
}
.text-muted {
  color: var(--bs-white) !important;
}
.btn-primary {
  background: var(--bs-dark);
  border-color: var(--bs-dark);
  color: var(--bs-white);
  /* font-weight: 700; */
  padding: 10px;
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}
.btn-outline-light:hover {
  color: var(--navy);
}
.navbar-brand img {
  height: 40px;
}
.navbar-brand span {
  color: #fff;
  transition: color 0.3s;
}
.sticky-top.navbar-light .navbar-brand span {
  color: var(--navy);
}
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  transition: all 0.35s ease;
}
.navbar-light .navbar-nav .nav-link {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 28px 18px;
  transition: color 0.3s;
}
.sticky-top {
  position: fixed !important;
  background: var(--bs-white);
  box-shadow: 0 2px 20px rgba(15, 29, 51, 0.08);
}
.sticky-top.navbar-light .navbar-nav .nav-link {
  color: var(--navy);
  padding: 22px 18px;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--gold) !important;
}
.navbar .btn-outline-nav {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  border-radius: 30px;
  padding: 10px 26px;
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.3s;
}
.navbar .btn-outline-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.sticky-top .btn-outline-nav {
  border-color: var(--navy);
  color: var(--navy);
}
.sticky-top .btn-outline-nav:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--navy);
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
  }
}
.hero-slide-1 {
  background:
    linear-gradient(120deg, rgba(14, 26, 43, 0.94), rgba(14, 26, 43, 0.8)),
    url('../img/hero-pattern.png');
}

.hero-slide-2 {
  background:
    linear-gradient(120deg, rgba(14, 26, 43, 0.94), rgba(14, 26, 43, 0.8)),
    url('../img/hero-pattern1.png');
}
.bg-hero {
  position: relative;
  background-size: cover;
  background-position: center;
}
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(14, 26, 43, 0.95), rgba(14, 26, 43, 0.82)),
    url('../img/hero-pattern.png');
  background-size: cover;
  background-position: center;
  padding: 150px 0 70px;
}
.bg-breadcrumb .breadcrumb-item a {
  color: #cfd6df;
}
.bg-breadcrumb .breadcrumb-item.active {
  color: var(--gold);
}
.service-item {
  border-radius: 10px;
  transition: 0.4s;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.5px solid #73737347;
  border-left: 10px solid var(--teal);
}
[dir='rtl'] .service-item {
  border: 0.5px solid #73737347;
  border-right: 10px solid var(--teal);
}
.service-item:hover {
  box-shadow: 0 15px 45px rgba(14, 26, 43, 0.15);
  transform: translateY(-4px);
}
.service-icon {
  width: 70px;
  height: 70px;
}
.icon-box {
  width: 100px;
  height: 100px;
  background: none;
  flex-shrink: 0;
  margin: 10px;
}
.icon-box img,
.icon-box svg {
  width: 100%;
  height: 100%;
}
.step-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  height: 100%;
  border-top: 4px solid var(--gold);
  text-align: center;
}
.step-card li {
  list-style: inside;
}
.step-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ivory);
  -webkit-text-stroke: 2px var(--navy);
}
.icon-chip {
  background: #fff;
  border: 1px solid #ece5d8;
  border-radius: 12px;
  padding: 26px 20px;
  height: 100%;
  text-align: center;
  transition: 0.3s;
}
.icon-chip:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(15, 29, 51, 0.08);
  transform: translateY(-3px);
}
.icon-chip .icon-chip-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
}
.icon-chip .icon-chip-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.icon-chip h6 {
  color: var(--navy);
  font-weight: 700;
  font-size: 14.5px;
  margin: 0;
}
.journey {
  background: var(--ivory);
  border-radius: 18px;
  padding: 55px 40px;
  position: relative;
}
.journey-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 30px;
}
.journey-track::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--gold) 0,
    var(--gold) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}
.journey-step {
  position: relative;
  z-index: 1;
  flex: 1 1 160px;
  text-align: center;
  min-width: 150px;
}
.journey-step .journey-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 15px;
}
.journey-step h6 {
  color: var(--navy);
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 6px;
}
.journey-step p {
  font-size: 12.5px;
  margin: 0;
  color: var(--gray);
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 8px;
  flex-shrink: 0;
}
[dir='rtl'] .value-dot {
  margin-top: 8px;
}
.footer {
  background: var(--navy);
}
.footer .footer-item a {
  color: #c3cad4;
  line-height: 2.4;
  display: flex;
  justify-content: start;
  align-items: center;
}
.footer .footer-item a:hover {
  color: var(--gold);
}
.copyright {
  background: #0a1420;
}
.faq-accordion {
  counter-reset: faq-counter;
}
.faq-accordion .accordion-item {
  border: 1px solid #ece5d8;
  border-radius: 12px !important;
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--navy);
  border-radius: 12px !important;
  counter-increment: faq-counter;
  padding: 20px 24px;
}
.faq-accordion .accordion-button::before {
  content: counter(faq-counter, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--teal);
  font-size: 12.5px;
  font-weight: 800;
  margin-inline-end: 16px;
}
.faq-accordion .accordion-item:nth-child(3n + 2) .accordion-button::before {
  color: var(--gold);
}
.faq-accordion .accordion-item:nth-child(3n) .accordion-button::before {
  color: var(--navy);
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--ivory);
  color: var(--navy);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.stat-strip {
  background: var(--navy);
}
a.lang-switch,
.lang-switch a {
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}
a.lang-switch:hover,
.lang-switch a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.sticky-top.navbar-light a.lang-switch,
.sticky-top.navbar-light .lang-switch a {
  color: var(--navy);
  border-color: rgba(15, 29, 51, 0.25);
}
.insight-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(15, 29, 51, 0.08);
  height: 100%;
  transition: 0.4s;
}
.insight-card:hover {
  box-shadow: 0 15px 45px rgba(14, 26, 43, 0.15);
  transform: translateY(-4px);
}
.insight-card .insight-thumb {
  height: 170px;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.insight-card .insight-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.insight-tag {
  display: inline-block;
  background: var(--ivory);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
}
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  display: none;
}
[dir='rtl'] .back-to-top {
  right: auto;
  left: 30px;
}
.cta-band > div {
  background: linear-gradient(120deg, var(--navy), #142438);
  border-radius: 40px;
  padding: 50px;
}
.form-control {
  background: #fff;
}
.form-floating > label {
  color: var(--gray);
}
@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    color: var(--navy);
  }
  .bg-hero {
    padding-top: 120px;
  }
}

.contact-info-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 420px;
  background: var(--navy);
}

.contact-info-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info-card > img:first-child {
  position: absolute;
  inset: 0;
}

.contact-info-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 29, 51, 0.35), rgba(15, 29, 51, 0.88));
}

.contact-info-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-logo {
  width: 60px !important;
  height: auto !important;
  margin-bottom: 20px;
}

.contact-info-content h4 {
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.contact-address {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 14px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin-bottom: 12px;
}

.contact-detail i {
  color: var(--gold);
  width: 18px;
}

.contact-detail span {
  font-size: 14px;
}

.contact-map-card {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.map-box {
  height: 280px;
  overflow: hidden;

  border-radius: 22px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-info-card {
  background:
    linear-gradient(135deg, rgba(15, 29, 51, 0.95), rgba(20, 42, 69, 0.95)),
    url('../img/contact-address.png');
  background-size: cover;
  background-position: center;
  padding: 35px;
  border-radius: 22px;
  color: white;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-info-card h4 {
  font-weight: 700;
  margin-bottom: 18px;
  color: white;
}

.map-info-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.map-info-card .contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.map-info-card .contact-detail i {
  color: #c7a35d;
}

.country-badge {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

[dir='rtl'] .contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
}
