body {
    font-family: 'Cairo', sans-serif;
    background: #f9f9f9;
    color: #333;
    scroll-behavior: smooth;
  }
  
  .hero {
    background: linear-gradient(135deg, #30b7b1, #28a8a2, #178a85);
    background-size: 400% 400%;
    animation: gradientFlow 12s ease infinite;
  }
  
  @keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  .colors {
    color: #178a85;
  }

  .curve-dotted-divider {
    width: 100%;
    height: 80px;
    overflow: hidden;
    margin-top: 4rem;
    margin-bottom: 2rem;
  }
  
  .curve-dotted-divider svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  
  .section {
    padding: 80px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .feature-box, .step-box, .cta-box, .card-custom {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
  }
  
  .feature-icon, .step-icon {
    font-size: 2rem;
    color: #10646b;
    margin-bottom: 15px;
  }
  
  footer {
    background: #10646b;
    color: #fff;
    padding: 50px 0 30px;
  }
  
  .video-floating-box {
    position: absolute;
    bottom: -250px; 
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    z-index: 10;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  }
  
  @media (max-width: 767.98px) {
    .video-floating-box {
      bottom: -20px; 
      padding: 16px;
      border-radius: 16px;
    }
  }
  

  .hero .container {
    margin-top: -240px; 
  }
  
  .video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
  }
  
  .video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top right, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
  }
  
  
  .social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.2rem;
  }

  .zigzag-path {
    position: absolute;
    top: 130px;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
  }
  
  .zigzag-steps {
    position: relative;
    height: 220px;
    margin-bottom: 60px;
  }
  
  .step {
    position: absolute;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    max-width: 200px;
  }
  
  .workflow-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10646b, #28a8a2);
    color: #fff;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 8px 18px rgba(0, 100, 107, 0.25);
    transition: transform 0.3s ease;
  }
  
  .workflow-icon:hover {
    transform: scale(1.1);
  }
  
  @media (max-width: 767px) {
    .workflow-icon {
      width: 65px;
      height: 65px;
      font-size: 24px;
    }
  }

  body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .features-section {
    padding: 60px 20px;
    background-color: #fff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .main-title {
    text-align: center;
    font-size: 32px;
    color: #10646b;
    margin-bottom: 10px;
  }
  
  .subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
  }
  
  .feature-card {
    background: linear-gradient(145deg, #e6f4f5, #fefefe);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
  
  .feature-card .icon {
    font-size: 30px;
    color: #10646b;
    margin-bottom: 15px;
  }
  
  .feature-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #10646b;
  }
  
  .feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
  }

  .stats-section {
    background-color: #f8fafa;
    padding: 80px 20px;
    text-align: center;
  }
  
  .stats-section .section-title {
    font-size: 32px;
    color: #10646b;
    margin-bottom: 10px;
  }
  
  .stats-section .section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .stat-box {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .stat-box:hover {
    transform: scale(1.05);
  }
  
  .stat-box .icon {
    font-size: 30px;
    color: #28a8a2;
    margin-bottom: 15px;
  }
  
  .stat-box h3 {
    font-size: 36px;
    color: #10646b;
    margin: 0;
    font-weight: bold;
  }
  
  .stat-box p {
    margin-top: 10px;
    color: #666;
    font-size: 16px;
  }

  .features-background {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .features-background::before {
    content: "";
    position: absolute;
    inset: 0; /* بديل مختصر لـ top/right/bottom/left */
    background-image: url('https://via.placeholder.com/100');
    background-repeat: repeat;
    background-size: 100px;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
  }
  
 .partner-slider {
    display: flex;
    animation: scrollSlider 25s linear infinite;
    padding: 10px 0;
  }
  
  .partner-logo img {
    max-height: 170px;
    max-width: 170px;
    border-radius: 16px; 
    filter: grayscale(100%);
    opacity: 0.9;
    transition: 0.3s ease-in-out;
  }
  
  
  .partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
  }
  
  @keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  

  .partner-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.partner-slider {
  display: flex;
  gap: 50px;
  will-change: transform;
  animation: none; /* نعطله بالبداية */
}

.partner-logo img {
  max-height: 160px;
  max-width: 140px;
  border-radius: 16px;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: 0.3s ease-in-out;
}

.partner-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scrollSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: 0.3s ease-in-out;
}

.partner-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}


.app-box {
  transition: 0.3s ease-in-out;
  border: 1px solid #f0f0f0;
  background: #fff;
}

