:root {
  --royal-blue: #1d4ed8;
  --dark-blue: #071a4a;
  --deep-blue: #0b235f;
  --soft-blue: #56a8ff;
  --teal: #4be3d5;
  --gold: #f4c66a;
  --coral: #ff8e78;
  --glow-blue: #87c7ff;
  --silver: #c6d2e7;
  --white: #f3f8ff;
  --panel: rgba(126, 176, 255, 0.11);
  --panel-border: rgba(173, 210, 255, 0.28);
  --bg-gradient: radial-gradient(circle at 15% 20%, rgba(31, 93, 232, 0.95) 0%, rgba(31, 93, 232, 0) 32%),
    radial-gradient(circle at 82% 6%, rgba(42, 126, 243, 0.85) 0%, rgba(42, 126, 243, 0) 26%),
    radial-gradient(circle at 18% 82%, rgba(75, 227, 213, 0.16) 0%, rgba(75, 227, 213, 0) 26%),
    radial-gradient(circle at 78% 76%, rgba(244, 198, 106, 0.12) 0%, rgba(244, 198, 106, 0) 24%),
    linear-gradient(145deg, #05133a 0%, #0a255f 42%, #123d89 70%, #0d2b62 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--white);
  background: var(--bg-gradient);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section {
  padding: 100px 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

.center {
  text-align: center;
}

.narrow {
  width: min(900px, 92%);
}

.section-tag {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 6vw, 4.3rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.55rem, 4vw, 2.7rem);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin-bottom: 10px;
}

p {
  color: #e2efff;
}

.glass {
  background: linear-gradient(160deg, rgba(170, 213, 255, 0.14), rgba(75, 130, 219, 0.1));
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(4, 18, 58, 0.35);
}

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(170deg, #071a4a 0%, #103b91 100%);
  display: grid;
  place-content: center;
  gap: 16px;
  text-align: center;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-shell {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(166, 210, 255, 0.42);
  position: relative;
  display: grid;
  place-items: center;
}

.loader-orbit {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #8fceff;
  border-right-color: #2b72ef;
  animation: spin 0.8s linear infinite;
}

.loader-core {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(30, 99, 220, 0.35);
  display: grid;
  place-content: center;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(7, 24, 68, 0.74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(154, 203, 255, 0.18);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #d9e9ff;
  background: linear-gradient(140deg, #1f5fe5, #0e2c78);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.86rem;
  letter-spacing: 0.06em;
}

.brand-text small {
  color: var(--silver);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: #d8e9ff;
  font-size: 0.96rem;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: #9fd0ff;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 36px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: #e3f0ff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lang-toggle {
  border: 1px solid rgba(176, 216, 255, 0.52);
  background: rgba(145, 191, 255, 0.12);
  color: #e8f4ff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.lang-toggle:hover {
  background: rgba(145, 191, 255, 0.2);
  transform: translateY(-1px);
}

.hero {
  min-height: 96vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-map {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(8, 27, 75, 0.53), rgba(8, 27, 75, 0.72)),
    url("https://images.unsplash.com/photo-1449824913935-59a10b8d2000?auto=format&fit=crop&w=2000&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.36;
  will-change: transform;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background: radial-gradient(circle, rgba(98, 167, 255, 0.45) 0%, rgba(98, 167, 255, 0) 70%),
    radial-gradient(circle at 70% 35%, rgba(244, 198, 106, 0.18) 0%, rgba(244, 198, 106, 0) 55%);
  filter: blur(40px);
  animation: floatGlow 8s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  padding: 110px 0 80px;
}

.hero-panel,
.about-image-main,
.about-image-secondary,
.services-banner img,
.mini-card img {
  animation: drift 14s ease-in-out infinite;
}

.hero-panel {
  animation-delay: 0.3s;
}

.about-image-secondary,
.services-banner img {
  animation-delay: 0.8s;
}

.eyebrow {
  letter-spacing: 0.18em;
  color: #a7d3ff;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 0.78rem;
}

.hero-content p {
  max-width: 710px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  padding: 13px 26px;
  border-radius: 99px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(120deg, #2f78f5, #0f46b2 55%, #4be3d5);
  color: #f5fbff;
  box-shadow: 0 10px 24px rgba(17, 75, 186, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(31, 104, 235, 0.55);
}

.btn-ghost {
  border-color: rgba(244, 198, 106, 0.56);
  background: rgba(132, 178, 245, 0.09);
  color: #ddedff;
}

.btn-ghost:hover {
  border-color: rgba(244, 198, 106, 0.86);
  box-shadow: 0 10px 24px rgba(244, 198, 106, 0.14);
}

.hero-highlights {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #bbdbff;
  font-size: 0.95rem;
}

.hero-highlights span,
.service-card,
.about-card,
.testimonial-card,
.summary-card li,
.faq-item,
.contact-form {
  position: relative;
  overflow: hidden;
}

.hero-highlights span::before,
.service-card::before,
.about-card::before,
.testimonial-card::before,
.summary-card li::before,
.faq-item::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.08) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.service-card:hover::before,
.about-card:hover::before,
.testimonial-card:hover::before,
.summary-card li:hover::before,
.faq-item:hover::before,
.contact-form:hover::before,
.hero-highlights span:hover::before {
  transform: translateX(120%);
}

.hero-highlights i {
  color: #91cbff;
  margin-right: 7px;
}

.hero-panel {
  padding: 26px;
  align-self: center;
}

.hero-panel ul li {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(145, 191, 255, 0.08);
  border: 1px solid rgba(174, 217, 255, 0.16);
}

.hero-mini-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 12px;
}

.mini-card {
  overflow: hidden;
  border-radius: 16px;
  min-height: 140px;
  position: relative;
  border: 1px solid rgba(182, 219, 255, 0.22);
}

.mini-card-large {
  min-height: 180px;
}

.mini-card img,
.about-image,
.services-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mini-card::after,
.about-image::after,
.services-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 26, 74, 0.05), rgba(7, 26, 74, 0.38));
  pointer-events: none;
}

.hero-panel ul {
  list-style: none;
  margin: 16px 0 20px;
  display: grid;
  gap: 10px;
}

.hero-panel li i {
  color: #9fd3ff;
  margin-right: 9px;
}

.chart-bars {
  height: 130px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
}

.chart-bars span {
  height: var(--h);
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, #90ccff, #1751bd);
  animation: pulseBars 2.5s ease-in-out infinite;
}

.chart-bars span:nth-child(2) {
  animation-delay: 0.2s;
}

.chart-bars span:nth-child(3) {
  animation-delay: 0.4s;
}

.chart-bars span:nth-child(4) {
  animation-delay: 0.6s;
}

.chart-bars span:nth-child(5) {
  animation-delay: 0.8s;
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.about-image-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.about-image-main,
.about-image-secondary {
  min-height: 210px;
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(182, 219, 255, 0.22);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.about-image-main:hover,
.about-image-secondary:hover,
.services-banner:hover img,
.mini-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.04);
}

.about-card {
  padding: 28px;
}

.about-quote-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(75, 227, 213, 0.12);
  border: 1px solid rgba(75, 227, 213, 0.25);
  color: #d8fffb;
  font-size: 0.92rem;
}

.about-quote-badge i {
  color: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  color: #9ecfff;
  font-weight: 600;
}

.service-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 20px;
}

.services-banner {
  margin-top: 26px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(182, 219, 255, 0.22);
  min-height: 230px;
}

.services-banner img {
  min-height: 230px;
  width: 100%;
  display: block;
}

.service-card {
  padding: 26px 22px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  border-top: 1px solid rgba(244, 198, 106, 0.15);
}

.service-card i {
  font-size: 1.45rem;
  color: #95cdff;
  margin-bottom: 14px;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 198, 106, 0.58);
}

