.start-btn {
  background: #6366f1;
  border: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 8px 10px !important;
  position: relative;
  overflow: hidden;
  background-color: #6366f1;
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.start-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.start-btn:hover {
  background-color: rgb(75.6, 79.05, 238.9);
  transform: scale(1.05);
}
.start-btn:hover::after {
  left: 125%;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Tajawal", "Almarai", sans-serif;
  font-weight: 400;
  color: #111827;
  line-height: 1.6;
}
body.ltr {
  font-family: "Inter", system-ui, sans-serif;
}

.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 0;
}
.navbar .navbar-toggler:focus {
  outline: none;
}
.navbar .navbar-nav {
  gap: 0.5rem;
}
@media (max-width: 991px) {
  .navbar .navbar-nav {
    gap: 0;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
  }
}
.navbar .nav-link {
  font-weight: 500;
  color: #111827 !important;
  padding: 0.5rem 1.5rem !important;
  margin: 0 0.25rem;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}
@media (max-width: 991px) {
  .navbar .nav-link {
    margin: 0.2rem 0;
    padding: 0.75rem 1.5rem !important;
    border-radius: 12px;
  }
  .navbar .nav-link:hover, .navbar .nav-link.active {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
    border-radius: 15px;
  }
  .navbar .nav-link:hover::after, .navbar .nav-link.active::after {
    width: 0;
  }
}
@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}
.navbar .nav-link.active {
  color: #6366f1 !important;
  background: rgba(99, 102, 241, 0.12);
  font-weight: 600;
}
.navbar .nav-link.active::after {
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
}
.navbar .nav-link:hover {
  color: #6366f1 !important;
  background: rgba(99, 102, 241, 0.12);
  font-weight: 600;
}
.navbar .nav-link:hover::after {
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
}
.navbar .nav-link:focus {
  outline: none;
}
.navbar .btn-primary {
  background: #6366f1;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.navbar .btn-primary:hover {
  background: #4f46e5;
  transform: translateY(-1px);
}
body.rtl .navbar .navbar-nav {
  direction: rtl;
}
body.rtl .navbar .navbar-brand {
  margin-right: 0;
  margin-left: auto;
}

.hero-section {
  padding: 120px 0 80px;
  background: #f8fafc;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-section .hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero-section .hero-title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.1;
  color: #111827;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-title {
    font-size: 2rem;
  }
}
.hero-section .hero-subtitle {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 500px;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-section .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.hero-image img {
  width: 420px;
  max-width: 90vw;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s;
  will-change: transform;
}
.hero-image img:hover {
  transform: scale(1.08) rotate(-2deg) translateY(-10px);
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.18);
  filter: brightness(1.08) saturate(1.2);
}
@media (max-width: 991px) {
  .hero-image {
    margin-top: 3rem;
  }
  .hero-image img {
    width: 320px;
  }
}
@media (max-width: 576px) {
  .hero-image img {
    width: 90vw;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
  }
  .hero-section {
    padding: 100px 0 60px;
  }
  .hero-section .hero-title {
    font-size: 2.5rem;
  }
  .dashboard-mockup {
    max-width: 500px;
  }
  .right-nav-button {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media (max-width: 767.98px) {
  .hero-section {
    text-align: center;
  }
  .hero-section .hero-content {
    text-align: center !important;
  }
  .hero-section .hero-title {
    font-size: 2rem;
  }
  .hero-section .hero-subtitle {
    max-width: none;
  }
  .dashboard-mockup {
    max-width: 400px;
  }
  .stat-card .stat-number {
    font-size: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .hero-section {
    padding: 80px 0 40px;
  }
  .hero-section .hero-title {
    font-size: 1.75rem;
  }
  .hero-section .hero-subtitle {
    font-size: 1rem;
  }
  .browser-content {
    padding: 16px;
  }
  .dashboard-mockup {
    max-width: 320px;
  }
}
/* Hero Section Button Styles */
.btn-primary-custom {
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  border: none;
  color: white;
  padding: 12px 32px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-right: 10px;
}
.btn-primary-custom:hover {
  background: linear-gradient(45deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  color: white;
}
.btn-primary-custom:focus {
  outline: none;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3), 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.btn-primary-custom:active {
  transform: translateY(0);
}

.btn-link-custom {
  background: transparent;
  border: 2px solid #6b7280;
  color: #374151;
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-link-custom:hover {
  border-color: #3b82f6;
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.05);
  transform: translateY(-1px);
}
.btn-link-custom:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.btn-link-custom:active {
  transform: translateY(0);
}

[data-theme=dark] .btn-link-custom {
  color: #e5e7eb;
  border-color: #9ca3af;
}
[data-theme=dark] .btn-link-custom:hover {
  border-color: #60a5fa;
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.1);
}

@media (max-width: 768px) {
  .btn-primary-custom,
  .btn-link-custom {
    padding: 10px 24px;
    font-size: 14px;
    margin: 5px;
  }
}
/* End Hero Section Button Styles */
.hero-section {
  margin-bottom: 0;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .hero-section {
    padding-bottom: 30px;
  }
}

.phones-gallery {
  background: #f8fafc;
  overflow: hidden;
  position: relative;
  margin-top: 0;
}
@media (max-width: 768px) {
  .phones-gallery {
    padding: 40px 0;
  }
}
@media (max-width: 576px) {
  .phones-gallery {
    padding: 30px 0;
  }
}
.phones-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.05), transparent 50%);
  pointer-events: none;
}
.phones-gallery::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}
[dir=rtl] .phones-gallery::after {
  background: linear-gradient(to left, #f8fafc 0%, transparent 15%, transparent 85%, #f8fafc 100%);
}
[dir=ltr] .phones-gallery::after {
  background: linear-gradient(to right, #f8fafc 0%, transparent 15%, transparent 85%, #f8fafc 100%);
}
.phones-gallery .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
}
@media (max-width: 1200px) {
  .phones-gallery .container {
    padding: 0 80px;
  }
}
@media (max-width: 768px) {
  .phones-gallery .container {
    padding: 0 60px;
  }
}
@media (max-width: 576px) {
  .phones-gallery .container {
    padding: 0 40px;
  }
}

.phones-slider {
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 300%;
}
[dir=rtl] .phones-slider {
  flex-direction: row-reverse;
  animation: infiniteScrollRTL 35s linear infinite;
}
[dir=ltr] .phones-slider {
  animation: infiniteScrollLTR 35s linear infinite;
}
.phones-slider:hover {
  animation-play-state: paused;
}
@media (max-width: 1200px) {
  .phones-slider {
    gap: 35px;
  }
}
@media (max-width: 768px) {
  .phones-slider {
    gap: 25px;
    width: 300%;
  }
  [dir=rtl] .phones-slider {
    animation-duration: 30s;
  }
  [dir=ltr] .phones-slider {
    animation-duration: 30s;
  }
}
@media (max-width: 576px) {
  .phones-slider {
    gap: 20px;
  }
  [dir=rtl] .phones-slider {
    animation-duration: 25s;
  }
  [dir=ltr] .phones-slider {
    animation-duration: 25s;
  }
}

.phone-item {
  flex: 0 0 auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 768px) {
  .phone-item {
    padding: 20px;
    border-radius: 20px;
  }
}
@media (max-width: 576px) {
  .phone-item {
    padding: 15px;
    border-radius: 15px;
  }
}
.phone-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  transition: left 0.6s ease;
}