.app-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.col-lg-2-5 {
  flex: 0 0 auto;
  width: 20%;
}

@media (max-width: 991px) {
  .col-lg-2-5 {
    width: 50%;
  }
}

.app-box {
  background-color: #fff;
  border: 1px solid #eee;
  transition: 0.3s ease-in-out;
}

.app-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.app-box i {
  color: #10646b;
}

.footer a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}

.footer .social-icons i:hover {
  color: #00c8b5;
}

/* زر واتساب عائم */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  line-height: 66px;
  width: 66px;
  height: 66px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebd5a;
}

.api-box {
  transition: 0.3s ease;
}

.api-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plans-section {
  padding: 40px 20px;
  background-color: #f7f9fa;
  direction: rtl;
}

.plans-section h2 {
  text-align: center;
  color: #10646b;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
}

.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.plan-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards;
}

.plan-card:nth-child(2) {
  animation-delay: 0.3s;
}

.plan-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-price {
  font-size: 30px;
  font-weight: bold;
  color: #10646b;
}

.plan-title {
  background-color: #e6f4f3;
  color: #10646b;
  font-weight: bold;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 12px;
  margin-top: 12px;
  font-size: 18px;
}

.plan-features {
  margin-top: 20px;
  line-height: 1.9;
  font-size: 15px;
  color: #333;
  flex-grow: 1;
}

.whatsapp-btn {
  display: block;
  text-align: center;
  background-color: #10646b;
  color: white;
  padding: 12px 0;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s;
  width: 100%;
  font-size: 16px;
}

.whatsapp-btn:hover {
  background-color: #0d5058;
}


/* ===== Responsive & Organized Sections (Heeiz) ===== */

/* Unified grid: equal-height cards and adaptive columns */
.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* Card: equal height via flex, neat spacing */
.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 220px;
  padding: 28px 22px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card .icon {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 20px;
  margin: 6px 0 10px;
  color: #10646b;
}

.feature-card p {
  margin: 0;
  color: #46515a;
  line-height: 1.7;
}

/* Hover elevation */
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Section headers alignment and spacing */
.features-section .main-title {
  margin-bottom: 8px;
}

.features-section .subtitle {
  margin-bottom: 28px;
}

/* Distinct looks per section (subtly different but consistent) */

/* 1) Shipping */
.shipping-section {
  position: relative;
  background:
    radial-gradient(1200px 400px at 100% 0%, rgba(16,100,107,0.06), transparent 60%),
    #ffffff;
}
.shipping-section .feature-card { border-top: 3px solid #178a85; }
.shipping-section .feature-card .icon { color: #178a85; }
.shipping-section .feature-card:hover { border-color: #10646b; }

/* 2) Warehousing */
.warehousing-section {
  background:
    linear-gradient(180deg, #f6fbfb, #ffffff);
}
.warehousing-section .feature-card { border-top: 3px solid #0f6f77; }
.warehousing-section .feature-card .icon { color: #0f6f77; }
.warehousing-section .feature-card:hover { border-color: #0b565c; }

/* 3) Branding */
.branding-section {
  background:
    radial-gradient(800px 300px at 0% 0%, rgba(0,0,0,0.03), transparent 60%),
    #ffffff;
}
.branding-section .feature-card { border-top: 3px solid #0aa5a0; }
.branding-section .feature-card .icon { color: #0aa5a0; }
.branding-section .feature-card:hover { border-color: #097d79; }

/* 4) Global Buy */
.globalbuy-section {
  background:
    linear-gradient(180deg, #ffffff, #f7fbfb);
}
.globalbuy-section .feature-card { border-top: 3px solid #129b93; }
.globalbuy-section .feature-card .icon { color: #129b93; }
.globalbuy-section .feature-card:hover { border-color: #0f7b75; }

/* 5) Tech Services */
.tech-section {
  position: relative;
  background:
    radial-gradient(900px 320px at 100% 100%, rgba(16,100,107,0.05), transparent 70%),
    #ffffff;
}
.tech-section .feature-card { border-top: 3px solid #10646b; }
.tech-section .feature-card .icon { color: #10646b; }
.tech-section .feature-card:hover { border-color: #0c4e53; }

/* Responsive refinements */
@media (max-width: 991px) {
  .feature-card { min-height: 200px; }
  .feature-card .icon { font-size: 26px; }
}
@media (max-width: 575px) {
  .features-section .features-grid { gap: 20px; }
  .feature-card { padding: 22px 18px; }
}
