@font-face {
  font-family: RBold;
  src: url(fonts/ReadexPro-Bold.ttf);
}

@font-face {
  font-family: RExtraLight;
  src: url(fonts/ReadexPro-ExtraLight.ttf);
}

@font-face {
  font-family: RLight;
  src: url(fonts/ReadexPro-Light.ttf);
}

@font-face {
  font-family: RMedium;
  src: url(fonts/ReadexPro-Medium.ttf);
}

@font-face {
  font-family: RRegular;
  src: url(fonts/ReadexPro-Regular.ttf);
}

@font-face {
  font-family: RSemiBold;
  src: url(fonts/ReadexPro-SemiBold.ttf);
}

@font-face {
  font-family: RVariable;
  src: url(fonts/ReadexPro-VariableFont_HEXP\,wght.ttf);
}


:root {
  --color-blue: #3471fd;
  /* ممكن تحافظ عليه لو حاب */
  --color-Dark-Blue: #0f0f31;
  /* جديد */
  --color-light: #efefef;
  /* جديد */
  --color-dark: #000000;
  /* جديد */
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* #region One Section */
.one-section-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 120px;
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.7) 50%, rgba(15, 23, 42, 0.75) 100%);
  z-index: -1;
}

/* Navigation */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0; /* Removed horizontal padding to align with container */
  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 50;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem; /* Moved padding here to match hero container */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

/* Mobile Menu Active State */
/* Animation Keyframes */
@keyframes bounce-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

/* Mobile Menu Active State مع Bounce */
.nav-menu.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 20px;
  background: rgba(15, 23, 42, 0.95);
  padding: 1rem 2rem;
  border-radius: 12px;
  gap: 1rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  z-index: 1000;

  animation: bounce-in 0.5s ease;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: RRegular;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover {
  color: #3b82f6;
  transform: translateY(-1px);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-icon {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 125%;
  left: -85px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 0;
  min-width: 232px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: RRegular;
  font-size: 0.88rem;
  transition: all 0.3s ease;
}

.dropdown-link:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  padding-left: 1rem;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.language-switcher .nav-link.active {
  color: #3b82f6;
  font-weight: 600;
}

.separator {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Content */
.one-section-hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  margin-top: 80px; /* Added margin to account for navbar height */
}

.one-section-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem; /* Ensures same padding as nav-container for perfect alignment */
  width: 100%;
}

.hero-text {
  max-width: 700px;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: RVariable;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  margin-bottom: 1.5rem;
}

.one-section-title-main {
  display: block;
  font-family: RRegular;
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.one-section-title-subtitle {
  display: block;
  font-family: RRegular;
  font-size: 1.5rem;
  font-weight: 500;
  color: #94a3b8;
  line-height: 1.3;
}

.hero-description {
  font-family: RLight;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-description strong {
  color: #60a5fa;
  font-weight: 600;
}

/* Features */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.one-section-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: RRegular;
  font-size: 0.95rem;
  font-weight: 500;
}

.one-section-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  color: #60a5fa;
  backdrop-filter: blur(10px);
}

/* Action Buttons */

.hero-actions{
  display: flex;
  column-gap: 20px
}
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-family: RRegular;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #3471fd 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* #endregion */



/* #region slideshow Section */
.slideshow-container {
  overflow: hidden;
  padding: 20px 0;
  margin-bottom: 120px;
}

.slideshow-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.slideshow-track img {
  height: 90px;
  /* ارتفاع ثابت */
  width: 150px;
  /* عرض ثابت */
  object-fit: contain;
  /* يحافظ على نسب الصورة */
  padding: 10px;
  /* مسافة داخلية */
  border-radius: 8px;
  /* حواف ناعمة */
  box-sizing: border-box;
}


/* الحركة */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

  /* يتحرك نص الطول فقط */
}

/* #endregion */


/* #region two Section */
.two-section-container {
  position: relative;
  padding: 0 1rem 5rem 1rem;
  overflow: hidden;
  margin-bottom: 70px;
}

.container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 5;
}

.head {
  text-align: center;
  margin-bottom: 4rem;
}

