html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
}

html[lang="ar"] body {
  font-family: 'Cairo', sans-serif;
}

.glass-nav {
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-backdrop {
  background:
    linear-gradient(120deg, rgba(2, 6, 23, 0.82), rgba(4, 120, 87, 0.62)),
    url('https://images.unsplash.com/photo-1498837167922-ddd27525d352?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.section-sheen {
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.10), transparent 0, transparent 30%),
    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.10), transparent 0, transparent 28%);
}

.image-lift img {
  transition: transform 0.7s ease;
}

.image-lift:hover img {
  transform: scale(1.06);
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.client-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .quick-actions,
html[dir="rtl"] .contact-shortcuts,
html[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

html[dir="rtl"] input,
html[dir="rtl"] textarea {
  text-align: right;
}