.phone-img {
  height: 120px;
  width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
}
@media (max-width: 1200px) {
  .phone-img {
    height: 100px;
    width: 100px;
  }
}
@media (max-width: 768px) {
  .phone-img {
    height: 80px;
    width: 80px;
  }
}
@media (max-width: 576px) {
  .phone-img {
    height: 80px;
    width: 80px;
  }
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
.phone-item:nth-child(n+7):nth-child(-n+12) {
  opacity: 1;
}

.phone-item:nth-child(n+13):nth-child(-n+18) {
  opacity: 1;
}

@media (max-width: 768px) {
  .phones-gallery {
    padding: 40px 0;
  }
  .phones-slider {
    gap: 20px;
    animation-duration: 25s;
    width: 300%;
  }
  .phone-item {
    padding: 15px;
    border-radius: 15px;
  }
}
@media (max-width: 576px) {
  .phones-slider {
    animation-duration: 20s;
    gap: 15px;
  }
}
@keyframes infiniteScrollRTL {
  0% {
    transform: translateX(33.333%);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
@keyframes infiniteScrollLTR {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
.about-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .about-section {
    padding: 40px 0;
  }
}
.about-section .row {
  align-items: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .about-section .row {
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .about-section .row {
    gap: 1.5rem;
  }
}
body.rtl .about-section .row .col-lg-6:first-child {
  text-align: right;
  padding-right: 3rem;
}
@media (max-width: 768px) {
  body.rtl .about-section .row .col-lg-6:first-child {
    padding-right: 2rem;
  }
}
@media (max-width: 576px) {
  body.rtl .about-section .row .col-lg-6:first-child {
    padding-right: 1rem;
  }
}
body.rtl .about-section .row .col-lg-6:first-child h2 {
  text-align: right;
}
body.rtl .about-section .row .col-lg-6:first-child p {
  text-align: right;
}
body.rtl .about-section .row .col-lg-6:first-child .about-btn {
  margin-right: 0;
  margin-left: 0;
}
body.rtl .about-section .row .col-lg-6:last-child {
  padding-left: 3rem;
}
@media (max-width: 768px) {
  body.rtl .about-section .row .col-lg-6:last-child {
    padding-left: 2rem;
  }
}
@media (max-width: 576px) {
  body.rtl .about-section .row .col-lg-6:last-child {
    padding-left: 1rem;
  }
}
body.rtl .about-section .row .col-lg-6:last-child .image-container {
  justify-content: flex-start !important;
}
body.ltr .about-section .row .col-lg-6:first-child {
  text-align: left;
  padding-left: 3rem;
}
@media (max-width: 768px) {
  body.ltr .about-section .row .col-lg-6:first-child {
    padding-left: 2rem;
  }
}
@media (max-width: 576px) {
  body.ltr .about-section .row .col-lg-6:first-child {
    padding-left: 1rem;
  }
}
body.ltr .about-section .row .col-lg-6:first-child h2 {
  text-align: left;
}
body.ltr .about-section .row .col-lg-6:first-child p {
  text-align: left;
}
body.ltr .about-section .row .col-lg-6:last-child {
  padding-right: 3rem;
}
@media (max-width: 768px) {
  body.ltr .about-section .row .col-lg-6:last-child {
    padding-right: 2rem;
  }
}
@media (max-width: 576px) {
  body.ltr .about-section .row .col-lg-6:last-child {
    padding-right: 1rem;
  }
}
body.ltr .about-section .row .col-lg-6:last-child .image-container {
  justify-content: flex-end !important;
}
.about-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .about-section h2 {
    font-size: 2rem;
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .about-section h2 {
    font-size: 1.75rem;
  }
}
.about-section p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .about-section p {
    text-align: center !important;
    font-size: 1rem;
  }
}
.about-section .image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
@media (max-width: 768px) {
  .about-section .image-container {
    justify-content: center !important;
    margin-top: 2rem;
  }
}
.about-section .image-container .floating-image {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-section .image-container .floating-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.about-section .about-btn {
  position: relative;
  overflow: hidden;
  background-color: #6366f1;
  color: #fff;
  border-radius: 10px;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}
.about-section .about-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.about-section .about-btn:hover {
  background-color: rgb(75.6, 79.05, 238.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
  color: #fff;
  text-decoration: none;
}
.about-section .about-btn:hover::after {
  left: 125%;
}
@media (max-width: 768px) {
  .about-section .about-btn {
    display: block;
    margin: 0 auto;
    text-align: center;
    margin-top: 30px;
  }
}
.about-section::before {
  content: "";
  position: absolute;
  top: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
body.rtl .about-section::before {
  left: -20%;
}
body.ltr .about-section::before {
  right: -20%;
}
.about-section:nth-of-type(2) {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}
body.rtl .about-section:nth-of-type(2) .row {
  flex-direction: row-reverse;
}
body.rtl .about-section:nth-of-type(2) .col-lg-6:first-child {
  order: 2;
  text-align: left;
  padding-left: 2rem;
  padding-right: 1rem;
}
body.rtl .about-section:nth-of-type(2) .col-lg-6:last-child {
  order: 1;
  padding-right: 2rem;
  padding-left: 1rem;
}
body.ltr .about-section:nth-of-type(2) .col-lg-6:first-child {
  order: 2;
  text-align: right;
  padding-right: 2rem;
  padding-left: 1rem;
}
body.ltr .about-section:nth-of-type(2) .col-lg-6:last-child {
  order: 1;
  padding-left: 2rem;
  padding-right: 1rem;
}
.about-section:nth-of-type(2)::before {
  top: -30%;
}
body.rtl .about-section:nth-of-type(2)::before {
  right: -20%;
  left: auto;
}
body.ltr .about-section:nth-of-type(2)::before {
  left: -20%;
  right: auto;
}
@media (max-width: 991px) {
  .about-section {
    padding: 80px 0;
  }
  .about-section .col-lg-6 {
    padding: 1rem !important;
    text-align: center !important;
  }
  .about-section .col-lg-6:first-child {
    order: 1 !important;
    margin-bottom: 2rem;
  }
  .about-section .col-lg-6:last-child {
    order: 2 !important;
  }
  .about-section h2,
  .about-section p {
    text-align: center !important;
  }
}
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  .about-section .image-container {
    min-height: 200px;
  }
}
.about-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.about-section .container {
  position: relative;
  z-index: 2;
}
.about-section .row {
  align-items: center;
  min-height: 60vh;
}
.about-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
}
body.rtl .about-section h2 {
  font-family: "Tajawal", "Almarai", sans-serif;
}
body.ltr .about-section h2 {
  font-family: "Inter", system-ui, sans-serif;
}
.about-section h2 span.highlight {
  background: linear-gradient(45deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-section p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 2.5rem;
  max-width: 90%;
}
body.rtl .about-section p {
  font-family: "Tajawal", "Almarai", sans-serif;
}
body.ltr .about-section p {
  font-family: "Inter", system-ui, sans-serif;
}
.about-section .image-container {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section .image-container .floating-image {
  position: absolute;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-section .image-container .floating-image:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}
.about-section .image-container .floating-image:first-child {
  width: 300px;
  height: auto;
  z-index: 1;
  animation: floatSlow 6s ease-in-out infinite;
}
body.rtl .about-section .image-container .floating-image:first-child {
  top: 20px;
  right: 40px;
}
body.ltr .about-section .image-container .floating-image:first-child {
  top: 20px;
  left: 40px;
}
.about-section .image-container .floating-image:last-child {
  width: 220px;
  height: auto;
  z-index: 3;
  animation: floatFast 4s ease-in-out infinite;
}
body.rtl .about-section .image-container .floating-image:last-child {
  bottom: 30px;
  left: 30px;
}
body.ltr .about-section .image-container .floating-image:last-child {
  bottom: 30px;
  right: 30px;
}
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-15px) rotate(1deg);
  }
  66% {
    transform: translateY(-8px) rotate(-0.5deg);
  }
}
@keyframes floatFast {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(-1deg);
  }
}
@media (max-width: 1200px) {
  .about-section .image-container {
    height: 450px;
  }
  .about-section .image-container .floating-image:first-child {
    width: 280px;
  }
  .about-section .image-container .floating-image:last-child {
    width: 200px;
  }
}
@media (max-width: 992px) {
  .about-section {
    padding: 80px 0;
  }
  .about-section .row {
    min-height: auto;
  }
  .about-section .image-container {
    height: 400px;
    margin-top: 3rem;
  }
  .about-section .image-container .floating-image:first-child {
    width: 250px;
  }
  body.rtl .about-section .image-container .floating-image:first-child {
    top: 10px;
    right: 20px;
  }
  body.ltr .about-section .image-container .floating-image:first-child {
    top: 10px;
    left: 20px;
  }
  .about-section .image-container .floating-image:last-child {
    width: 180px;
  }
  body.rtl .about-section .image-container .floating-image:last-child {
    bottom: 20px;
    left: 20px;
  }
  body.ltr .about-section .image-container .floating-image:last-child {
    bottom: 20px;
    right: 20px;
  }
  .about-section h2 {
    text-align: center;
    margin-bottom: 1rem;
  }
  .about-section p {
    text-align: center;
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .about-section .btn-primary-custom {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  .about-section .image-container {
    height: 320px;
  }
  .about-section .image-container .floating-image:first-child {
    width: 200px;
  }
  body.rtl .about-section .image-container .floating-image:first-child {
    top: 5px;
    right: 15px;
  }
  body.ltr .about-section .image-container .floating-image:first-child {
    top: 5px;
    left: 15px;
  }
  .about-section .image-container .floating-image:last-child {
    width: 150px;
  }
  body.rtl .about-section .image-container .floating-image:last-child {
    bottom: 15px;
    left: 15px;
  }
  body.ltr .about-section .image-container .floating-image:last-child {
    bottom: 15px;
    right: 15px;
  }
}
@media (max-width: 576px) {
  .about-section {
    padding: 50px 0;
  }
  .about-section .image-container {
    height: 280px;
  }
  .about-section .image-container .floating-image:first-child {
    width: 180px;
  }
  body.rtl .about-section .image-container .floating-image:first-child {
    top: 0;
    right: 10px;
  }
  body.ltr .about-section .image-container .floating-image:first-child {
    top: 0;
    left: 10px;
  }
  .about-section .image-container .floating-image:last-child {
    width: 130px;
  }
  body.rtl .about-section .image-container .floating-image:last-child {
    bottom: 10px;
    left: 10px;
  }
  body.ltr .about-section .image-container .floating-image:last-child {
    bottom: 10px;
    right: 10px;
  }
  .about-section .About {
    margin-top: 20px;
  }
  .about-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .about-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.stats-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 60px 20px;
  flex-wrap: wrap;
}
.stats-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.stats-section .stat {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 300px;
}
.stats-section .stat h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  white-space: nowrap;
}
.stats-section .stat p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
[dir=rtl] .stats-section .stat h2 {
  font-size: 40px;
  font-family: "Tajawal", sans-serif;
}
[dir=rtl] .stats-section .stat p {
  font-size: 16px;
  font-family: "Tajawal", sans-serif;
  font-weight: 500;
  text-align: right;
}
[dir=ltr] .stats-section .stat p {
  text-align: left;
}

@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    text-align: center;
  }
  .stats-section .stat {
    flex-direction: column;
    gap: 8px;
  }
}
html[dir=rtl] body {
  font-family: "Tajawal", "Almarai", sans-serif;
  text-align: right;
}

html[dir=ltr] body {
  font-family: "Inter", system-ui, sans-serif;
  text-align: left;
}/*# sourceMappingURL=style.css.map */