.title {
  font-family: RRegular;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.desc {
  font-family: RLight;
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--color-dark);
  line-height: 1.8;
  max-width: 700px;
  margin: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.card {
  background: rgba(52, 113, 253, 0.05);
  /* أزرق فاتح جدًا للشفافية */
  border: 1px solid rgba(15, 15, 49, 0.1);
  /* كحلي داكن خفيف */
  border-left: 4px solid var(--color-blue);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(15, 15, 49, 0.15);
  /* ظل خفيف عند hover */
  border-left: 4px solid var(--color-Dark-Blue);
  /* خط أزرق على اليسار */
}

.icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--color-blue);
  background: var(--color-light);
  box-shadow: 0 6px 15px rgba(15, 15, 49, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

/* لما يصير hover على الكرت، الأيقونة تتأثر كمان */
.card:hover .icon {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 20px rgba(15, 15, 49, 0.2);
  color: var(--color-Dark-Blue);
}


.bg-indigo {
  background: var(--color-light);
  color: var(--color-blue);
}

.bg-purple {
  background: var(--color-light);
  color: var(--color-blue);
}

.bg-blue {
  background: var(--color-light);
  color: var(--color-blue);
}

.bg-green {
  background: var(--color-light);
  color: var(--color-blue);
}

.card-title {
  font-family: RRegular;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--color-dark);
}

.card-text {
  font-family: RLight;
  font-weight: 400;
  font-size: .95rem;
  color: var(--color-Dark-Blue);
}

.platforms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

/* Enhanced platform logos with more interactive effects */
.platforms {
  text-align: center;
  margin-bottom: 4rem;
}

.sub-title {
  font-family: RRegular;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2rem;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.logo-box {
  background: rgba(52, 113, 253, 0.05);
  border: 1px solid #0052cc;
  border-radius: 12px;
  font-family: RVariable;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(52, 113, 253, 0.1), transparent);
  transition: all 0.6s ease;
}

.logo-box:hover::before {
  left: 0;
}

.logo-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.logo-box img {
  width: 70px;
  /* العرض ثابت */
  height: 40px;
  /* الطول ثابت */
  object-fit: contain;
}

.logo-box-hepsiburada {
  background: rgba(52, 113, 253, 0.05);
  border: 1px solid #0052cc;
  border-radius: 12px;
  font-family: RVariable;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo-box-hepsiburada::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(52, 113, 253, 0.1), transparent);
  transition: all 0.6s ease;
}

.logo-box-hepsiburada:hover::before {
  left: 0;
}

.logo-box-hepsiburada:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  filter: grayscale(0);
}


.logo-box-hepsiburada img {
  width: 120px;
  /* العرض ثابت */
  height: 80px;
  /* الطول ثابت */
  object-fit: contain;
  /* تحافظ على نسبة الصورة */
}


.cta {
  text-align: center;
}

.btn {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f0f31 100%);
  color: #ffffff;
  font-family: RRegular;
  font-size: 1.2rem;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
  overflow: hidden;
  /* مهم عشان ما يطلع الوميض برا */
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
}

.btn:hover::after {
  left: 125%;
  transition: left 0.7s ease;
}




.note {
  margin-top: 1rem;
  font-family: RVariable;
  font-size: 1rem;
  color: var(--color-dark);
}

/* حركات */
.fade-up {
  transform: translateY(30px);
  transition: all .8s ease-out;
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.bg-shapes {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.shape {
  border-radius: 50%;
  position: absolute;
  animation: floating 3s ease-in-out infinite;
}

.s1 {
  top: 10%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: var(--color-blue);
  animation: floating 3s ease-in-out infinite;
}

.s2 {
  top: 30%;
  right: 23%;
  width: 60px;
  height: 60px;
  background: var(--color-blue);
  animation: floating 4s ease-in-out infinite;
}

.s3 {
  bottom: 20%;
  left: 20%;
  width: 48px;
  height: 48px;
  background: var(--color-blue);
  animation: floating 2.5s ease-in-out infinite;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-50px);
    /* زيادة الحركة */
  }
}


/* #endregion */


/* #region three Section */
.three-section-container-all {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}

.three-section-container-all::before {
  display: none;
}

