/* Navbar */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background-color: #FFFFFF; /* أزرق فاتح */
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      font-weight: bold;
      font-size: 24px;
      width: 200px;
      height: 100px;
      color: #1B1B1B; /* أسود داكن */
    }

    .nav-links {
      display: flex;
      gap: 20px;
      list-style: none;
    }

    .nav-links li a {
      text-decoration: none;
      color: #1B1B1B;
      font-size: 20px;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links li a:hover {
      color: #FFF3B0; /* أصفر فاتح */
    }

    .lang-btn {
      padding: 5px 10px;
      background-color: #FFF3B0; /* أصفر فاتح */
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: bold;
    }

    /* Mobile */
    .menu-icon {
      display: none;
      font-size: 28px;
      cursor: pointer;
    }

    @media (max-width: 992px) {
      .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        height: 100vh;
        width: 250px;
        background-color: #ffff;
        flex-direction: column;
        gap: 20px;
        padding: 30px;
        transition: right 0.3s;
      }

      .nav-links.show {
        right: 0;
      }

      .menu-icon {
        display: block;
      }

      .navbar {
        justify-content: space-between;
      }
    }


    /*footer*/
.footer {
  background-color: #1B1B1B;
  color: #fff;
  padding: 40px 20px;
}

.footer a{
  color: #fff;
}

.footer-container {

  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-logo img {
  width: 300px;
  display: block;
    margin: auto;
}

/* قسم التواصل */
.footer-contact h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 16px;
}


.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* ألوان الأيقونات حسب المنصة */
.social-icons .facebook { background-color: #3b5998; color: #fff; }
.social-icons .instagram { background-color: #E1306C; color: #fff; }
.social-icons .tiktok { background-color: #000000; color: #fff; }

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo img {
    
    margin-bottom: 20px;
  }

  .social-icons {
    justify-content: center;
  }
}


.footer-bottom {
  background-color: #151515; /* لون أغمق من Footer الأساسي */
  color: #fff;
  text-align: center;
  padding: 15px 20px;
  font-size: 14px;
}

.footer-bottom a {
  color: #FFA500; /* لون مميز للرابط */
  text-decoration: none;
  font-weight: bold;
}

.footer-bottom a:hover {
  text-decoration: underline;
}




/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('https://png.pngtree.com/thumb_back/fh260/background/20230707/pngtree-d-rendering-of-a-logistics-company-s-import-export-shipping-operations-image_3817708.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 20px;
    margin: 10px 0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero a.btn {
    background: #f97316;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
}

.hero a.btn:hover {
    background: #d65b0b;
}

/* Sections */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

/* ===== About Company Section ===== */

.about-company {
    padding: 100px 20px;
    background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.about-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Badge */
.about-badge {
    display: inline-block;
    background: #f97316;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Title */
.about-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #111827;
    line-height: 1.3;
}

/* Text */
.about-card p {
    font-size: 17px;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 18px;
}

/* Highlight */
.about-card strong {
    color: #f97316;
}

/* Responsive */
@media (max-width: 768px) {
    .about-card {
        padding: 30px 20px;
    }

    .about-card h2 {
        font-size: 24px;
    }

    .about-card p {
        font-size: 15px;
    }
}


/* ===== Vision / Our Ambition Section ===== */

.vision-section {
    padding: 100px 20px;
    background: #ffffff;
}

.vision-container {
    max-width: 850px;
    margin: 0 auto;
    background: #fff7ed;
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* Icon */
.vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #f97316;
    color: #ffffff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Title */
.vision-container h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #111827;
}

/* Text */
.vision-container p {
    font-size: 17px;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 18px;
}

/* Highlight */
.vision-container strong {
    color: #f97316;
}

/* Responsive */
@media (max-width: 768px) {
    .vision-container {
        padding: 40px 25px;
    }

    .vision-container h2 {
        font-size: 26px;
    }

    .vision-container p {
        font-size: 15px;
    }
}


.transport-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.transport-box {
    flex: 1 1 calc(33% - 20px);
    background: #fff3e0;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.transport-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.transport-box img {
    width: 80px;
    margin-bottom: 15px;
}

.transport-box h3 {
    margin-bottom: 10px;
    color: #f97316;
}

.transport-box p {
    color: #333;
}

/* About & Vision */
.section img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Call to Action */
.cta {
    background: #f97316;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.cta a.btn {
    background: white;
    color: #f97316;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.cta a.btn:hover {
    background: #ffe4cc;
}



/* Responsive */
@media (max-width: 768px) {
   
    .transport-boxes {
        flex-direction: column;
    }

    .transport-box {
        flex: 1 1 100%;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }
}

/* ===== Scroll Animation ===== */

/* الحالة الافتراضية (مخفي) */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

/* لما يظهر */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* أنميشن من الشمال */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* أنميشن من اليمين */
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}



/* ===== Tracking Section ===== */

.tracking-section {
    padding: 100px 20px;
    background: #ffffff;
}

.tracking-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tracking-container h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #111827;
}

.tracking-subtitle {
    color: #6b7280;
    margin-bottom: 40px;
}

/* Form */
.tracking-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tracking-form input {
    width: 260px;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 15px;
}

.tracking-form input:focus {
    outline: none;
    border-color: #f97316;
}

.tracking-form button {
    background: #f97316;
    color: #ffffff;
    border: none;
    padding: 14px 25px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease;
}

.tracking-form button:hover {
    background: #ea580c;
}

/* Map */
.tracking-map {
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.tracking-map.show {
    opacity: 1;
    transform: translateY(0);
}

/* Steps */
.track-step {
    text-align: center;
    color: #9ca3af;
}

.track-step span {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
}

.track-step p {
    font-size: 14px;
}

.track-step.active {
    color: #f97316;
    font-weight: bold;
}

/* Line */
.track-line {
    flex: 1;
    height: 4px;
    background: #e5e7eb;
    margin: 0 10px;
}

.track-step.active + .track-line {
    background: #f97316;
}

/* Responsive */
@media (max-width: 768px) {
    .tracking-map {
        flex-direction: column;
    }

    .track-line {
        width: 4px;
        height: 40px;
        margin: 10px 0;
    }
}


/* ===== Why Choose Us Section ===== */

.why-us-section {
    padding: 100px 20px;
    background: #f9fafb;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-us-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #111827;
}

.why-us-subtitle {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 60px;
}

/* Grid */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.why-us-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Icon */
.why-us-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f97316;
    color: #ffffff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Card Text */
.why-us-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #111827;
}

.why-us-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-container h2 {
        font-size: 26px;
    }
}
