html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  background-color: #e6e6e6;
}
.bg-pattern {
  position: relative;
  z-index: 1;
}
.bg-pattern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}
.hero-slider-img {
  max-width: 100%;
  height: 100%;
  display: none;
  transition: opacity 1s ease-in-out;
  object-fit: contain;
}
.hero-slider-img.active {
  display: block;
  opacity: 1;
}

.mockup-slider-img {
  max-width: 100%;
  height: 100%;
  display: none;
  transition: opacity 1s ease-in-out;
  object-fit: contain;
}
.mockup-slider-img.active {
  display: block;
  opacity: 1;
}
.app-mockup {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-height: 500px;
  width: 240px;
}
.split-mockup {
  transform: rotate(-10deg);
  transition: transform 0.5s ease-in-out;
}
.split-mockup:hover {
  transform: rotate(-5deg);
}
@keyframes float {
  0% {
    transform: translateY(0px) rotate(5deg);
  }
  50% {
    transform: translateY(-20px) rotate(-5deg);
  }
  100% {
    transform: translateY(0px) rotate(5deg);
  }
}
.floating-mockup {
  animation: float 4s ease-in-out infinite;
}
.fade-in {
  animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.btn-gradient {
  /* background-image: linear-gradient(to right, #46387e 0%, #e99002 100%); */
  background-color: #290f3f;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(233, 144, 2, 0.5);
}
.feature-card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
}

/* RTL-specific styles for Arabic language */
[dir="rtl"] body {
  font-family: "Noto Sans Arabic", sans-serif;
}
[dir="rtl"] .split-mockup {
  transform: rotate(10deg);
}
[dir="rtl"] .split-mockup:hover {
  transform: rotate(5deg);
}