.three-section-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.content {
  background: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 4rem 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.content.animate {
  opacity: 1;
  transform: translateY(0);
}

.main-title {
  font-family: RRegular;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.subtitle {
  font-family: RLight;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin: 4rem 0;
}

.feature-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(15, 15, 49, 0.08);
  border-left: 4px solid var(--color-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 15, 49, 0.15);
  border-left-color: var(--color-Dark-Blue);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: var(--color-blue);
  box-shadow: 0 8px 20px rgba(15, 15, 49, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

/* لما يصير هوفر على الكرت، الأيقونة تتأثر كمان */
.feature-card:hover .feature-icon {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(15, 15, 49, 0.4);
  color: var(--color-Dark-Blue);
}



.feature-title {
  font-family: RRegular;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.feature-desc {
  color: var(--color-dark);
  font-family: RLight;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-button {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f0f31 100%);
  color: #ffffff;
  font-family: RRegular;
  font-size: 1.2rem;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
  overflow: hidden;
  /* مهم عشان الوميض ما يطلع برا */
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
}

.cta-button:hover::after {
  left: 125%;
  transition: left 0.7s ease;
}

/* إزالة تغيير اللون والخلفية عند hover */
.cta-button:hover {
  box-shadow: 0 15px 40px rgba(52, 113, 253, 0.2);
}



.stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: RVariable;
  font-size: 3.5rem;
  color: var(--color-dark);
  display: block;
}

.stat-label {
  color: var(--color-dark);
  font-family: RLight;
  font-weight: 400;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}


/* #endregion */


/* #region four Section */
.four-section-all {
  background: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.four-section-all::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(212,5,17,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.four-section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.four-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.four-section-title {
  font-family: RRegular;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-dark);
  text-shadow: 2px 2px 4px rgba(0, 196, 140, 0.1);
  /* الظل باللون الأخضر */
  margin-bottom: 20px;
  line-height: 1.2;
}

.four-section-subtitle {
  font-family: RLight;
  font-size: 1.3rem;
  color: var(--color-dark);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: none;
}

.four-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.four-section-features-list {
  list-style: none;
}

.four-section-feature-item {
  background: #ffffff;
  /* خلفية فاتحة للنصوص */
  border: 2px solid #ffffff;
  /* نفس لون الخلفية لتكون متناسقة */
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(52, 113, 253, 0.2);
  /* ظل أزرق فاتح متناسق */
  position: relative;
  border-left: 4px solid #0f0f31;
  /* خط كحلي غامق على اليسار */
}

.four-section-feature-item:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-left-color: #3471fd;
  /* يتحول الخط للأزرق عند hover */
  box-shadow: 0 15px 40px rgba(15, 15, 49, 0.15);
  /* ظل كحلي داكن عند hover */
}



.four-section-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3471fd, #0f0f31);
  /* تدرج أزرق → كحلي داكن */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  /* نص أبيض واضح */
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.four-section-feature-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(15, 15, 49, 0.3);
  /* ظل خفيف عند hover متناسق مع الهوية */
}


.four-section-feature-text {
  color: var(--color-dark);
  font-family: RRegular;
  font-size: 1.2rem;
}

.four-section-showcase {
  text-align: center;
  position: relative;
}

.four-section-logo {
  width: 200px;
  height: 120px;
  background: linear-gradient(135deg, #3471fd, #0f0f31);
  /* تدرج أزرق → كحلي داكن */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 15px 40px rgba(15, 15, 49, 0.2);
  /* ظل خفيف متناسق مع الهوية */
  font-family: RVariable;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  /* نص أبيض واضح */
  letter-spacing: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.four-section-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(15, 15, 49, 0.3);
  /* ظل أكبر عند hover */
}


.four-section-shipping {
  width: 100%;
  max-width: 400px;
  height: 250px;
  background: linear-gradient(135deg, #3471fd, #0f0f31);
  /* تدرج أزرق → كحلي داكن */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #ffffff;
  /* نص أبيض واضح */
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(15, 15, 49, 0.2);
  /* ظل خفيف متناسق مع الهوية */
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.four-section-shipping:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(15, 15, 49, 0.3);
  /* ظل أكبر عند hover */
}


.fa-solid,
.fa-truck {
  font-size: 4rem;
}

.four-section-truck {
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--color-light);
  animation: four-section-drive 4s ease-in-out infinite;
}

@keyframes four-section-drive {
  0% {
    left: -100px;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    left: calc(100% + 50px);
    opacity: 0;
  }
}

.four-section-cta {
  text-align: center;
}

.four-section-button {
  position: relative;
  /* مهم للـ ::after */
  display: inline-block;
  background: linear-gradient(135deg, #1e3a8a 0%, #0f0f31 100%);
  color: #ffffff;
  font-family: RRegular;
  font-size: 1.2rem;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  overflow: hidden;
  /* يمنع الوميض من الخروج */
  transition: box-shadow 0.3s ease;
}

.four-section-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
  /* مهم عشان لا يمنع الضغط على الزر */
}

.four-section-button:hover::after {
  left: 125%;
  transition: left 0.7s ease;
}

/* الحفاظ على الخلفية الأصلية عند hover */
.four-section-button:hover {
  box-shadow: 0 15px 40px rgba(52, 113, 253, 0.2);
}

س .four-section-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.four-section-floating-box {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(52, 113, 253, 0.1);
  /* أزرق فاتح شفاف */
  border: 2px solid rgba(52, 113, 253, 0.3);
  /* نفس اللون للحدود */
  border-radius: 8px;
  animation: four-section-float 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

@keyframes four-section-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(15deg);
  }
}


.four-section-floating-box:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.four-section-floating-box:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.four-section-floating-box:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes four-section-float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* #endregion */


/* #region Footer Section */
.footer {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f0f31 100%);
  padding: 60px 0 30px;
  border-top: 1px solid #e2e8f0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  opacity: 0;
  transform: translateY(30px);
  animation: floatUp 0.8s ease-out forwards;
}

.footer-column:nth-child(1) {
  animation-delay: 0.2s;
}

.footer-column:nth-child(2) {
  animation-delay: 0.4s;
}

.footer-column:nth-child(3) {
  animation-delay: 0.6s;
}

.footer-column:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes floatUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-column h3 {
  color: var(--color-light);
  font-family: RRegular;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    text-shadow: 0 0 5px rgba(96, 165, 250, 0.3);
  }

  50% {
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.6), 0 0 30px rgba(96, 165, 250, 0.4);
  }
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #60a5fa, transparent);
  animation: slideIn 2s ease-in-out infinite;
}