.stats {
  padding-top: 30px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  text-align: center;
  padding: 24px 16px;
}

.stat-card:nth-child(1) {
  background: linear-gradient(160deg, rgba(244, 198, 106, 0.12), rgba(75, 130, 219, 0.1));
}

.stat-card:nth-child(2) {
  background: linear-gradient(160deg, rgba(75, 227, 213, 0.1), rgba(75, 130, 219, 0.1));
}

.stat-card:nth-child(3) {
  background: linear-gradient(160deg, rgba(255, 142, 120, 0.1), rgba(75, 130, 219, 0.1));
}

.stat-card h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #eaf4ff;
}

.timeline {
  margin-top: 34px;
  display: grid;
  gap: 18px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(#7ab8ff, #235ec9);
}

.timeline-item {
  position: relative;
  padding: 18px 18px 18px 58px;
  border-radius: 14px;
  background: rgba(140, 190, 255, 0.08);
  border: 1px solid rgba(160, 205, 255, 0.26);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(6px);
  border-color: rgba(244, 198, 106, 0.42);
}

.timeline-item span {
  position: absolute;
  left: 7px;
  top: 22px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #2d79f7, #123f97);
  font-size: 0.8rem;
  font-weight: 700;
}

.summary-card {
  max-width: 780px;
  margin: 28px auto 0;
  padding: 28px;
}

.summary-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.summary-card li {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(145, 193, 255, 0.08);
  border: 1px solid rgba(175, 215, 255, 0.28);
}

.summary-card li strong:last-child {
  color: #fff7df;
}

.why-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 14px;
}