@keyframes slideIn {
  0% {
    left: -100%;
  }

  50% {
    left: 0%;
  }

  100% {
    left: 100%;
  }
}

/* Logo and Description Column */
.logo-section .logo {
  display: inline-block;
  font-family: RRegular;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-light);
  text-decoration: none;
  margin-top: -8px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {

  0%,
  100% {
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    transform: scale(1);
  }

  50% {
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.8), 0 0 30px rgba(96, 165, 250, 0.6);
    transform: scale(1.02);
  }
}

.logo-section .logo:hover {
  color: #60a5fa;
  transform: scale(1.05);
}

.logo-section p {
  color: #d1d5db;
  font-family: RLight;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Navigation Links */
.nav-links ul {
  list-style: none;
}

.nav-links li {
  margin-bottom: 12px;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInSlide 0.6s ease-out forwards;
}

.nav-links li:nth-child(1) {
  animation-delay: 0.1s;
}

.nav-links li:nth-child(2) {
  animation-delay: 0.2s;
}

.nav-links li:nth-child(3) {
  animation-delay: 0.3s;
}

.nav-links li:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-links a {
  position: relative;
  display: inline-block;
  color: #d1d5db;
  text-decoration: none;
  font-family: RRegular;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #60a5fa;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #60a5fa;
  animation: bounce 0.6s ease;
}

.nav-links a:hover::before {
  width: 100%;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-3px);
  }

  60% {
    transform: translateY(-2px);
  }
}

/* Added simple dropdown functionality for services */
.nav-links .services-toggle {
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 30px;
  cursor: pointer;
  color: #d1d5db;
  font-family: RRegular;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links .services-toggle::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #60a5fa;
  transition: width 0.3s ease;
}

.nav-links .services-toggle:hover {
  color: #60a5fa;
  transform: translateX(5px);
}

.nav-links .services-toggle::after {
  content: '▼';
  font-size: 0.8rem;
  color: #60a5fa;
  transition: transform 0.3s ease;
}

.nav-links .services-toggle.open::after {
  transform: rotate(180deg);
}

.nav-links .dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-left: 15px;
  margin-top: 8px;
}

.nav-links .dropdown.open {
  max-height: 150px;
}

.nav-links .dropdown li {
  margin-bottom: 8px;
}

.nav-links .dropdown a {
  font-family: RRegular;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #d1d5db;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  animation: socialFloat 3s ease-in-out infinite;
}

.social-icon:nth-child(1) {
  animation-delay: 0s;
}

.social-icon:nth-child(2) {
  animation-delay: 0.5s;
}

.social-icon:nth-child(3) {
  animation-delay: 1s;
}

.social-icon:nth-child(4) {
  animation-delay: 1.5s;
}

.social-icon:nth-child(5) {
  animation-delay: 2s;
}

.social-icon:nth-child(6) {
  animation-delay: 2.5s;
}

@keyframes socialFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.social-icon:hover {
  background-color: #60a5fa;
  color: white;
  transform: translateY(-2px) scale(1.1);
  animation: socialHover 0.6s ease;
  box-shadow: 0 5px 15px rgba(96, 165, 250, 0.4);
}

@keyframes socialHover {
  0% {
    transform: translateY(-2px) scale(1.1) rotate(0deg);
  }

  50% {
    transform: translateY(-2px) scale(1.1) rotate(180deg);
  }

  100% {
    transform: translateY(-2px) scale(1.1) rotate(360deg);
  }
}

/* Contact Information */
.contact-info p {
  color: #d1d5db;
  margin-bottom: 15px;
  font-family: RLight;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateX(20px);
  animation: slideInRight 0.6s ease-out forwards;
}

.contact-info p:nth-child(1) {
  animation-delay: 1s;
}

.contact-info p:nth-child(2) {
  animation-delay: 1.2s;
}

.contact-info p:nth-child(3) {
  animation-delay: 1.4s;
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-info i {
  color: #60a5fa;
  margin-top: 2px;
  min-width: 16px;
  transition: transform 0.3s ease;
}

.contact-info i:hover {
  transform: rotate(360deg);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease-out 2s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.footer-bottom p {
  color: var(--color-light);
  font-family: RLight;
  font-size: 0.9rem;
  animation: typewriter 2s steps(40) 2.5s forwards;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  margin: 0 auto;
}

.contact-info a {
  color: #ffffff;
  /* أبيض */
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #3471fd;
  /* أزرق فاتح عند الهوفر */
}

@keyframes typewriter {
  to {
    width: 100%;
  }
}

/* #endregion */


.whatsapp-float {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 70px;          
    height: 70px;          
    background-color: var(--color-blue);
    color: var(--color-light);
    border-radius: 50%;
    text-align: center;
    line-height: 70px;  
    font-size: 2.5rem;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
    animation: whatsapp-bounce 2s infinite;
}

@keyframes whatsapp-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}






/* Responsive */

@media (min-width: 1200px) {

  /* #region two Section */
  .about-section {
    padding: 8rem 2rem;
  }

  .content {
    padding: 5rem 4rem;
  }

  .main-title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }

  .subtitle {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }

  /* #endregion */

  /* #region three Section */
  .features-grid {
    gap: 3rem;
    margin: 5rem 0;
  }

  .stats {
    gap: 5rem;
    margin: 4rem 0;
  }

  /* #endregion */

}

@media (max-width: 1199px) and (min-width: 769px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {


  /* #region one Section */
  .nav-container,
  .one-section-hero-container {
    padding: 0 1rem; /* Consistent mobile padding for both logo and hero */
  }

  .one-section-hero-content {
    margin-top: 70px; /* Adjusted for mobile navbar height */
  }


  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-container {
    padding: 0 1.5rem;
  }

  .title-main {
    font-size: 2.5rem;
  }

  .title-subtitle {
    font-size: 1.25rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    row-gap: 20px
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    width: 100%;
  }

  .scroll-indicator {
    display: none;
  }

  /* #endregion */

  /* #region three Section */
  .main-title {
    font-size: 1ظ5rem;
  }

  .content {
    padding: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats {
    gap: 2rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .feature-title {
    font-size: 1.3rem;
  }

  .feature-desc {
    font-size: 0.95rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  /* #endregion */

  /* #region four Section */

  .four-section-title {
    font-size: 2.5rem;
  }

  .four-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .four-section-feature-item {
    padding: 20px;
  }

  .four-section-logo {
    width: 150px;
    height: 90px;
    font-size: 2rem;
  }

  /* #endregion */

  /* #region Footer Section */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer-container {
    padding: 0 15px;
  }

  .social-icons {
    justify-content: center;
  }

  .demo-content h1 {
    font-size: 2rem;
  }

  .demo-content p {
    font-size: 1rem;
  }

  /* #endregion */

}

@media (max-width: 480px) {

  /* #region one Section */
  .nav-container {
    padding: 0 1rem;
  }

  .hero-content {
    padding: 2rem 0;
  }

  .title-main {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  /* #endregion */


  /* #region Footer Section */
  .footer-column h3 {
    font-size: 1.1rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  /* #endregion */

}