.why-item {
  padding: 18px 14px;
  text-align: center;
  font-weight: 600;
  color: #def0ff;
  transition: transform 0.3s ease, background 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  background: rgba(244, 198, 106, 0.1);
}

.why-item i {
  display: block;
  margin-bottom: 9px;
  font-size: 1.15rem;
  color: #9ad1ff;
}

.testimonial-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 198, 106, 0.42);
}

.testimonial-card h4 {
  margin-top: 16px;
}

.testimonial-card span {
  color: #afcdf0;
  font-size: 0.9rem;
}

.faq-item {
  margin-top: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(75, 227, 213, 0.34);
}

.faq-question {
  width: 100%;
  padding: 17px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #edf6ff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
  text-align: left;
}

.faq-question i {
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
}

.contact-info ul {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.contact-info i {
  width: 20px;
  color: #8ac8ff;
  margin-right: 8px;
}

.contact-form {
  padding: 26px;
}

.contact-form label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 600;
  color: #dceeff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(171, 211, 255, 0.32);
  border-radius: 10px;
  background: rgba(230, 243, 255, 0.08);
  color: #eef6ff;
  padding: 12px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(161, 213, 255, 0.74);
  box-shadow: 0 0 0 3px rgba(123, 186, 255, 0.18);
}

.form-status {
  margin-top: 12px;
  min-height: 24px;
  color: #cde4ff;
  font-size: 0.95rem;
}

.form-status.success {
  color: #a6ffcc;
}

.form-status.error {
  color: #ffd1d6;
}

.map-wrap {
  margin-top: 32px;
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(6, 21, 54, 0.32);
}

.footer {
  margin-top: 50px;
  background: linear-gradient(180deg, rgba(10, 35, 90, 0.92), rgba(6, 20, 56, 0.92), rgba(14, 64, 110, 0.88));
  border-top: 1px solid rgba(164, 205, 251, 0.22);
  padding: 46px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.7fr;
  gap: 22px;
}

.footer h4,
.footer h3 {
  margin-bottom: 10px;
}

.footer a {
  display: block;
  color: #d5e8ff;
  margin-bottom: 8px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(154, 203, 255, 0.15);
  border: 1px solid rgba(174, 217, 255, 0.3);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.socials a:hover {
  transform: translateY(-3px) rotate(-4deg);
  background: rgba(244, 198, 106, 0.16);
  border-color: rgba(244, 198, 106, 0.55);
}

.copyright {
  margin-top: 24px;
  text-align: center;
  color: #b6cff0;
  font-size: 0.92rem;
}

#scrollTop {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(170, 213, 255, 0.5);
  background: linear-gradient(150deg, #296edd, #13459f);
  color: #e9f5ff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 400;
}

#scrollTop.show {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(4%) translateY(9%);
  }
}

@keyframes pulseBars {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -12px, 0);
  }
}

.about-image-grid,
.hero-mini-gallery {
  display: grid;
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .about-image-grid,
  .hero-mini-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .lang-toggle {
    margin-inline-start: auto;
  }

  .nav {
    position: fixed;
    top: 84px;
    right: -100%;
    width: min(320px, 86%);
    height: calc(100vh - 84px);
    padding: 28px;
    display: grid;
    gap: 14px;
    align-content: start;
    background: rgba(8, 28, 78, 0.95);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(169, 209, 251, 0.28);
    transition: right 0.3s ease;
  }

  .nav.open {
    right: 0;
  }

  .service-grid,
  .stats-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-image-grid,
  .hero-mini-gallery {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 0;
  }

  .hero-grid {
    padding-top: 90px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .brand-text strong {
    font-size: 0.75rem;
  }

  .brand-text small {
    font-size: 0.58rem;
  }
}

html[dir="rtl"] body {
  font-family: "Tajawal", "Manrope", sans-serif;
}

html[dir="rtl"] .nav-wrap,
html[dir="rtl"] .hero-highlights,
html[dir="rtl"] .hero-actions {
  direction: rtl;
}

html[dir="rtl"] .timeline::before {
  left: auto;
  right: 22px;
}

html[dir="rtl"] .timeline-item {
  padding: 18px 58px 18px 18px;
}

html[dir="rtl"] .timeline-item span {
  left: auto;
  right: 7px;
}

html[dir="rtl"] .contact-info i,
html[dir="rtl"] .hero-highlights i,
html[dir="rtl"] .hero-panel li i {
  margin-right: 0;
  margin-left: 8px;
}

html[dir="rtl"] .faq-question,
html[dir="rtl"] .contact-info,
html[dir="rtl"] .hero-content,
html[dir="rtl"] .about {
  text-align: right;
}

html[dir="rtl"] #scrollTop {
  right: auto;
  left: 20px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
