/* الخط الافتراضي لكل المشروع */
body {
  font-family: 'Cairo', 'Roboto', Arial, sans-serif;
  font-weight: 100; /* وزن افتراضي */
  line-height: 1.6;
}

/* عناوين */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400; /* bold */
}

/* نصوص متوسطة الوزن */
.medium {
  font-weight: 500;
}

/* نص خفيف */
.light {
  font-weight: 300;
}

/* دعم الاتجاه RTL والـ LTR */
html[dir="rtl"] {
  font-family: 'Cairo', Arial, sans-serif;
}

html[dir="ltr"] {
  font-family: 'Roboto', Arial, sans-serif;
}


/* --- تحسين المسافات في الهيدر (تقليل الفراغات) --- */
      @media (min-width: 992px) {
        .header-container {
          justify-content: space-between; 
        }
        .main-nav {
          gap: 15px !important; /* تقليل المسافة بين الروابط */
        }
        .main-nav > a, .dropdown-toggle {
          padding: 8px 10px !important; /* تقليل الحواف الداخلية */
          font-size: 15px; /* حجم خط مناسب */
        }
      }

      /* --- تنسيقات القائمة الجانبية للموبايل --- */
      .mobile-menu-content {
        padding-top: 32px !important;
        padding-bottom: 50px;
        overflow-y: auto;
        height: 100%;
      }
      .mobile-menu-toggle {
        z-index: 99999;
        top: -48px;
      }

      /* --- تنسيقات أزرار الواتساب --- */
      @media (max-width: 768px) {
        :root {
          --btn-size: 32px;
          --btn-gap: 12px;
        }

        .whatsapp-btn.left,
        .whatsapp-btn.right {
          left: 20px !important;
          right: auto !important;
          position: fixed !important;
          z-index: 9999;
          transform: none !important;
        }

        .whatsapp-btn .circle {
          width: var(--btn-size) !important;
          height: var(--btn-size) !important;
          min-width: var(--btn-size) !important;
          line-height: var(--btn-size) !important;
        }

        .whatsapp-btn .circle img {
          width: calc(var(--btn-size) * 0.5) !important;
          height: calc(var(--btn-size) * 0.5) !important;
        }

        .whatsapp-btn .text {
          font-size: 12px !important;
          padding: 0 8px !important;
        }

        .whatsapp-btn.left {
          bottom: 20px !important;
        }

        .whatsapp-btn.right {
          bottom: calc(20px + var(--btn-size) + var(--btn-gap)) !important;
        }
      }

      /* =========================================
         أنيميشن العناصر (الظهور التدريجي)
         ========================================= */
      .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        visibility: hidden;
      }

      .reveal.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
      }

      .delay-100 { transition-delay: 0.1s; }
      .delay-200 { transition-delay: 0.2s; }
      .delay-300 { transition-delay: 0.3s; }

      .fade-left {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.7s ease-out;
      }
      .fade-left.active {
        opacity: 1;
        transform: translateX(0);
      }

      .system-card, .feature-card, .module-card-inner {
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
      }

      .system-card:hover, .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      }
      
      .module-card:hover .module-card-inner {
        transform: rotateY(180deg);
      }
      
      .no-js .reveal {
        opacity: 1;
        transform: none;
        visibility: visible;
      }


/* إضافة مساحة علوية لمحتوى القائمة حتى لا يغطي زر الإغلاق الكلام */
      .mobile-menu-content {
        padding-top: 32px !important; /* انزال الكلام لأسفل */
        padding-bottom: 50px;
        overflow-y: auto; /* السماح بالسكرول إذا كانت القائمة طويلة */
        height: 100%;
      }

      /* التأكد من أن زر القائمة (X) يظهر دائماً في الأعلى */
      .mobile-menu-toggle {
        z-index: 99999;
        top: -48px; /* ضبط المسافة من الأعلى */
      }



      
/* --------------------
  1) خلي main-nav يظهر لحد الشاشات المتوسطة،
     ونخفيه بس على الموبايل الصغير (<=768px)
   -------------------- */
@media (max-width: 992px) {
  /* نترك فراغات أصغر من 992 لعرضات أصغر - لكن نخلي main-nav مرئي حتى 768 */
  /* هنا لا نخفي main-nav */
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important; /* نستخدم الهام لتفادي قواعد أخرى */
  }
  .header-actions {
    display: none !important; /* أو عدّل حسب رغبتك */
  }
}

/* --------------------
  2) تحريك زر الإغلاق (X) داخل السايدبار للأعلى
   -------------------- */
/* مثال لزر الإغلاق (انظر HTML تحت) */
.mobile-sidebar .close-sidebar {
  position: absolute;
  top: 18px;
  right: 18px;           /* للـ RTL يكون على اليمين */
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
  transition: transform 0.2s ease;
}
html[dir="ltr"] .mobile-sidebar .close-sidebar {
  right: auto;
  left: 18px;            /* لو الصفحة LTR نحطها على الشمال */
}
.mobile-sidebar .close-sidebar svg {
  width: 20px;
  height: 20px;
  color: #1f2937;
}
.mobile-sidebar .close-sidebar:hover {
  transform: scale(1.05);
}

/* --------------------
  3) زر "طلب عرض" أسود
   -------------------- */
.mobile-quote-btn {
  background: #000 !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important;
}
.mobile-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.32) !important;
}

/* --------------------
  4) خلي زر اللغة بسيط (نص فقط، مظهر احترافي)
   -------------------- */
.mobile-lang-switcher {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  gap: 8px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: none !important;
  justify-content: flex-start;
}
.mobile-lang-switcher img {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}
.mobile-lang-switcher:hover {
  background: transparent;
  transform: none;
  color: var(--primary-color);
}



/* لو في هيدر نسخة دسكتوب */
.lang-switcher {
  background: transparent !important;
  border: none;
  padding: 0;
  font-weight: 600;
  cursor: pointer;
}

/* --------------------
  5) تحريك أيقونات WhatsApp للأسفل في الموبايل (bottom-center)
   -------------------- */
@media (max-width: 768px) {
  .whatsapp-btn {
    top: auto !important;
    bottom: 18px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    z-index: 2000 !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
    max-width: calc(100% - 40px);
  }
  /* على الموبايل نعرض فقاعات أصغر: نختصر النص ونبقي الدائرة واضحة */
  .whatsapp-btn .text {
    display: none; /* لو حابب تظهر نص مختصر: استخدم display:inline-block مع padding أقصر */
  }
  .whatsapp-btn .circle {
    width: 56px;
    height: 56px;
  }
  .whatsapp-btn .circle img {
    width: 30px;
    height: 30px;
  }
}

/* --------------------
  6) ضمان أن body.menu-open يمنع التمرير ويدعم overlay (خيارات إضافية)
   -------------------- */
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

/* =========================================
         2. إعدادات اللغة الإنجليزية (LTR Override)
         هذا الجزء هو المسؤول عن قلب الاتجاه
         ========================================= */
      html[lang="en"] body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        direction: ltr; /* اتجاه من اليسار لليمين */
        text-align: left; /* محاذاة النص لليسار */
      }

      /* عكس هوامش العناصر في الإنجليزية */
      html[lang="en"] .main-nav { margin-left: 0; margin-right: auto; }
      html[lang="en"] .mobile-sidebar { right: auto; left: -320px; }
      html[lang="en"] .mobile-sidebar.active { left: 0; }
      html[lang="en"] .dropdown-menu { right: auto; left: 0; }
      html[lang="en"] .sub-menu { right: auto; left: 100%; }
      html[lang="en"] .footer-links a:hover { padding-right: 0; padding-left: 5px; }
      
      /* عكس اتجاه الأسهم */
      html[lang="en"] .arrow-icon { transform: rotate(0deg); } 
      
      /* عكس أزرار الواتساب */
      html[lang="en"] .whatsapp-btn.left { left: auto; right: 20px; flex-direction: row; }
      html[lang="en"] .whatsapp-btn.right { right: auto; left: 20px; flex-direction: row-reverse; }


.main-nav a.active {
        color: #ba0808 !important; /* اللون الأحمر */
        font-weight: 700 !important; /* خط عريض */
        border-bottom: 2px solid #ba0808; /* خط تحت الكلمة */
        padding-bottom: 5px; /* مسافة بين الكلمة والخط */
      }



/* استايل الـ Mobile Menu Toggle Button */
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 25px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1001;
      position: relative;
    }

    .mobile-menu-toggle span {
      width: 100%;
      height: 3px;
      background-color: #dc2626;
      border-radius: 3px;
      transition: all 0.3s ease;
      
    }

    /* تحويل الأيقونة لـ X عند الفتح */
    .mobile-menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);

    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;

    }

    .mobile-menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    /* السايد منيو */
    .mobile-sidebar {
      position: fixed;
      top: 0;
      right: -100%;
      width: 320px;
      max-width: 85%;
      height: 100vh;
      background: #ffffff;
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
      transition: right 0.3s ease;
      z-index: 1000;
      overflow-y: auto;
      padding: 80px 0 30px;
    }

    .mobile-sidebar.active {
      right: 0;
    }

    /* للغة الإنجليزية */
    html[dir="ltr"] .mobile-sidebar {
      right: auto;
      left: -100%;
    }

    html[dir="ltr"] .mobile-sidebar.active {
      left: 0;
      right: auto;
    }

    /* Overlay الخلفية */
    .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 999;
    }

    .mobile-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* محتوى السايد منيو */
    .mobile-menu-content {
      padding: 0;
    }

    .mobile-menu-item {
      border-bottom: 1px solid #f0f0f0;
    }

    .mobile-menu-item > a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 25px;
      color: #1f2937;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .mobile-menu-item > a:hover {
      background: #fee2e2;
      color: #dc2626;
    }

    /* أيقونة السهم للقوائم الفرعية */
    .mobile-menu-arrow {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
    }

    .mobile-menu-arrow.rotated {
      transform: rotate(180deg);
    }

    /* القوائم الفرعية */
    .mobile-submenu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: #fef2f2;
    }

    .mobile-submenu.active {
      max-height: 500px;
    }

    .mobile-submenu-item {
      border-bottom: 1px solid #e5e7eb;
    }

    .mobile-submenu-item:last-child {
      border-bottom: none;
    }

    .mobile-submenu-item > a {
      display: block;
      padding: 14px 25px 14px 45px;
      color: #4b5563;
      text-decoration: none;
      font-size: 15px;
      transition: all 0.3s ease;
    }

    .mobile-submenu-item > a:hover {
      background: #fee2e2;
      color: #dc2626;
      padding-right: 30px;
    }

    /* القائمة الفرعية الثانية */
    .mobile-sub-submenu {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: #ffffff;
    }

    .mobile-sub-submenu.active {
      max-height: 400px;
    }

    .mobile-sub-submenu a {
      display: block;
      padding: 12px 25px 12px 65px;
      color: #6b7280;
      text-decoration: none;
      font-size: 14px;
      transition: all 0.3s ease;
    }

    .mobile-sub-submenu a:hover {
      background: #fef2f2;
      color: #dc2626;
      padding-right: 30px;
    }

    /* زر اللغة في السايد بار */
    .mobile-lang-switcher {
      margin: 20px 25px;
      padding: 12px 20px;
      background: #2563eb;
      color: white;
      border: none;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .mobile-lang-switcher:hover {
      background: #1d4ed8;
      transform: translateY(-2px);
    }

    .mobile-lang-switcher img {
      width: 24px;
      height: 24px;
    }

/* WhatsApp Buttons */
.whatsapp-btn {
  position: fixed;
  top: 85%; /* تحت شوية */
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  z-index: 1000;
  transition: transform 0.3s;
}

/* فقاعات واتس */
.whatsapp-btn .circle {
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* أيقونة الواتس */
.whatsapp-btn .circle img {
  width: 28px;
  height: 28px;
}

/* نص الفقاعة */
.whatsapp-btn .text {
  background-color: #25d366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 25px;
  margin: 0 8px;
  white-space: nowrap;
  display: inline-block;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);

  /* تحكم في العرض */
  min-width: 160px;  /* أقل عرض */
  max-width: 200px;  /* أقصى عرض */
  width: auto;       /* ممكن تحط قيمة px أو % ثابتة */
  text-align: center;
  overflow: hidden;  /* لو النص طويل يختصر */
  text-overflow: ellipsis;
}

/* مصر على اليمين */
.whatsapp-btn.left {
  left: 20px;
  flex-direction: row-reverse; /* النص على اليسار، الدائرة على اليمين */
}

/* السعودية على اليسار */
.whatsapp-btn.right {
  right: 20px;
  flex-direction: row; /* الدائرة على اليسار، النص على اليمين */
}

/* Hover effect */
.whatsapp-btn:hover {
  transform: translateY(-2px);
}


    /* زر طلب عرض الأسعار */
    .mobile-quote-btn {
      margin: 15px 25px;
      padding: 14px 20px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      display: block;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }

    .mobile-quote-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
    }

    /* إظهار زر Mobile Menu في الشاشات الصغيرة */
    @media (max-width: 992px) {
      .mobile-menu-toggle {
        display: flex;
      }
      
      /* إخفاء القائمة العادية */
      .main-nav {
        display: none;
      }
      
      .header-actions {
        display: none;
      }
    }

    /* تحسينات إضافية */
    * {
      box-sizing: border-box;
    }

    body.menu-open {
      overflow: hidden;
    }  

        





/* ===== HEADER ===== */

/* الحاوية الرئيسية للقائمة */
.dropdown-wrapper {
    position: relative;
    cursor: pointer;
}

/* ============================================
   English Version - Complete RTL to LTR Mirror
   ============================================ */

/* Base Direction */
.en-version {
  direction: ltr !important;
}

.en-version *:not([dir="rtl"]) {
  direction: ltr !important;
}

/* تنسيقات خاصة عند التحويل للغة الإنجليزية */
  html[lang="en"] body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important; /* خط أفضل للإنجليزية */
      text-align: left; /* محاذاة النص لليسار */
  }

  /* عكس اتجاه الأسهم وأيقونات القوائم في الوضع الإنجليزي */
  html[lang="en"] .arrow-icon,
  html[lang="en"] .hero-actions img.arrow-forward, /* تأكد من كلاس الصورة */
  html[lang="en"] .slider-arrow img {
      transform: scaleX(-1); /* يعكس الأيقونة أفقياً */
  }

  /* تعديل المسافات في القائمة العلوية للإنجليزية */
  html[lang="en"] .main-nav a {
      margin-right: 15px;
      margin-left: 0;
  }
  
/* Text Alignment - Reset All */
.en-version h1,
.en-version h2,
.en-version h3,
.en-version h4,
.en-version h5,
.en-version h6,
.en-version p,
.en-version span,
.en-version div,
.en-version a,
.en-version li {
  text-align: left !important;
}

/* Centered Elements */
.en-version .section-title,
.en-version .section-sub,
.en-version .page-header,
.en-version .footer-bottom {
  text-align: center !important;
}

/* ============================================
   HEADER SECTION
   ============================================ */

/* Header Container */
.en-version .header-container {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
}

/* Logo - Move to Left */
.en-version .logo {
  order: 1 !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* Main Navigation - Center */
.en-version .main-nav {
  order: 2 !important;
  display: flex !important;
  flex-direction: row !important;
  margin: 0 auto !important;
}

.en-version .main-nav > a,
.en-version .main-nav > .dropdown-wrapper {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

/* Header Actions - Move to Right */
.en-version .header-actions {
  order: 3 !important;
  display: flex !important;
  flex-direction: row !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  gap: 10px;
}

.en-version .lang-switcher {
  margin-left: 0 !important;
  margin-right: 10px !important;
}

/* ============================================
   DROPDOWN MENU
   ============================================ */

.en-version .dropdown-wrapper {
  text-align: left !important;
  
}

.en-version .dropdown-toggle {
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important;
}

.en-version .arrow-icon {
  margin-left: 5px !important;
  margin-right: 0 !important;
}

.en-version .dropdown-menu {
  left: 0 !important;
  right: auto !important;
  text-align: left !important;
}

.en-version .dropdown-item {
  text-align: left !important;
}

.en-version .dropdown-link {
  text-align: left !important;
  padding-left: 15px !important;
  padding-right: 35px !important;
}

.en-version .sub-menu {
  left: 100% !important;
  right: auto !important;
  text-align: left !important;
}

.en-version .sub-menu li {
  text-align: left !important;
}

.en-version .sub-menu a {
  text-align: left !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* ============================================
   CLIENT LOGOS SECTION
   ============================================ */

.en-version .clients-logos {
  display: grid !important;
  justify-items: center !important;
  text-align: center !important;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.en-version .contact-container {
  display: flex !important;
  flex-direction: row !important;
  gap: 30px;
}

/* Image on Right */
.en-version .contact-image {
  order: 2 !important;
}

/* Form on Left */
.en-version .contact-form {
  order: 1 !important;
  text-align: left !important;
}

.en-version .contact-form-title,
.en-version .contact-form-desc {
  text-align: left !important;
}

.en-version .contact-form input,
.en-version .contact-form select,
.en-version .contact-form textarea {
  text-align: left !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.en-version .input-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px;
}

.en-version .send-btn {
  margin-left: 0 !important;
  margin-right: auto !important;
}


/* ============================================
   RESPONSIVE FIXES
   ============================================ */

@media (max-width: 768px) {
  .en-version .header-container {
    flex-direction: column !important;
  }
  
  .en-version .main-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  
  .en-version .contact-container {
    flex-direction: column !important;
  }
  
  .en-version .footer-main {
    flex-direction: column !important;
  }
  
  .en-version .footer-col {
    order: initial !important;
  }
}


/* القائمة المنسدلة الرئيسية */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0; /* يظهر القائمة ناحية اليمين */
    width: 260px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-top: 3px solid #b90e0e; /* الخط الأحمر العلوي */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0;
    z-index: 999;
}

/* إظهار القائمة عند الهوفر */
.dropdown-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* عناصر القائمة */
.dropdown-item {
    position: relative;
    border-bottom: 1px solid #eee;
}

.dropdown-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

/* السهم الصغير للقوائم الفرعية */
.dropdown-link::after {
    content: '◀'; 
    font-size: 10px;
    color: #999;
}

/* تأثير الهوفر الأحمر */
.dropdown-item:hover > .dropdown-link {
    background-color: #b90e0e;
    color: #fff;
}

.dropdown-item:hover > .dropdown-link::after {
    color: #fff;
}

/* === القائمة الفرعية (Sub-Menu) === */
.sub-menu {
    position: absolute;
    top: 0;
    right: 100%; /* تظهر يسار القائمة الرئيسية */
    width: 240px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-right: 2px solid #b90e0e;
    list-style: none;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

/* إظهار القائمة الفرعية */
.dropdown-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    border-bottom: 1px dashed #eee;
    transition: 0.2s;
}

.sub-menu li a:hover {
    color: #b90e0e;
    background-color: #f9f9f9;
    padding-right: 25px;
}


header {
  padding: 24px 32px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px; /* تكبير الخط العام للهيدر على الشاشات الكبيرة */
}

header .main-nav a {
  margin: 0 4px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 400;
  font-size: 18px; /* تكبير الروابط */
}

header .header-actions {
  display: flex;
  gap: 48px;
}

header .header-actions .lang-switcher {
  font-size: 20px; /* تكبير لغة التبديل */
}

header .header-actions .btn-primary {
  font-size: 16px; /* تكبير زر طلب عرض اسعار */
  padding: 16px 32px; /* توسيع الزر ليناسب حجم الخط */
  border-radius: 6px;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px; /* تصغير الخط قليلاً على الشاشات المتوسطة */
  }

  header .main-nav a {
    margin: 8px 0;
    font-size: 14px;
  }

  header .header-actions {
    gap: 12px;
  }

  header .header-actions .lang-switcher,
  header .header-actions .btn-primary {
    font-size: 16px;
    padding: 12px 28px;
  }
}

@media (max-width: 768px) {
  header {
    font-size: 16px;
  } /* تصغير إضافي للموبايل */
  header .main-nav a {
    font-size: 16px;
  }
  header .header-actions .lang-switcher,
  header .header-actions .btn-primary {
    font-size: 14px;
    padding: 10px 24px;
  }
}

:root {
  --primary-color: #ba0808;
  --dark-color: #121212;
  --light-color: #fafafa;
  --text-color: #666666;
  --text-dark: #313131;
  --white: #fdfdfd;
  --border-light: #d9d7d7;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Kufi Arabic", sans-serif;
  background-color: var(--light-color);
  color: var(--text-dark);
  direction: rtl;
  text-align: right;
}

.main-nav a.active {
    color: #c00000 !important;
    font-weight: bold;
    border-bottom: 2px solid #c00000;
}


#footer {
  width: 100% !important;
}

.container {
  width: 100% !important;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}



.btn-primary {
  background-color: var(--dark-color);
  color: var(--light-color);
}

.btn-primary {
  background-color: #1a1919; /* ← لون الزرار الأساسي — ثبتّه */
  color: #fff;
  border: none;
  transition: background-color 0.1s ease;
}

.btn-primary:hover {
  background-color: rgba(165, 4, 4, 0.85) !important;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: rgba(186, 8, 8, 0.1);
}

@media (max-width: 992px) {
  .container {
    padding: 0 32px;
  }
  section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.site-header {
  background-color: var(--light-color);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo img {
  width: 140px;
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a.dropdown .arrow-icon {
  transform: rotate(90px);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-color);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  color: var(--dark-color);
}
.header-actions .btn {
  padding: 12px 24px;
}

@media (max-width: 1200px) {
  .main-nav {
    gap: 20px;
  }
  .main-nav a {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .main-nav {
    display: none; /* Simplified for demo, would be a hamburger menu */
  }
}
@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .header-actions {
    width: 100%;
    justify-content: space-around;
  }
}


/* تطبيق التصغير فقط على الشاشات الأكبر من 1024 بيكسل (لاب توب وكمبيوتر) */
      @media (min-width: 1024px) {
        body {
          /* خاصية الزووم لمتصفحات كروم وإيدج */
          zoom: 0.8; 
        }
        
        /* خاصية لمتصفح فايرفوكس لأنه لا يدعم zoom */
        @-moz-document url-prefix() {
            body {
                transform: scale(0.8);
                transform-origin: top center;
                width: 133.33%; /* تعويض نقص العرض الناتج عن التصغير */
                overflow-x: hidden;
            }
        }
      }

      
.hero-section {
  background-color: var(--light-color);
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.hero-content {
  flex: 1;
  max-width: 607px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.hero-logo {
  width: 200px;
  height: auto;
}


.company-text {
  font-size: 32px;   /* حجم الخط */
  font-weight: 500;  /* وزن النص الافتراضي */
  line-height: 1.8;
}

.highlight {
  font-weight: 600;  /* وزن أثقل للاسم */
  color: #ba0808;
}



.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: var(--text-color);
}
.hero-actions {
  display: flex;
  gap: 24px;
}
.hero-divider {
  width: 100%;
  border: 0;
  border-top: 0.5px solid #c9c9c9;
  margin: 0;
}
.hero-stats {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  width: 100%;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-number {
  font-size: 24px;
  font-weight: 400;
  color: var(--dark-color);
}
.stat-label {
  font-size: 12px;
  color: var(--text-color);
}
.hero-image-container {
  flex: 1;
  max-width: 497px;
}
.hero-image {
  width: 100%;
  height: auto;
}


#heroImage {
  transition: transform 0.3s ease; /* optional animation */
}

img.flip-horizontal {
  transform: scaleX(-1);
}


@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-stats {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    box-sizing: border-box;
  }
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
}

.cloud-systems-section {
  background-color: var(--light-color);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-title {
  font-size: 40px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 20px;
  color: var(--text-color);
  max-width: 980px;
  margin: 0 auto;
}
.systems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.system-card {
  background-color: #fefefe;
  border-radius: 16px;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.4);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.card-icon {
  width: 105px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 30px;
}
.card-title {
  font-size: 24px;
  font-weight: 500;
}
.card-title strong {
  font-weight: 600;
}
.card-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.card-subtitle {
  font-size: 20px;
  font-weight: 400;
}
.card-description {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color);
  text-align: right;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.tag {
  background-color: rgba(186, 8, 8, 0.15);
  border: 1px solid rgba(186, 8, 8, 0.3);
  border-radius: 18px;
  padding: 8px 16px;
  font-size: 12px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.more-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 992px) {
  .systems-grid {
    grid-template-columns: 1fr;
  }
}

.features-section {
  background-color: #f4f4f4;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
}
.feature-description {
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color);
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    align-items: center;
    text-align: center;
  }
}

.modules-section {
  background-color: var(--white);
  padding-top: 100px;
  padding-bottom: 100px;
}
.modules-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
  position: relative;
}
.modules-title-group {
  display: flex;
  align-items: center;
  gap: 11px;
}
.modules-title-main {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--primary-color);
}
.line-deco {
  width: 24px;
  height: 1.5px;
}
.modules-title-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 40px;
  font-weight: 600;
  color: var(--text-dark);
}
.modules-title-sub span {
  color: var(--primary-color);
}
.deco-img-left,
.deco-img-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.deco-img-left {
  left: 0;
  width: 150px;
}
.deco-img-right {
  right: 0;
  width: 150px;
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.module-card {
  background-color: var(--dark-color);
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  perspective: 1000px;
}
.module-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.module-card:hover .module-card-inner {
  transform: rotateY(180deg);
}
.module-card-front,
.module-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
}
.module-card-front {
  background-color: var(--dark-color);
  color: var(--light-color);
  gap: 16px;
}
.module-card-front p {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 500;
}
.merged-image-container {
  position: relative;
  width: 283px;
  height: 189px;
}
.merged-image-container img {
  object-fit: contain;
}
.module-card-back {
  background-color: var(--dark-color);
  color: var(--light-color);
  transform: rotateY(180deg);
  padding: 20px;
  box-sizing: border-box;
}
.back-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.back-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.back-content h4 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  opacity: 0.8;
}
.back-content h3 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .deco-img-left,
  .deco-img-right {
    display: none;
  }
}
@media (max-width: 992px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }
}

.testimonials-section {
  background-color: rgba(74, 24, 24, 0.9);
  padding: 80px 0;
}
.testimonial-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.testimonial-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}
.testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1153px;
}
.slider-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.slider-arrow img {
  width: 24px;
  height: 24px;
}
.testimonial-content {
  background-color: rgba(186, 8, 8, 0.15);
  border-radius: 8px;
  padding: 48px;
  text-align: center;
  max-width: 993px;
  margin: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.quote {
  font-size: 20px;
  line-height: 30px;
  color: var(--light-color);
}
.author {
  font-size: 20px;
  font-weight: 500;
  color: #ffc4c4;
  font-style: normal;
}

@media (max-width: 768px) {
  .testimonial-title {
    font-size: 28px;
  }
  .testimonial-content {
    padding: 24px;
  }
  .quote,
  .author {
    font-size: 18px;
  }
  .slider-arrow.prev {
    position: absolute;
    left: 10px;
  }
  .slider-arrow.next {
    position: absolute;
    right: 10px;
  }
  .testimonial-slider {
    position: relative;
    justify-content: center;
  }
}

.site-footer-section {
  background-color: #121212;
  color: var(--white);
  padding: 60px 0 30px;
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="%23333"/><circle cx="9" cy="1" r="1" fill="%23333"/><circle cx="5" cy="5" r="1" fill="%23333"/><circle cx="1" cy="9" r="1" fill="%23333"/><circle cx="9" cy="9" r="1" fill="%23333"/></svg>');
  background-size: 10px 10px;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer-title {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}
.title-underline {
  height: 2px;
  background-color: var(--primary-color);
  width: 50%;
}
.footer-text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  max-width: 210px;
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-links a img {
  width: 24px;
  height: 24px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info img {
  width: 24px;
  height: 24px;
  margin-top: 2px;
}
.contact-info span,
.contact-info a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
}
.logo-col {
  align-items: center;
  justify-content: center;
}
.footer-logo-bg {
  background-color: var(--white);
  border-radius: 8px;
  padding: 13px;
  display: inline-block;
}
.footer-logo-bg img {
  width: 171px;
  height: 116px;
}
.footer-bottom {
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 16px;
}
.footer-bottom img {
  width: 20px;
  height: 20px;
}

@media (max-width: 1200px) {
  .footer-main {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
  }
  .footer-col {
    flex-basis: 45%;
  }
  .logo-col {
    flex-basis: 100%;
    order: -1;
  }
}
@media (max-width: 768px) {
  .footer-col {
    flex-basis: 100%;
  }
}

/* ============================
   Footer hover effects (except logo & tabs)
   ============================ */
/* ============================
   Footer hover effects (EXCLUDING titles & logo)
   ============================ */

/* ============================
Footer Hover (Red)
   ============================ */

/* روابط الفوتر */
.footer-links a {
  display: inline-block;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  background-color: rgba(196, 19, 19, 0.15);
  transform: translateY(-3px);
  border-radius: 6px;
}

/* CONTACT INFO */
.contact-info li {
  transition: background-color 0.2s ease, transform 0.2s ease;
  padding: 6px;
  border-radius: 8px;
}

.contact-info li:hover {
  background-color: rgba(196, 19, 19, 0.15);
  transform: translateY(-3px);
}

/* CONTACT text واللينك */
.contact-info span,
.contact-info a {
  transition: color 0.2s ease;
}

.contact-info span:hover,
.contact-info a:hover {
  color: var(--primary-color);
}

/* نصوص الفوتر العادية */
.footer-text {
  transition: color 0.2s ease;
}

.footer-text:hover {
  color: var(--primary-color);
}

/* سوشيال ميديا */
.social-links a img {
  transition: transform 0.18s ease, filter 0.18s ease;
}

/* hover = نحاول نحول اللون إلى أحمر */
.social-links a:hover img {
  transform: translateY(-3px) scale(1.12);
  filter: invert(18%) sepia(92%) saturate(600%) hue-rotate(-2deg)
    brightness(0.95);
}

/* -----------------------------
   عناصر بدون Hover
------------------------------ */
.footer-title {
  pointer-events: none;
}

.footer-logo-bg,
.footer-logo-bg *,
.logo-col {
  pointer-events: none;
}

/*About-us*/



      .mobile-menu-content {
        padding-top: 32px !important;
        padding-bottom: 50px;
        overflow-y: auto;
        height: 100%;
      }
      .mobile-menu-toggle {
        z-index: 99999;
        top: -48px;
      }

      /* --- تنسيقات أزرار الواتساب للموبايل --- */
      @media (max-width: 768px) {
        
        /* === منطقة التحكم في الأبعاد === */
        :root {
          /* غير هذا الرقم لتكبير أو تصغير الدائرة */
          --btn-size: 32px; 
          
          /* المسافة بين الزرين */
          --btn-gap: 12px; 
        }

        .whatsapp-btn.left,
        .whatsapp-btn.right {
          /* تثبيت الأزرار جهة اليسار */
          left: 20px !important;
          right: auto !important;
          position: fixed !important;
          z-index: 9999;
          transform: none !important;
        }

        /* استخدام المتغير للتحكم في حجم الدائرة */
        .whatsapp-btn .circle {
          width: var(--btn-size) !important;
          height: var(--btn-size) !important;
          min-width: var(--btn-size) !important;
          line-height: var(--btn-size) !important;
        }

        /* تصغير أيقونة الواتساب بناءً على حجم الدائرة (50%) */
        .whatsapp-btn .circle img {
          width: calc(var(--btn-size) * 0.5) !important;
          height: calc(var(--btn-size) * 0.5) !important;
        }

        /* تنسيق النص */
        .whatsapp-btn .text {
          font-size: 12px !important;
          padding: 0 8px !important;
        }

        /* --- ترتيب الأزرار --- */

        /* الزر السفلي (السعودية) */
        .whatsapp-btn.left {
          bottom: 20px !important;
        }

        /* الزر العلوي (مصر) - يتم حساب موقعه تلقائياً */
        /* المعادلة: 20px (هامش سفلي) + حجم الزر + المسافة بينهما */
        .whatsapp-btn.right {
          bottom: calc(20px + var(--btn-size) + var(--btn-gap)) !important;
        }
      }

      /* =========================================
         New Animations Styles (Professional & Fast)
         ========================================= */
            /* إعدادات الحركة العامة لتكون ناعمة جداً */
      .reveal, .fade-left {
        opacity: 0;
        visibility: hidden; /* يخفي العنصر تماماً قبل الحركة */
        will-change: transform, opacity; /* تحسين الأداء */
        transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* دالة حركة انسيابية */
      }

      /* حركة الظهور من الأسفل (للنصوص) */
      .reveal {
        transform: translateY(40px);
      }

      /* حركة الظهور من الجانب (للصورة) */
      .fade-left {
        transform: translateX(-50px); /* تتحرك من اليسار لليمين قليلاً */
      }

      /* الحالة النشطة عند الوصول للعنصر (يتم تفعيلها بالجافاسكربت) */
      .reveal.active, .fade-left.active {
        opacity: 1;
        visibility: visible;
        transform: translate(0, 0);
      }

      /* تأخير زمني للعناصر المتتالية */
      .delay-100 { transition-delay: 0.2s; }
      .delay-200 { transition-delay: 0.4s; }
      .delay-300 { transition-delay: 0.6s; }

      /* أنيميشن الطفو للصورة (Floating Animation) */
      /* يعمل فقط بعد ظهور الصورة */
      .hero-image-container.active img {
        animation: floatImage 4s ease-in-out infinite;
        animation-delay: 1.5s; /* يبدأ الطفو بعد اكتمال ظهور الصورة */
      }

      @keyframes floatImage {
        0% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0); }
      }

      /* تحسين ظهور الهيرو سكشن بشكل عام */
      .hero-title {
        overflow: hidden; /* لمنع ظهور أشرطة التمرير أثناء الحركة */
      }

      
      /* --- 2. إعدادات اتجاه صورة الهيرو (تم التحديث) --- */
      
      /* في الوضع العربي (RTL): 
         نستخدم scaleX(1) لضمان أن الصورة بطبيعتها (أو مقلوبة لتعود لطبيعتها) تنظر لليمين.
         نستخدم !important لضمان تطبيق هذه القاعدة فوق أي تنسيق آخر.
      */
      html[dir="rtl"] .hero-image-container img {
        transform: scaleX(-1) !important;
      }

      /* في الوضع الإنجليزي (LTR): 
         نستخدم scaleX(-1) لقلب الصورة أفقيًا بحيث تنظر لليسار.
      */
      html[dir="ltr"] .hero-image-container img {
        transform: scaleX(1) !important;
      }


      
      /* إخفاء العناصر وتجهيزها للحركة */
      
      .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* حركة سريعة وسلسة */
        visibility: hidden;
      }

      /* عند التفعيل */
      .reveal.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
      }

      /* تأخير زمني للعناصر المتتالية */
      .delay-100 { transition-delay: 0.1s; }
      .delay-200 { transition-delay: 0.2s; }
      .delay-300 { transition-delay: 0.3s; }

      /* تحسينات الهوفر (Hover) للكروت - سريعة وفورية */
      .vision-mission .card, 
      .core-values .value-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
      }

      .vision-mission .card:hover, 
      .core-values .value-card:hover {
        transform: translateY(-8px); /* رفع الكارت لأعلى */
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      }

      /* إصلاح لمشكلة الاختفاء عند عدم وجود JS */
      .no-js .reveal {
        opacity: 1;
        transform: none;
        visibility: visible;
      }



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

.about-us {
  max-width: 1200px;
  margin: auto;
}

/* Top Section */
.top-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.top-text {
  flex: 1;
  min-width: 280px;
}

.top-text .line1 {
  font-size: 2rem;
  font-weight: 500;
}

.top-text .line2 {
  font-size: 2rem;
  font-weight: 700;
  color: #a00310;
  margin-top: 5px;
}

.top-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.top-image img {
  max-width: 100%;
  height: auto;
}

/* ===== إصلاح عرض main-nav: نظهره على الشاشات >= 769px، ونستخدم هامبرجر <=768px ===== */
@media (min-width: 769px) {
  .main-nav { display: flex !important; }
  .mobile-menu-toggle { display: none !important; }
}
@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
}

/* ===== زر الإغلاق (X) أعلى السايدبار ===== */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  padding-top: 60px; /* مساحة للـ close button */
  transition: right 0.3s ease;
}
.mobile-sidebar .close-sidebar {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1100;
}
html[dir="ltr"] .mobile-sidebar { right: auto; left: -100%; }
html[dir="ltr"] .mobile-sidebar .close-sidebar { right: auto; left: 12px; }

/* ===== WhatsApp icons stacked vertically with 16px gap =====
   ضع عناصر whatsapp داخل .whatsapp-stack */
.whatsapp-stack {
  position: fixed;
  bottom: 18px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px; /* المسافة المطلوبة */
  z-index: 2000;
}
@media (max-width: 768px) {
  /* على الموبايل نجمّعهم في الوسط أسفل */
  .whatsapp-stack {
    right: 50%;
    left: auto;
    transform: translateX(50%);
    bottom: 18px;
    align-items: center;
  }
  /* أقل عرض لكل زر واتس لو حبيت */
  .whatsapp-stack .whatsapp-btn .text { display: none; } /* إخفاء النص على الموبايل */
}

/* لو لا تزال لديك عنصر واحد .whatsapp-btn منفرد، حوله إلى stack عبر التغليف */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== زر طلب عرض أسود (تأكيد) ===== */
.mobile-quote-btn {
  background: #000 !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important;
}

/* ===== زر اللغة بسيط (نص فقط) ===== */
.lang-switcher,
.mobile-lang-switcher {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* ===== overlay يظهر ويخفي بشكل صحيح ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 999;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== اجعل السايد يظهر عند .mobile-sidebar.active ===== */
.mobile-sidebar.active { right: 0 !important; left: auto !important; }
html[dir="ltr"] .mobile-sidebar.active { left: 0 !important; right: auto !important; }

/* ===== حماية overflow عند فتح المينيو ===== */
body.menu-open { overflow: hidden; touch-action: none; }



/* About Company */

/* ===== top-section: logo + "تعرف علي فور لينك !" ===== */
.top-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 32px;
  padding: 42px 28px;
  /* تقسيم اللون يمين/شمال لتشبه التصميم */
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 50%,
    #f2f2f2 50%,
    #f2f2f2 100%
  );
  border-radius: 8px;
  position: relative;
  overflow: visible;
}

/* النص */
.top-text {
  flex: 1 1 50%;
  min-width: 280px;
  text-align: left; /* النص في الصورة على اليسار */
  direction: rtl; /* مع الحفاظ على اتجاه عربي داخلي */
}

/* سطر "تعرف علي" (أسود عريض متوسط الحجم) */
.top-text .line1 {
  font-family: "Noto Kufi Arabic", "NotoKufiArabic-SemiBold", sans-serif;
  font-weight: 600;
  color: #ba0808;
  margin: 0;
  /* responsive size */
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.05;
}

/* سطر "فور لينك !" أحمر كبير */
.top-text .line2 {
  font-family: "Noto Kufi Arabic", "NotoKufiArabic-SemiBold", sans-serif;
  font-weight: 800;
  color: #ba0808;
  margin-top: 6px;
  font-size: clamp(36px, 6.4vw, 80px);
  line-height: 1;
  letter-spacing: -0.01em;
}

/* الصورة / اللوجو */
.top-image {
  flex: 1 1 45%;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* الصورة على اليمين */
  padding-right: 12px;
}

/* تحكم بحجم اللوجو */
.top-image img {
  width: 420px; /* الحجم على سطح المكتب */
  max-width: 100%;
  height: auto;
  display: block;
  transform: translateX(6px); /* إزاحة بسيطة لتحسس 3D مثل الصورة */
  will-change: transform;
}

/* ظل/تجاور ناعم تحت اللوجو (اختياري - يقرّب الشكل من الـ mockup) */
.top-image img {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
  border-radius: 6px;
}

/* ===== responsive tweaks ===== */
@media (max-width: 1024px) {
  .top-section {
    padding: 34px 20px;
  }
  .top-image img {
    width: 340px;
  }
  .top-text .line2 {
    font-size: clamp(34px, 5.5vw, 64px);
  }
}

@media (max-width: 768px) {
  .top-section {
    flex-direction: column-reverse; /* على الموبايل: الصورة تحت النص (زي أغلب الlayouts) */
    align-items: center;
    text-align: center;
    padding: 28px 16px;
  }
  .top-text {
    text-align: center;
    direction: rtl;
  }
  .top-image {
    justify-content: center;
    padding-right: 0;
    margin-bottom: 8px;
  }
  .top-image img {
    width: 240px;
  }
  .top-text .line1 {
    font-size: clamp(22px, 5.4vw, 34px);
  }
  .top-text .line2 {
    font-size: clamp(26px, 7.2vw, 44px);
  }
}

@media (max-width: 420px) {
  .top-image img {
    width: 200px;
  }
  .top-section {
    padding: 20px 12px;
  }
}

.company-section {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.company-section .title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.company-section .text {
  font-size: 1rem;
  color: #555;
}

/* Vision & Mission */
.vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.vision-mission .card {
  flex: 1;
  min-width: 280px;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.vision-mission .card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.vision-mission .card .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.vision-mission .card .card-text {
  font-size: 0.95rem;
  color: #555;
}

/* Core Values */
.core-values {
  text-align: center;
  margin-bottom: 40px;
}

.core-values .title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.values-grid .value-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.values-grid .value-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.values-grid .value-card .value-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.values-grid .value-card .value-text {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .top-section {
    flex-direction: column;
    text-align: center;
  }
  .vision-mission {
    flex-direction: column;
  }
  .values-grid {
    flex-direction: column;
  }
}

/* ===== Align about section with header padding & center the "تعرف علي فور لينك" ===== */

/* Make about area use same side padding as header (so edges align) */
.about-us {
  padding-left: 64px;
  padding-right: 64px;
  box-sizing: border-box;
  /* add a small top gap so fixed header (if any) won't overlap */
  padding-top: 24px;
  padding-bottom: 48px;
  background-color: #f8f9fa; /* keep background same as before */
}

/* Top card: white rounded card, centered within the padded container */
.top-section {
  width: 100%;
  max-width: 1200px; /* keep same content width as header container */
  margin: 24px auto; /* center horizontally within .about-us padding */
  background: #fff; /* card background */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px; /* inner spacing */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

/* Ensure the text block is centered inside the card (vertical + horizontal) */
.top-section .top-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: flex-start; /* default: keep text left-aligned inside card */
  text-align: left;
  min-height: 160px; /* gives vertical room so centering is visible */
  gap: 6px;
  direction: rtl; /* keep Arabic direction */
}

/* If you want the text exactly centered horizontally inside the card,
   change align-items to center (uncomment the next rule) */
/* .top-section .top-text { align-items: center; text-align: center; } */

/* Line styles — responsive sizes */
.top-text .line1 {
  font-family: "Noto Kufi Arabic", "NotoKufiArabic-SemiBold", sans-serif;
  font-weight: 600;
  color: #0b0b0c;
  margin: 0;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
}

.top-text .line2 {
  font-family: "Noto Kufi Arabic", "NotoKufiArabic-SemiBold", sans-serif;
  font-weight: 800;
  color: #ba0808;
  margin-top: 6px;
  font-size: clamp(36px, 5.2vw, 80px);
  line-height: 1;
}

/* Logo image side */
.top-section .top-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: flex-end; /* keep image to the right edge of card */
  align-items: center;
  min-width: 220px;
}

.top-section .top-image img {
  width: 420px; /* desktop size */
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.06));
  display: block;
}

/* ===== Responsive adjustments ===== */
@media (max-width: 1200px) {
  .about-us {
    padding-left: 48px;
    padding-right: 48px;
  }
  .top-section {
    padding: 34px;
  }
  .top-section .top-image img {
    width: 360px;
  }
}

@media (max-width: 992px) {
  .about-us {
    padding-left: 32px;
    padding-right: 32px;
  }
  .top-section {
    padding: 28px;
    gap: 18px;
  }
  .top-section .top-image img {
    width: 300px;
  }
  /* center text inside the card on tablet for closer match */
  .top-section .top-text {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-us {
    padding-left: 20px;
    padding-right: 20px;
  }
  .top-section {
    flex-direction: column-reverse; /* image under the text (keeps visual balance) */
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .top-section .top-text {
    align-items: center;
    text-align: center;
    min-height: auto;
  }
  .top-section .top-image img {
    width: 220px;
    margin-bottom: 8px;
  }
  .top-text .line2 {
    font-size: clamp(26px, 9vw, 44px);
  }
  .top-text .line1 {
    font-size: clamp(20px, 6vw, 32px);
  }
}

@media (max-width: 420px) {
  .top-section .top-image img {
    width: 180px;
  }
  .top-section {
    padding: 16px;
  }
}

/*products*/


      .mobile-menu-content {
        padding-top: 32px !important;
        padding-bottom: 50px;
        overflow-y: auto;
        height: 100%;
      }
      .mobile-menu-toggle {
        z-index: 99999;
        top: -48px;
      }

      /* --- تنسيقات أزرار الواتساب للموبايل --- */
      @media (max-width: 768px) {
        :root {
          --btn-size: 32px; 
          --btn-gap: 12px; 
        }
        .whatsapp-btn.left,
        .whatsapp-btn.right {
          left: 20px !important;
          right: auto !important;
          position: fixed !important;
          z-index: 9999;
          transform: none !important;
        }
        .whatsapp-btn .circle {
          width: var(--btn-size) !important;
          height: var(--btn-size) !important;
          min-width: var(--btn-size) !important;
          line-height: var(--btn-size) !important;
        }
        .whatsapp-btn .circle img {
          width: calc(var(--btn-size) * 0.5) !important;
          height: calc(var(--btn-size) * 0.5) !important;
        }
        .whatsapp-btn .text {
          font-size: 12px !important;
          padding: 0 8px !important;
        }
        .whatsapp-btn.left {
          bottom: 20px !important;
        }
        .whatsapp-btn.right {
          bottom: calc(20px + var(--btn-size) + var(--btn-gap)) !important;
        }
      }

      /* =========================================
         New Animations Styles (Ultra Smooth & Fast Hover)
         ========================================= */
      
      /* 1. إعدادات الحركة عند التمرير (Scroll Reveal) */
      .reveal {
        opacity: 0;
        transform: translateY(30px);
        /* حركة ناعمة جداً (تبدأ بسرعة وتهدأ في النهاية) */
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        visibility: hidden;
      }

      .reveal.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
      }

      /* تأخير زمني للعناصر المتتالية */
      .delay-100 { transition-delay: 0.1s; }
      .delay-200 { transition-delay: 0.2s; }
      .delay-300 { transition-delay: 0.3s; }

      /* 2. إعدادات الهوفر (Hover) لكروت المنتجات */
      .product-card {
        /* استجابة سريعة (0.25s) */
        transition: transform 0.25s ease-out, box-shadow 0.25s ease-out !important;
      }

      .product-card:hover {
        transform: translateY(-8px); /* رفع الكارت لأعلى */
        box-shadow: 0 15px 30px rgba(0,0,0,0.1); /* ظل ناعم */
      }

      /* ضمان ظهور المحتوى في حالة عدم عمل JS */
      .no-js .reveal {
        opacity: 1;
        transform: none;
        visibility: visible;
      }


/* 1. تلوين النص بالدرجة المطلوبة */
      .main-nav a.active {
        color: #ba0808 !important; /* درجة اللون المحددة */
        font-weight: 700;
      }

      /* 2. تلوين الأيقونة (السهم) بنفس الدرجة باستخدام الفلتر */
      .main-nav a.active .arrow-icon {
        /* هذا الفلتر الدقيق يحول اللون الأسود إلى #ba0808 */
        filter: invert(13%) sepia(94%) saturate(6016%) hue-rotate(354deg) brightness(90%) contrast(116%);
        
        transform: translateY(-2px); 
        transition: all 0.3s ease;
      }

/* عندما يكون الرابط active، قم بتلوين الأيقونة */
.main-nav a.active .arrow-icon {
color: #7e0606;    
    /* تحسينات إضافية (اختياري) */
    transform: translateY(-2px); 
    transition: all 0.3s ease;
}

/* --- قسم المنتجات --- */
.products-section {
  width: 100%;
  padding: 60px 5%;
  direction: rtl;
  font-family: "Noto Kufi Arabic", sans-serif;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 40px;
}

/* الهيدر */
.products-header {
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.products-header h2 {
  font-size: 36px; /* حجم الخط ثابت، غير الرقم حسب رغبتك */
  color: #ba0808;
  font-weight: 700;
  margin-bottom: 10px;
}



.desc {
  font-size: 18px; /* حجم الخط ثابت، غير الرقم حسب رغبتك */
  font-weight: 500;
  color: #333;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 25px auto;
}

.download-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 35px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
}

.download-btn:hover {
  background: #ba0808;
}

/* --- شبكة المنتجات (Responsive + Equal Height) --- */
.products-grid {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  align-items: stretch; /* يخلي كل الكروت نفس الارتفاع */
}

/* --- بطاقة المنتج --- */
.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: space-between; /* يوزع المحتوى بالتساوي */
  align-items: center;
  height: 100%; /* مهم جداً لتساوي الارتفاع */
  box-sizing: border-box;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0 8px;
}

.product-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  flex-grow: 1; /* يجعل النص يتمدد ليوازن ارتفاع الكارد */
  padding: 0 8px;
  margin-bottom: 10px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .products-section {
    padding: 40px 5%;
    gap: 24px;
  }
  .product-card {
    padding: 16px;
  }
  .product-card img {
    height: 140px;
  }
}

@media (max-width: 420px) {
  .products-section {
    padding: 30px 4%;
  }
  .product-card {
    padding: 14px;
  }
  .product-card img {
    height: 120px;
  }
}

/* Our Clients*/

/* ---------- Section wrapper (fixed) ---------- */
/* =========================
   style-about.css
   For: about / clients / contact
   ========================= */

:root {
  --primary: #ba0808;
  --dark: #121212;
  --muted: #666666;
  --bg: #f8f9fa;
  --card-bg: #ffffff;
  --radius: 12px;
  --container-max: 1200px;
  font-family: "Noto Kufi Arabic", sans-serif;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--dark);
  direction: rtl;
  font-family: "Noto Kufi Arabic", sans-serif;
}


/* ===== Section Wrapper ===== */
.section-wrapper {
  max-width: var(--container-max, 1200px); /* fallback للمتغير لو مش متعرف */
  margin: 0 auto;
  padding: 24px 24px; 
  box-sizing: border-box;

  /* المسافة بين السيكشنات الداخلية */
  gap: 0; /* مش محتاج أي gap هنا لأنه هيخلي المسافة داخل page-header مسيطرة */
}

/* ===== Page Header ===== */
.page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  background: transparent;
  box-shadow: none;
  border: none;

  /* تحكم نهائي في المسافات بين العناصر */
  gap: 6px; /* تحكم من هنا فقط */
}

/* امنع أي مارجن افتراضي */
.page-header * {
  margin: 0;
}

/* ===== Section Title ===== */
.section-title {
  font-size: 24px !important;   /* تحكم نهائي */
  font-weight: 600 !important;
  color: #ba0808 !important;    /* اللون النهائي */
  border: none !important;
  margin-bottom: 0 !important;  /* أي مارجن تحت العنوان تم إلغاؤه */
}

.section-title::after {
  content: none !important; /* شيل أي خط تحت العنوان */
  display: none !important;
}

/* ===== Main Text ===== */
.main-text {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #444 !important;
  max-width: 900px;
  text-align: center;
}

/* ===== Small Text ===== */
.small-text {
  font-size: 16px !important;
  color: #777 !important;
  max-width: 900px;
  text-align: center;
}


.section-title::after {
  display: none !important;
  content: none !important;
}

.section-title {
  border: none !important;
}




/* ===== Clients logos grid ===== */
.clients-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-items: center;
  align-items: center;
  margin-bottom: 24px;
}

.clients-logos img {
  width: 100%;
  max-width: 230px;
  height: 110px;
  object-fit: contain;
  padding: 8px;
  border: 2px solid #000;
  border-radius: 16px;
  background: #fff;
}

/* ===== Contact area (image + form) ===== */
.contact-container {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center; /* center on small screens */
}

/* image */
.contact-image {
  flex: 0 0 360px;
}
.contact-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* form */
.contact-form {
  flex: 1 1 520px;
  max-width: 820px;
  background: var(--card-bg);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.contact-form-title {
  font-size: 26px;
  margin: 0 0 8px 0;
}
.contact-form-desc {
  color: var(--muted);
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #bfbfbf;
  border-radius: 10px;
  font-size: 15px;
  background: #fff;
  color: var(--dark);
  margin-bottom: 12px;
}

/* textarea */
.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

/* two fields row */
.input-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.input-row > * {
  flex: 1 1 calc(50% - 7.5px);
  min-width: 140px;
}

/* submit */
.send-btn {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  margin-top: 6px;
}

.send-btn:hover {
    background: #BA0808;
}

 




/* ================= Responsive ================= */
@media (max-width: 1200px) {
  .clients-logos {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .contact-image {
    flex: 0 0 320px;
  }
  .contact-form {
    flex: 1 1 420px;
  }
}

@media (max-width: 992px) {
  .clients-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .section-wrapper {
    padding: 32px 20px;
  }
  .contact-image {
    flex: 0 0 300px;
  }
}

@media (max-width: 850px) {
  .clients-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .section-wrapper {
    padding: 32px 20px;
  }
  .contact-image {
    flex: 0 0 300px;
  }
}
@media (max-width: 768px) {
  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .contact-container {
    flex-direction: column-reverse;
    gap: 20px;
    margin-top: 36px;
  }
  .contact-image {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }
  .contact-form {
    width: 100%;
  }
  .input-row > * {
    flex: 1 1 100%;
  }
  .contact-form-title {
    font-size: 20px;
  }
  .contact-form-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .section-title {
    font-size: 32px;
  }
  .section-sub {
    font-size: 14px;
  }
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 10px;
    font-size: 14px;
  }
  .send-btn {
    font-size: 14px;
    padding: 12px;
  }
}



      .mobile-menu-content {
        padding-top: 32px !important;
        padding-bottom: 50px;
        overflow-y: auto;
        height: 100%;
      }
      .mobile-menu-toggle {
        z-index: 99999;
        top: -48px;
      }

      /* --- تنسيقات أزرار الواتساب للموبايل --- */
      @media (max-width: 768px) {
        :root {
          --btn-size: 32px; 
          --btn-gap: 12px; 
        }
        .whatsapp-btn.left,
        .whatsapp-btn.right {
          left: 20px !important;
          right: auto !important;
          position: fixed !important;
          z-index: 9999;
          transform: none !important;
        }
        .whatsapp-btn .circle {
          width: var(--btn-size) !important;
          height: var(--btn-size) !important;
          min-width: var(--btn-size) !important;
          line-height: var(--btn-size) !important;
        }
        .whatsapp-btn .circle img {
          width: calc(var(--btn-size) * 0.5) !important;
          height: calc(var(--btn-size) * 0.5) !important;
        }
        .whatsapp-btn .text {
          font-size: 12px !important;
          padding: 0 8px !important;
        }
        .whatsapp-btn.left {
          bottom: 20px !important;
        }
        .whatsapp-btn.right {
          bottom: calc(20px + var(--btn-size) + var(--btn-gap)) !important;
        }
      }

      /* =========================================
         New Animations Styles (Ultra Smooth & Fast Hover)
         ========================================= */
      
      /* 1. إعدادات الحركة عند التمرير (Scroll Reveal) */
      .reveal {
        opacity: 0;
        transform: translateY(30px);
        /* حركة انسيابية فخمة */
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        visibility: hidden;
      }

      .reveal.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
      }

      /* حركات جانبية للصور */
      .fade-right {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        visibility: hidden;
      }
      .fade-right.active {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
      }

      .fade-left {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        visibility: hidden;
      }
      .fade-left.active {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
      }

      /* التأخير الزمني */
      .delay-100 { transition-delay: 0.1s; }
      .delay-200 { transition-delay: 0.2s; }

      /* 2. إعدادات الهوفر (Hover) السريع */
      /* شعارات العملاء */
      .clients-logos img {
        transition: transform 0.25s ease-out, filter 0.25s ease-out !important;
        cursor: pointer;
      }
      .clients-logos img:hover {
        transform: scale(1.15); /* تكبير ملحوظ وسريع */
        filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
        z-index: 2;
        position: relative;
      }

      /* نموذج التواصل */
      .contact-form {
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
      }
      .contact-form:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
      }

      .send-btn {
        transition: transform 0.2s, background-color 0.3s !important;
      }
      .send-btn:hover {
        transform: translateY(-3px);
      }

      /* الحقول */
      .contact-form input, .contact-form select, .contact-form textarea {
        transition: all 0.2s ease;
      }
      .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
        transform: translateY(-2px);
      }

      /* منع الاختفاء عند عدم وجود JS */
      .no-js .reveal, .no-js .fade-right, .no-js .fade-left {
        opacity: 1;
        transform: none;
        visibility: visible;
      }



/*Videos Liberary*/





      .mobile-menu-content {
        padding-top: 32px !important;
        padding-bottom: 50px;
        overflow-y: auto;
        height: 100%;
      }
      .mobile-menu-toggle {
        z-index: 99999;
        top: -48px;
      }

      /* --- تنسيقات أزرار الواتساب للموبايل --- */
      @media (max-width: 768px) {
        
        /* === منطقة التحكم في الأبعاد === */
        :root {
          /* غير هذا الرقم لتكبير أو تصغير الدائرة */
          --btn-size: 32px; 
          
          /* المسافة بين الزرين */
          --btn-gap: 12px; 
        }

        .whatsapp-btn.left,
        .whatsapp-btn.right {
          /* تثبيت الأزرار جهة اليسار */
          left: 20px !important;
          right: auto !important;
          position: fixed !important;
          z-index: 9999;
          transform: none !important;
        }

        /* استخدام المتغير للتحكم في حجم الدائرة */
        .whatsapp-btn .circle {
          width: var(--btn-size) !important;
          height: var(--btn-size) !important;
          min-width: var(--btn-size) !important;
          line-height: var(--btn-size) !important;
        }

        /* تصغير أيقونة الواتساب بناءً على حجم الدائرة (50%) */
        .whatsapp-btn .circle img {
          width: calc(var(--btn-size) * 0.5) !important;
          height: calc(var(--btn-size) * 0.5) !important;
        }

        /* تنسيق النص */
        .whatsapp-btn .text {
          font-size: 12px !important;
          padding: 0 8px !important;
        }

        /* --- ترتيب الأزرار --- */

        /* الزر السفلي (السعودية) */
        .whatsapp-btn.left {
          bottom: 20px !important;
        }

        /* الزر العلوي (مصر) - يتم حساب موقعه تلقائياً */
        /* المعادلة: 20px (هامش سفلي) + حجم الزر + المسافة بينهما */
        .whatsapp-btn.right {
          bottom: calc(20px + var(--btn-size) + var(--btn-gap)) !important;
        }
      }


/* ---------- videos section ---------- */
.videos-section {
  width: 100%;
  direction: rtl;
  font-family: "Noto Kufi Arabic", sans-serif;
}



.videos-wrap {
  max-width: 1250px;
  margin: 0 auto;             /* توسيط السيكشن */
  padding: 16px 48px;         /* padding-top 40px لرفع السيكشن أعلى */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;                  /* المسافة بين العنوان والنصوص */
  box-sizing: border-box;
}

/* العنوان الرئيسي */
.videos-wrap .title {
  font-size: 30px;
  font-weight: 700;
  color: #ba0808;
  margin: 0;                  /* أي مارجن افتراضي اتشال */
}

/* subtitle */
.videos-wrap .sub-title {
  font-size: 16px;
  color: #333;
  margin: 0;                  /* التحكم في المسافة بواسطة gap */
  font-weight: 600;
}

/* الوصف */
.videos-wrap .desc {
  font-size: 14px;
  color: #666;
  max-width: 760px;
  margin: 0 auto;             /* توسيط النص */
  line-height: 1.8;           /* مسافة سطور جيدة */
  margin-bottom: 40px;            /* تحكم في المسافة أدناه */

}





/* grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 كاردات في الصف */
  gap: 22px;
  align-items: stretch; /* يساوي ارتفاع كل الكاردات */
}

/* card */
.video-card {
  display: flex;
  flex-direction: column; /* ترتيب عمودي */
  justify-content: space-between; /* info row في الأسفل */
  background: #fff;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 6px 18px rgba(12, 12, 12, 0.06);
  text-align: right;
  padding-bottom: 14px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  height: 100%;
  min-height: 300px; /* يوحد ارتفاع الكاردات */
}

/* hover effect */
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(12, 12, 12, 0.12);
}

/* thumb wrapper */
.thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}
.thumb img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* play overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.85);
  transition: transform 0.18s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.18s ease;
}
.video-card:hover .play-overlay {
  opacity: 1;
  transform: scale(1);
}

/* title */
.video-title {
  font-size: 15px;
  color: #111;
  font-weight: 600;
  padding: 12px 14px 6px;
  line-height: 1.4;
  min-height: 60px; /* يوحد ارتفاع العنوان */
  overflow: hidden;
}

/* info row */
.video-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  margin-top: auto; /* يحافظ على info row لأسفل الكارد */
}


/* info item */
.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #444;
}

/* icon wrapper */
.icon-wrap {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.icon-wrap svg path {
  fill: #121212; /* اللون الجديد */
}


    /* الحل: استبدال الصور بأيقونات SVG inline */
    .icon-wrap {
      display: inline-flex;
      width: 24px;
      height: 24px;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    }

    /* أيقونة العين (المشاهدات) */
    .icon-wrap.eye-icon::before {
      content: '';
      display: block;
      width: 20px;
      height: 20px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ba0808' stroke-width='2'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }

    /* أيقونة الساعة (الوقت) */
    .icon-wrap.time-icon::before {
      content: '';
      display: block;
      width: 20px;
      height: 20px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ba0808'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3Cpath d='M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      filter: contrast(1.2) brightness(0.95);
    }

    
    /* الحل: استبدال الصور بأيقونات SVG inline */
    .icon-wrap {
      display: inline-flex;
      width: 24px;
      height: 24px;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    }

    /* أيقونة العين (المشاهدات) */
    .icon-wrap.eye-icon::before {
      content: '';
      display: block;
      width: 20px;
      height: 20px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ba0808' stroke-width='2'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
    }

    /* أيقونة الساعة (الوقت) */
    .icon-wrap.time-icon::before {
      content: '';
      display: block;
      width: 20px;
      height: 20px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ba0808'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3Cpath d='M12.5 7H11v6l5.25 3.15.75-1.23-4.5-2.67z'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      filter: contrast(1.2) brightness(0.95);
    }

/* smaller screens */
@media (max-width: 1100px) {
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 820px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .thumb img {
    height: 150px;
  }
}
@media (max-width: 480px) {
  .videos-grid {
    grid-template-columns: 1fr;
  }
  .thumb img {
    height: 200px;
  }
  .video-wrap {
    padding: 0 12px;
  }
}



/*Contact-us*/




      .mobile-menu-content {
        padding-top: 32px !important;
        padding-bottom: 50px;
        overflow-y: auto;
        height: 100%;
      }
      .mobile-menu-toggle {
        z-index: 99999;
        top: -48px;
      }

      /* --- تنسيقات أزرار الواتساب للموبايل --- */
      @media (max-width: 768px) {
        :root {
          --btn-size: 32px;
          --btn-gap: 12px;
        }
        .whatsapp-btn.left,
        .whatsapp-btn.right {
          left: 20px !important;
          right: auto !important;
          position: fixed !important;
          z-index: 9999;
          transform: none !important;
        }
        .whatsapp-btn .circle {
          width: var(--btn-size) !important;
          height: var(--btn-size) !important;
          min-width: var(--btn-size) !important;
          line-height: var(--btn-size) !important;
        }
        .whatsapp-btn .circle img {
          width: calc(var(--btn-size) * 0.5) !important;
          height: calc(var(--btn-size) * 0.5) !important;
        }
        .whatsapp-btn .text {
          font-size: 12px !important;
          padding: 0 8px !important;
        }
        .whatsapp-btn.left {
          bottom: 20px !important;
        }
        .whatsapp-btn.right {
          bottom: calc(20px + var(--btn-size) + var(--btn-gap)) !important;
        }
      }

      /* =========================================
         New Animations Styles (Ultra Smooth & Fast Hover)
         ========================================= */
      
      /* 1. إعدادات الحركة عند التمرير (Scroll Reveal) */
      .reveal {
        opacity: 0;
        transform: translateY(30px);
        /* حركة انسيابية (تبدأ بسرعة وتهدأ في النهاية) */
        transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        visibility: hidden;
      }

      .reveal.active {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
      }

      /* التأخير الزمني للعناصر المتتالية */
      .delay-100 { transition-delay: 0.1s; }
      .delay-200 { transition-delay: 0.2s; }
      .delay-300 { transition-delay: 0.3s; }

      /* 2. إعدادات الهوفر (Hover) السريع */
      /* كروت المعلومات */
      .info-item {
        transition: transform 0.25s ease-out, box-shadow 0.25s ease-out, background-color 0.25s !important;
        cursor: default;
      }
      .info-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        background-color: #fafafa; /* تغيير طفيف في الخلفية للتمييز */
      }

      /* الفورم */
      .contact-form {
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
      }
      .contact-form:hover {
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
      }

      /* حقول الإدخال - تفاعل سريع عند التركيز */
      .form-group input, .form-group select, .form-group textarea {
        transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s !important;
      }
      .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
        transform: translateY(-2px);
      }

      /* الزر */
      .submit-btn {
        transition: transform 0.2s, background-color 0.3s !important;
      }
      .submit-btn:hover {
        transform: translateY(-3px);
      }

      /* الخريطة */
      .map-container {
        transition: transform 0.5s ease-out;
      }
      .map-section:hover .map-container {
        transform: scale(1.02);
      }

      /* منع الاختفاء عند عدم وجود JS */
      .no-js .reveal {
        opacity: 1;
        transform: none;
        visibility: visible;
      }
      

.contact-page {
            font-family: Arial, sans-serif;
            background-color: #fafafa;
            padding: 40px 20px;
        }

        .contact-page * {
            box-sizing: border-box;
        }

        .contact-page .page-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .contact-page .page-header h1 {
            color: #ba0808;
            font-size: 30px;
            font-weight: 600;
            margin: 0 0 15px 0;
            
        }

        .contact-page .page-header p {
            color: #666;
            font-size: 16px;
            margin: 0;
            
        }

        .contact-page .container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .contact-page .contact-info {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .contact-page .contact-info h2 {
            color: #c41e3a;
            font-size: 24px;
            margin: 0 0 30px 0;
            text-align: center;
        }

        .contact-page .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            gap: 15px;
        }

        .contact-page .info-item:last-child {
            margin-bottom: 0;
        }

        .contact-page .info-icon {
            width: 50px;
            height: 50px;
            background: #c41e3a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .contact-page .info-content h3 {
            color: #333;
            font-size: 16px;
            margin: 0 0 8px 0;
        }

        .contact-page .info-content p {
            color: #666;
            margin: 0;
            line-height: 1.6;
        }

        .contact-page .contact-form {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .contact-page .contact-form h2 {
            color: #c41e3a;
            font-size: 24px;
            margin: 0 0 25px 0;
            text-align: center;
        }

        .contact-page .form-group {
            margin-bottom: 20px;
        }

        .contact-page .form-group label {
            display: block;
            color: #333;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .contact-page .form-group label span {
            color: #c41e3a;
        }

        .contact-page .form-group input,
        .contact-page .form-group textarea,
        .contact-page .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            font-family: Arial, sans-serif;
        }

        .contact-page .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-page .form-group input:focus,
        .contact-page .form-group textarea:focus,
        .contact-page .form-group select:focus {
            outline: none;
            border-color: #c41e3a;
        }

        .contact-page .checkbox-group {
            background: #fef2f2;
            padding: 15px;
            border-radius: 4px;
            margin-bottom: 20px;
        }

        .contact-page .checkbox-group label {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #666;
            font-size: 0.9rem;
            font-weight: normal;
            cursor: pointer;
        }

        .contact-page .checkbox-group input[type="checkbox"] {
            width: auto;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .contact-page .submit-btn {
            width: 100%;
            padding: 15px;
            background: #000;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 900;
            cursor: pointer;
            transition: background 0.3s;
        }

        .contact-page .submit-btn:hover {
            background: #BA0808;
        }


        

        @keyframes bounce {
            0%, 100% { transform: rotate(-45deg) translateY(0); }
            50% { transform: rotate(-45deg) translateY(-10px); }
        }

        @media (max-width: 968px) {
            .contact-page .container {
                grid-template-columns: 1fr;
            }

            .contact-page .page-header h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .contact-page {
                padding: 30px 15px;
            }

            .contact-page .page-header h1 {
                font-size: 1.8rem;
            }

            .contact-page .contact-info,
            .contact-page .contact-form {
                padding: 20px;
            }

            .contact-page .contact-info h2,
            .contact-page .contact-form h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .contact-page .page-header h1 {
                font-size: 1.5rem;
            }

            .contact-page .page-header p {
                font-size: 1rem;
            }

            .contact-page .info-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .contact-page .info-content h3 {
                font-size: 1rem;
            }

            .contact-page .map-placeholder {
                height: 300px;
            }

            .contact-page .map-container {
                height: 300px;
            }
        }

/* Trial Version*/

        .tc-wrapper {
            font-family: 'Cairo', sans-serif;
            background-color: #f3f4f6; /* لون الخلفية */
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            box-sizing: border-box; /* لضمان حساب الأبعاد بشكل صحيح */
        }

        /* إعادة ضبط الصندوق داخل هذا المكون فقط */
        .tc-wrapper * {
            box-sizing: border-box;
        }

        /* النافذة المنبثقة */
        .tc-modal-container {
            background-color: #ffffff;
            width: 100%;
            max-width: 800px;
            border-radius: 8px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            position: relative;
            overflow: hidden;
            padding: 3rem;
            margin: auto; /* لضمان التوسط */
        }

        /* زر الإغلاق */
        .tc-close-btn {
            position: absolute;
            top: 2rem;
            left: 2rem;
            background: none;
            border: 0;
            font-size: 3rem;
            color: #666666;
            cursor: pointer;
            line-height: 1.5;
            transition: color 0.2s;
        }
        .tc-close-btn:hover {
            color: #BA0808;
        }

        /* رأس النموذج */
        .tc-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .tc-header h1 {
            color: #c11c1c;
            font-size: 1.75rem;
            font-weight: 700;
            margin: 0 0 0.75rem 0; /* reset margin */
        }

        .tc-header p {
            color: #6b7280;
            font-size: 0.95rem;
            font-weight: 600;
            margin: 0;
        }

        /* شبكة الحقول */
        .tc-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        /* مجموعة الإدخال */
        .tc-input-group {
            display: flex;
            flex-direction: column;
        }

        .tc-input-group label {
            font-weight: 700;
            color: #121212;
            margin-bottom: 0.5rem;
            display: block;
        }

        .tc-input-field {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #9ca3af;
            border-radius: 4px;
            font-family: 'Cairo', sans-serif;
            font-size: 1rem;
            color: #4b5563;
            background-color: white;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
            height: 48px; /* توحيد الارتفاع */
        }

        .tc-input-field:focus {
            border-color: #4b5563;
            box-shadow: 0 0 0 1px #a3a3a3;
        }

        /* القائمة المنسدلة */
        .tc-select-wrapper {
            position: relative;
            width: 100%;
        }
        
        .tc-input-field.tc-select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
        }

        .tc-select-arrow {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: #374151;
            display: flex;
            align-items: center;
        }

        /* الجزء السفلي */
        .tc-footer-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;
        }

        /* زر الإرسال */
        .tc-submit-btn {
            background-color: #111111;
            color: white;
            font-weight: 700;
            font-size: 1.125rem;
            padding: 0.75rem 2.5rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-family: 'Cairo', sans-serif;
        }

        .tc-submit-btn:hover {
            background-color: #BA0808;
        }

        /* الكابتشا */
        .tc-recaptcha-box {
            background-color: #f9f9f9;
            border: 1px solid #d1d5db;
            border-radius: 2px;
            padding: 0.75rem;
            width: 300px;
            height: 74px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
            
        }

        .tc-recaptcha-left {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            
        }

        .tc-checkbox-fake {
            width: 28px;
            height: 28px;
            border: 2px solid #c1c1c1;
            border-radius: 2px;
            background-color: white;
            cursor: pointer;
        }
        
        .tc-checkbox-fake:hover {
            border-color: #BA0808;
        }

        .tc-recaptcha-text {
            font-size: 0.875rem;
            font-weight: 500;
            color: #374151;
        }

        .tc-recaptcha-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            color: #6b7280;
            opacity: 0.7;
        }
        
        .tc-recaptcha-logo {
            width: 32px;
            height: 32px;
            margin-bottom: 2px;
        }

        .tc-recaptcha-links {
            font-size: 8px;
            display: flex;
            gap: 4px;
        }

        /* التجاوب */
        @media (max-width: 768px) {
            .tc-modal-container {
                padding: 2rem;
            }
            
            .tc-header h1 {
                font-size: 1.5rem;
            }

            .tc-form-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .tc-footer-section, .tc-submit-btn, .tc-recaptcha-box {
                width: 100%;
                align-items: center;
            }
            
            .tc-submit-btn {
                width: 100%;
            }
        }



/* Offer-Price*/



    .quote-form-scope {
    font-family: 'Cairo', sans-serif;
    background-color: #333333; /* خلفية هذا القسم فقط */
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* عزل التنسيقات الأساسية */
    direction: rtl;
    text-align: right;
    box-sizing: border-box;
}

/* تصفير العناصر داخل هذا النطاق فقط */
.quote-form-scope * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =========================================
   حاوية النموذج (The Card)
   ========================================= */
.quote-form-scope .card {
    background-color: #ffffff;
    width: 100%;
    max-width: 900px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 40px;
    position: relative;
    /* إعادة تعيين حجم الخط والمسافات */
    font-size: 16px; 
    line-height: 1.5;
    color: #BA0808;
}

/* زر الإغلاق (X) */
.quote-form-scope .close-btn {
    position: absolute;
    top: 32px;
    left: 24px;
    background: transparent;
    border: 1;
    cursor: pointer;
    color: #121212;
    transition: color 0.2s;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.quote-form-scope .close-btn:hover {
    color: #BA0808;
}

/* =========================================
   رأس النموذج (Header)
   ========================================= */
.quote-form-scope .header {
    text-align: center;
    margin-bottom: 32px;
}

.quote-form-scope .header h1 {
    color: #BA0808;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.quote-form-scope .header p {
    color: #5b5b5b;
    font-size: 1rem;
}

/* =========================================
   تنسيق الحقول (Inputs & Layout)
   ========================================= */
.quote-form-scope .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 20px;
}


@media (min-width: 768px) {
    .quote-form-scope .form-row.two-cols {
        grid-template-columns: 1fr 1fr;
    }
}

.quote-form-scope .form-group {
    display: flex;
    flex-direction: column;
}

.quote-form-scope .form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #121212;
    font-size: 0.9rem;
    display: inline-block;
}

.quote-form-scope .required {
    color: #BA0808;
}

.quote-form-scope .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
    color: #BA0808;
    height: 50px;
    display: block;
}

.quote-form-scope .form-control:focus {
    border-color: #BA0808;
}

/* =========================================
   القائمة المنسدلة (Select Box)
   ========================================= */
.quote-form-scope .select-wrapper {
    position: relative;
}

.quote-form-scope select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-color: white;
    cursor: pointer;
    color: #6b8073;
}

.quote-form-scope .select-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 16px;
    height: 16px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   مربعات الاختيار (Checkboxes Grid)
   ========================================= */
.quote-form-scope .systems-section {
    margin: 32px 0;
}

.quote-form-scope .section-title {
    display: block;
    font-weight: 400;
    margin-bottom: 16px;
    color: #121212;
}

.quote-form-scope .checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .quote-form-scope .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .quote-form-scope .checkbox-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.quote-form-scope .checkbox-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    background-color: transparent;
}

.quote-form-scope .checkbox-item:hover {
    background-color: #f9fafb;
}

.quote-form-scope .checkbox-item span {
    font-size: 0.9rem;
    color: #4b5563;
}

/* =========================================
   تخصيص شكل الـ Checkbox (Custom Checkbox)
   ========================================= */
.quote-form-scope .hidden-checkbox {
    display: none;
}

.quote-form-scope .custom-check {
    width: 20px;
    height: 20px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    background-color: #fff;
}

.quote-form-scope .checkbox-item input:checked + .custom-check {
    background-color: #BA0808;
    border-color: #BA0808;
}

.quote-form-scope .checkbox-item input:checked + .custom-check::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
    display: block;
}

/* =========================================
   الزر والفوتر (Submit Button)
   ========================================= */
.quote-form-scope .divider {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 24px 0;
    width: 100%;
}

.quote-form-scope .submit-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.quote-form-scope .submit-btn {
    background-color: #1a1a1a;
    color: white;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 48px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
    height: auto;
}

.quote-form-scope .submit-btn:hover {
    background-color: #BA0808;
}

@media (min-width: 768px) {
    .quote-form-scope .submit-btn {
        width: auto;
    }
}


/* Data_Filled*/

        .promo-form-wrapper {
            font-family: 'Tajawal', sans-serif;
            width: 100%;
            display: flex;
            justify-content: center;
            --primary-blue: #003380;
            --highlight-red: #BA0808;
            --text-color: #333;
            --border-color: #ccc;
        }

        /* تطبيق الـ Box-sizing فقط على عناصرنا */
        .promo-form-wrapper * {
            box-sizing: border-box;
        }

        /* حاوية المودال الرئيسية */
        .promo-form-wrapper .modal-container {
            background-color: white;
            width: 100%;
            max-width: 650px;
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            overflow: hidden;
            position: relative;
            display: flex;
            flex-direction: column;
            max-height: 95vh;
            overflow-y: auto;
            margin: 10px; /* هامش بسيط للهواتف */
        }

        /* تنسيق شريط التمرير */
        .promo-form-wrapper .modal-container::-webkit-scrollbar {
            width: 8px;
        }
        .promo-form-wrapper .modal-container::-webkit-scrollbar-track {
            background: #f1f1f1; 
        }
        .promo-form-wrapper .modal-container::-webkit-scrollbar-thumb {
            background: #888; 
            border-radius: 4px;
        }

        /* رأس المودال */
        .promo-form-wrapper .modal-header {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #eee;
            position: relative;
            color: #666;
            font-size: 14px;
            font-weight: 500;
        }

        .promo-form-wrapper .close-btn {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            font-size: 20px;
            color: #333;
            border: 1px solid #333;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        /* البانر الإعلاني */
        .promo-form-wrapper .banner {
            background-color: var(--primary-blue);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0;
            overflow: hidden;
            position: relative;
            min-height: 220px;
        }

        .promo-form-wrapper .banner-image {
            width: 45%;
            position: relative;
            height: 220px;
        }

        .promo-form-wrapper .banner-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block; /* لمنع المسافات الزائدة */
        }

        .promo-form-wrapper .banner-content {
            width: 55%;
            padding: 20px;
            text-align: center;
            z-index: 2;
        }

        .promo-form-wrapper .banner-content h3 {
            font-size: 18px;
            margin: 0 0 5px 0; /* إعادة ضبط الهوامش */
            font-weight: 500;
            line-height: 1.4;
        }

        .promo-form-wrapper .discount-number {
            font-size: 80px;
            font-weight: 800;
            line-height: 1;
            color: transparent;
            -webkit-text-stroke: 2px var(--highlight-red);
            position: relative;
            display: inline-block;
            font-family: sans-serif; /* لضمان ظهور الرقم بشكل صحيح */
        }
        
        .promo-form-wrapper .discount-number::before {
            content: '30';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--highlight-red);
            opacity: 1;
            z-index: -1;
        }
        
        .promo-form-wrapper .percent-symbol {
            font-size: 20px;
            vertical-align: super;
            color: white;
            background: #222;
            padding: 2px 5px;
            border-radius: 50%;
            position: absolute;
            top: 15px;
            left: -15px;
            font-family: sans-serif;
            text-shadow: none;
            -webkit-text-stroke: 0;
        }

        .promo-form-wrapper .sub-text {
            font-size: 16px;
            margin-top: 10px;
        }

        .promo-form-wrapper .brand-name {
            color: var(--highlight-red);
            font-weight: bold;
            font-size: 18px;
            margin-top: 5px;
            display: block;
        }

        /* النموذج */
        .promo-form-wrapper .form-content {
            padding: 25px;
        }

        .promo-form-wrapper .form-group {
            margin-bottom: 20px;
        }

        .promo-form-wrapper .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 14px;
            color: #333;
            text-align: right;
        }

        .promo-form-wrapper .required {
            float: left;
            margin-right: 5px;
            color: red;
        }

        .promo-form-wrapper .custom-input {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background-color: #f9f9f9;
            font-family: 'Tajawal', sans-serif;
            font-size: 14px;
            outline: none;
            transition: border-color 0.3s;
            color: #333;
        }

        .promo-form-wrapper .custom-input:focus {
            border-color: var(--primary-blue);
            background-color: white;
        }

        .promo-form-wrapper select.custom-input {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: left 10px center;
            background-size: 16px;
        }

        /* محاكاة الكابتشا */
        .promo-form-wrapper .captcha-container {
            border: 1px solid #d3d3d3;
            background: #f9f9f9;
            width: fit-content;
            padding: 10px 20px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            margin-left: auto;
        }

        .promo-form-wrapper .captcha-checkbox {
            width: 24px;
            height: 24px;
            border: 2px solid #c1c1c1;
            border-radius: 2px;
            cursor: pointer;
            background: white;
        }

        .promo-form-wrapper .captcha-text {
            font-size: 13px;
            color: #555;
            font-weight: 500;
        }
        
        .promo-form-wrapper .captcha-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-right: 20px;
            color: #555;
        }
        
        .promo-form-wrapper .captcha-logo img {
            width: 25px;
            opacity: 0.7;
        }
        .promo-form-wrapper .captcha-logo span {
            font-size: 8px;
        }

        /* زر الإرسال */
        .promo-form-wrapper .custom-submit-btn {
            background-color: #1a1a1a;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            border-radius: 8px;
            cursor: pointer;

                        /* التعديل: الزر على اليمين */
            float: right;
            font-family: 'Tajawal', sans-serif;
            font-weight: bold;
            transition: background 0.3s;
        }

        .promo-form-wrapper .custom-submit-btn:hover {
            background-color: #BA0808;
        }

        /* Media Queries - يجب أن تكون داخل النطاق أيضاً */
        @media (max-width: 480px) {
            .promo-form-wrapper .banner {
                flex-direction: column-reverse;
                text-align: center;
                min-height: auto;
            }
            .promo-form-wrapper .banner-image, 
            .promo-form-wrapper .banner-content {
                width: 100%;
            }
            .promo-form-wrapper .banner-image {
                height: 180px;
            }
            .promo-form-wrapper .banner-content h3 {
                font-size: 16px;
            }
            .promo-form-wrapper .discount-number {
                font-size: 60px;
            }
            .promo-form-wrapper .modal-header {
                font-size: 12px;
            }
        }

/* Fixed_Assests*/

 .assets-page {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
        }

        .assets-page * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .assets-page .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 300"><rect fill="%23222" width="1200" height="300"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 80px 20px;
            text-align: center;
        }

        .assets-page .hero h1 {
            color: white;
            font-size: 2.5rem;
            margin: 0;
            font-weight: bold;
        }

        .assets-page .breadcrumb {
            background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
            padding: 12px 20px;
            color: white;
            font-size: 0.9rem;
        }

        .assets-page .breadcrumb-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .assets-page .breadcrumb a {
            color: white;
            text-decoration: none;
        }

        .assets-page .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .assets-page .page-title {
            color: #c41e3a;
            font-size: 2rem;
            text-align: center;
            margin: 0 0 30px 0;
            font-weight: bold;
        }

        .assets-page .intro-box {
            background: white;
            padding: 30px;
            margin-bottom: 40px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .assets-page .intro-text {
            text-align: justify;
            color: #333;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        .assets-page .content-box {
            background: white;
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .assets-page .section-title {
            color: #c41e3a;
            font-size: 1.6rem;
            text-align: center;
            margin: 0 0 30px 0;
            font-weight: bold;
        }

        .assets-page .sub-title {
            color: #333;
            font-size: 1.3rem;
            margin: 25px 0 15px;
            font-weight: bold;
        }

        .assets-page ul {
            list-style: none;
            padding: 0;
        }

        .assets-page ul li {
            padding: 12px 0 12px 25px;
            border-bottom: 1px solid #eee;
            position: relative;
            line-height: 1.8;
        }

        .assets-page ul li:last-child {
            border-bottom: none;
        }

        .assets-page ul li:before {
            content: "•";
            color: #c41e3a;
            font-weight: bold;
            font-size: 1.4em;
            position: absolute;
            right: 0;
            top: 8px;
        }

        @media (max-width: 768px) {
            .assets-page .hero {
                padding: 60px 15px;
            }

            .assets-page .hero h1 {
                font-size: 2rem;
            }

            .assets-page .breadcrumb {
                font-size: 0.8rem;
                padding: 10px 15px;
            }

            .assets-page .container {
                padding: 30px 15px;
            }

            .assets-page .page-title {
                font-size: 1.6rem;
            }

            .assets-page .section-title {
                font-size: 1.4rem;
            }

            .assets-page .intro-box,
            .assets-page .content-box {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .assets-page .hero {
                padding: 50px 10px;
            }

            .assets-page .hero h1 {
                font-size: 1.6rem;
            }

            .assets-page .page-title {
                font-size: 1.4rem;
            }

            .assets-page .section-title {
                font-size: 1.2rem;
            }

            .assets-page .sub-title {
                font-size: 1.1rem;
            }

            .assets-page .intro-box,
            .assets-page .content-box {
                padding: 15px;
            }

            .assets-page ul li {
                padding: 10px 0 10px 20px;
                font-size: 0.95rem;
            }
        }


/* Cash_transactions & checks */

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23333" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero h1 {
    font-size: 3em;
    font-weight: 300;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    background: linear-gradient(to left, #c41230 0%, #8b0000 100%);
    padding: 15px 0;
}

.breadcrumb-inner {
    color: white;
    text-align: center;
    font-size: 15px;
}

.breadcrumb-inner a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-inner a:hover {
    opacity: 0.8;
}

/* Main Content */
.assets-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
}

.page-title {
    color: #c41230;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.intro-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.intro-text {
    color: #555;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title {
    color: #c41230;
    font-size: 2em;
    margin-bottom: 25px;
    margin-top: 35px;
    font-weight: 400;
    text-align: center;
}

.section-title:first-child {
    margin-top: 0;
}

.sub-title {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 500;
}

.content-box ul {
    list-style: none;
    padding: 0;
}

.content-box ul li {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
    padding-right: 30px;
    position: relative;
    text-align: right;
}

.content-box ul li:before {
    content: "•";
    color: #c41230;
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: -2px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .assets-page .container {
        padding: 30px 20px;
    }
    
    .hero {
        height: 250px;
    }
    
    .hero h1 {
        font-size: 1.8em;
        padding: 0 20px;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5em;
    }
    
    .page-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box {
        padding: 20px;
    }
    
    .content-box ul li {
        font-size: 14px;
    }
}


/* E-invoice */

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23333" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero h1 {
    font-size: 3em;
    font-weight: 300;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    background: linear-gradient(to left, #c41230 0%, #8b0000 100%);
    padding: 15px 0;
}

.breadcrumb-inner {
    color: white;
    text-align: center;
    font-size: 15px;
}

.breadcrumb-inner a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-inner a:hover {
    opacity: 0.8;
}

/* Main Content */
.assets-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
}

.page-title {
    color: #c41230;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.intro-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.intro-text {
    color: #555;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title {
    color: #c41230;
    font-size: 2em;
    margin-bottom: 25px;
    margin-top: 35px;
    font-weight: 400;
    text-align: center;
}

.section-title:first-child {
    margin-top: 0;
}

.sub-title {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 500;
}

.content-box ul {
    list-style: none;
    padding: 0;
}

.content-box ul li {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
    padding-right: 30px;
    position: relative;
    text-align: right;
}

.content-box ul li:before {
    content: "•";
    color: #c41230;
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: -2px;
}

.content-box p.intro-text {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .assets-page .container {
        padding: 30px 20px;
    }
    
    .hero {
        height: 250px;
    }
    
    .hero h1 {
        font-size: 1.8em;
        padding: 0 20px;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5em;
    }
    
    .page-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box {
        padding: 20px;
    }
    
    .content-box ul li {
        font-size: 14px;
    }
}


/* General Accounts */

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23333" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero h1 {
    font-size: 3em;
    font-weight: 300;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    background: linear-gradient(to left, #c41230 0%, #8b0000 100%);
    padding: 15px 0;
}

.breadcrumb-inner {
    color: white;
    text-align: center;
    font-size: 15px;
}

.breadcrumb-inner a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-inner a:hover {
    opacity: 0.8;
}

/* Main Content */
.assets-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
}

.page-title {
    color: #c41230;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.intro-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.intro-text {
    color: #555;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title {
    color: #c41230;
    font-size: 2em;
    margin-bottom: 25px;
    margin-top: 35px;
    font-weight: 400;
    text-align: center;
}

.section-title:first-child {
    margin-top: 0;
}

.sub-title {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 500;
}

.content-box ul {
    list-style: none;
    padding: 0;
}

.content-box ul li {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
    padding-right: 30px;
    position: relative;
    text-align: right;
}

.content-box ul li:before {
    content: "•";
    color: #c41230;
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: -2px;
}

.content-box p.intro-text {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .assets-page .container {
        padding: 30px 20px;
    }
    
    .hero {
        height: 250px;
    }
    
    .hero h1 {
        font-size: 1.8em;
        padding: 0 20px;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5em;
    }
    
    .page-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box {
        padding: 20px;
    }
    
    .content-box ul li {
        font-size: 14px;
    }
}


/* Warehouses */

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23333" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero h1 {
    font-size: 3em;
    font-weight: 300;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    background: linear-gradient(to left, #c41230 0%, #8b0000 100%);
    padding: 15px 0;
}

.breadcrumb-inner {
    color: white;
    text-align: center;
    font-size: 15px;
}

.breadcrumb-inner a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-inner a:hover {
    opacity: 0.8;
}

/* Main Content */
.assets-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
}

.page-title {
    color: #c41230;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.intro-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.intro-text {
    color: #555;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title {
    color: #c41230;
    font-size: 2em;
    margin-bottom: 25px;
    margin-top: 35px;
    font-weight: 400;
    text-align: center;
}

.section-title:first-child {
    margin-top: 0;
}

.sub-title {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 500;
}

.content-box ul {
    list-style: none;
    padding: 0;
}

.content-box ul li {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
    padding-right: 30px;
    position: relative;
    text-align: right;
}

.content-box ul li:before {
    content: "•";
    color: #c41230;
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: -2px;
}

.content-box p.intro-text {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .assets-page .container {
        padding: 30px 20px;
    }
    
    .hero {
        height: 250px;
    }
    
    .hero h1 {
        font-size: 1.8em;
        padding: 0 20px;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5em;
    }
    
    .page-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box {
        padding: 20px;
    }
    
    .content-box ul li {
        font-size: 14px;
    }
}


/* Purchases */

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23333" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero h1 {
    font-size: 3em;
    font-weight: 300;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    background: linear-gradient(to left, #c41230 0%, #8b0000 100%);
    padding: 15px 0;
}

.breadcrumb-inner {
    color: white;
    text-align: center;
    font-size: 15px;
}

.breadcrumb-inner a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-inner a:hover {
    opacity: 0.8;
}

/* Main Content */
.assets-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
}

.page-title {
    color: #c41230;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.intro-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.intro-text {
    color: #555;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title {
    color: #c41230;
    font-size: 2em;
    margin-bottom: 25px;
    margin-top: 35px;
    font-weight: 400;
    text-align: center;
}

.section-title:first-child {
    margin-top: 0;
}

.sub-title {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 500;
}

.content-box ul {
    list-style: none;
    padding: 0;
}

.content-box ul li {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
    padding-right: 30px;
    position: relative;
    text-align: right;
}

.content-box ul li:before {
    content: "•";
    color: #c41230;
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: -2px;
}

.content-box p.intro-text {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .assets-page .container {
        padding: 30px 20px;
    }
    
    .hero {
        height: 250px;
    }
    
    .hero h1 {
        font-size: 1.8em;
        padding: 0 20px;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5em;
    }
    
    .page-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box {
        padding: 20px;
    }
    
    .content-box ul li {
        font-size: 14px;
    }
}


/* Sales */

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23333" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero h1 {
    font-size: 3em;
    font-weight: 300;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    background: linear-gradient(to left, #c41230 0%, #8b0000 100%);
    padding: 15px 0;
}

.breadcrumb-inner {
    color: white;
    text-align: center;
    font-size: 15px;
}

.breadcrumb-inner a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-inner a:hover {
    opacity: 0.8;
}

/* Main Content */
.assets-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
}

.page-title {
    color: #c41230;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.intro-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.intro-text {
    color: #555;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title {
    color: #c41230;
    font-size: 2em;
    margin-bottom: 25px;
    margin-top: 35px;
    font-weight: 400;
    text-align: center;
}

.section-title:first-child {
    margin-top: 0;
}

.sub-title {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 500;
}

.content-box ul {
    list-style: none;
    padding: 0;
}

.content-box ul li {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
    padding-right: 30px;
    position: relative;
    text-align: right;
}

.content-box ul li:before {
    content: "•";
    color: #c41230;
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: -2px;
}

.content-box p.intro-text {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .assets-page .container {
        padding: 30px 20px;
    }
    
    .hero {
        height: 250px;
    }
    
    .hero h1 {
        font-size: 1.8em;
        padding: 0 20px;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5em;
    }
    
    .page-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box {
        padding: 20px;
    }
    
    .content-box ul li {
        font-size: 14px;
    }
}


/* Personnel Affairs */

.hero {
        background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
        padding: 80px 0;
        text-align: center;
        color: #fff;
      }

      .hero h1 {
        font-size: 42px;
        font-weight: 700;
        margin: 0;
      }

      /* Breadcrumb */
      .breadcrumb {
        background: #fff;
        padding: 20px 0;
        border-bottom: 1px solid #e0e0e0;
      }

      .breadcrumb-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        color: #666;
        font-size: 14px;
      }

      .breadcrumb-inner a {
        color: #d32f2f;
        text-decoration: none;
        transition: color 0.3s;
      }

      .breadcrumb-inner a:hover {
        color: #b71c1c;
        text-decoration: underline;
      }

      /* Main Content */
      .assets-page {
        background: #f8f9fa;
        min-height: 100vh;
      }

      .page-title {
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        color: #d32f2f;
        margin: 50px 0 30px;
      }

      .intro-box {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin-bottom: 40px;
      }

      .intro-text {
        font-size: 17px;
        line-height: 2;
        color: #555;
        text-align: justify;
      }

      .content-box {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin-bottom: 60px;
      }

      .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #d32f2f;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 3px solid #d32f2f;
      }

      .sub-title {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        margin: 30px 0 20px;
        padding-right: 15px;
        border-right: 4px solid #d32f2f;
      }

      .content-box p {
        font-size: 16px;
        line-height: 2;
        color: #555;
        margin-bottom: 20px;
        text-align: justify;
      }

      .content-box ul {
        list-style: none;
        padding: 0;
        margin: 20px 0;
      }

      .content-box ul li {
        font-size: 16px;
        line-height: 1.9;
        color: #555;
        margin-bottom: 15px;
        padding-right: 30px;
        position: relative;
      }

      .content-box ul li:before {
        content: "✓";
        position: absolute;
        right: 0;
        color: #d32f2f;
        font-weight: bold;
        font-size: 18px;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .hero h1 {
          font-size: 28px;
        }

        .page-title {
          font-size: 26px;
        }

        .section-title {
          font-size: 24px;
        }

        .intro-box, .content-box {
          padding: 25px;
        }
      }

/* Wages and salaries */

.hero {
        background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
        padding: 80px 0;
        text-align: center;
        color: #fff;
      }

      .hero h1 {
        font-size: 42px;
        font-weight: 700;
        margin: 0;
      }

      /* Breadcrumb */
      .breadcrumb {
        background: #fff;
        padding: 20px 0;
        border-bottom: 1px solid #e0e0e0;
      }

      .breadcrumb-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        color: #666;
        font-size: 14px;
      }

      .breadcrumb-inner a {
        color: #d32f2f;
        text-decoration: none;
        transition: color 0.3s;
      }

      .breadcrumb-inner a:hover {
        color: #b71c1c;
        text-decoration: underline;
      }

      /* Main Content */
      .assets-page {
        background: #f8f9fa;
        min-height: 100vh;
      }

      .page-title {
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        color: #d32f2f;
        margin: 50px 0 30px;
      }

      .intro-box {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin-bottom: 40px;
      }

      .intro-text {
        font-size: 17px;
        line-height: 2;
        color: #555;
        text-align: justify;
      }

      .content-box {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin-bottom: 60px;
      }

      .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #d32f2f;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 3px solid #d32f2f;
      }

      .sub-title {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        margin: 30px 0 20px;
        padding-right: 15px;
        border-right: 4px solid #d32f2f;
      }

      .content-box p {
        font-size: 16px;
        line-height: 2;
        color: #555;
        margin-bottom: 20px;
        text-align: justify;
      }

      .content-box ul {
        list-style: none;
        padding: 0;
        margin: 20px 0;
      }

      .content-box ul li {
        font-size: 16px;
        line-height: 1.9;
        color: #555;
        margin-bottom: 15px;
        padding-right: 30px;
        position: relative;
      }

      .content-box ul li:before {
        content: "✓";
        position: absolute;
        right: 0;
        color: #d32f2f;
        font-weight: bold;
        font-size: 18px;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .hero h1 {
          font-size: 28px;
        }

        .page-title {
          font-size: 26px;
        }

        .section-title {
          font-size: 24px;
        }

        .intro-box, .content-box {
          padding: 25px;
        }
      }


/* Attendance and departure */

.hero {
        background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
        padding: 80px 0;
        text-align: center;
        color: #fff;
      }

    .hero {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
              url('/images/image-22-2.png');  /* ← الصورة هنا */
  background-size: cover;
  background-position: center;

}
      .hero h1 {
        font-size: 42px;
        font-weight: 700;
        margin: 0;
      }

      /* Breadcrumb */
      .breadcrumb {
        background: #fff;
        padding: 20px 0;
        border-bottom: 1px solid #e0e0e0;
      }

      .breadcrumb-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        color: #666;
        font-size: 14px;
      }

      .breadcrumb-inner a {
        color: #d32f2f;
        text-decoration: none;
        transition: color 0.3s;
      }

      .breadcrumb-inner a:hover {
        color: #b71c1c;
        text-decoration: underline;
      }

      /* Main Content */
      .assets-page {
        background: #f8f9fa;
        min-height: 100vh;
      }

      .page-title {
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        color: #d32f2f;
        margin: 50px 0 30px;
      }

      .intro-box {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin-bottom: 40px;
      }

      .intro-text {
        font-size: 17px;
        line-height: 2;
        color: #555;
        text-align: justify;
      }

      .content-box {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin-bottom: 60px;
      }

      .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #d32f2f;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 3px solid #d32f2f;
      }

      .sub-title {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        margin: 30px 0 20px;
        padding-right: 15px;
        border-right: 4px solid #d32f2f;
      }

      .content-box p {
        font-size: 16px;
        line-height: 2;
        color: #555;
        margin-bottom: 20px;
        text-align: justify;
      }

      .content-box ul {
        list-style: none;
        padding: 0;
        margin: 20px 0;
      }

      .content-box ul li {
        font-size: 16px;
        line-height: 1.9;
        color: #555;
        margin-bottom: 15px;
        padding-right: 30px;
        position: relative;
      }

      .content-box ul li:before {
        content: "✓";
        position: absolute;
        right: 0;
        color: #d32f2f;
        font-weight: bold;
        font-size: 18px;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .hero h1 {
          font-size: 28px;
        }

        .page-title {
          font-size: 26px;
        }

        .section-title {
          font-size: 24px;
        }

        .intro-box, .content-box {
          padding: 25px;
        }
      }


/* Transportation */

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23333" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero h1 {
    font-size: 3em;
    font-weight: 300;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    background: linear-gradient(to left, #c41230 0%, #8b0000 100%);
    padding: 15px 0;
}

.breadcrumb-inner {
    color: white;
    text-align: center;
    font-size: 15px;
}

.breadcrumb-inner a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-inner a:hover {
    opacity: 0.8;
}

/* Main Content */
.assets-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
}

.page-title {
    color: #c41230;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

.intro-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.intro-text {
    color: #555;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}

/* Content Image Section */
.content-image {
    margin: 40px 0;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.workflow-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title {
    color: #c41230;
    font-size: 2em;
    margin-bottom: 25px;
    margin-top: 35px;
    font-weight: 400;
    text-align: center;
}

.section-title:first-child {
    margin-top: 0;
}

.sub-title {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 500;
}

.content-box ul {
    list-style: none;
    padding: 0;
}

.content-box ul li {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
    padding-right: 30px;
    position: relative;
    text-align: right;
}

.content-box ul li:before {
    content: "•";
    color: #c41230;
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: -2px;
}

.content-box p.intro-text {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .assets-page .container {
        padding: 30px 20px;
    }
    
    .hero {
        height: 250px;
    }
    
    .hero h1 {
        font-size: 1.8em;
        padding: 0 20px;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box,
    .content-image {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5em;
    }
    
    .page-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box,
    .content-image {
        padding: 20px;
    }
    
    .content-box ul li {
        font-size: 14px;
    }
}


/* Car maintenance */

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23333" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero h1 {
    font-size: 3em;
    font-weight: 300;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    background: linear-gradient(to left, #c41230 0%, #8b0000 100%);
    padding: 15px 0;
}

.breadcrumb-inner {
    color: white;
    text-align: center;
    font-size: 15px;
}

.breadcrumb-inner a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-inner a:hover {
    opacity: 0.8;
}

/* Main Content */
.assets-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
}

.page-title {
    color: #c41230;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Content Image Section - appears first */
.content-image {
    margin: 0 0 40px 0;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.workflow-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.intro-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.intro-text {
    color: #555;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title {
    color: #c41230;
    font-size: 2em;
    margin-bottom: 25px;
    margin-top: 35px;
    font-weight: 400;
    text-align: center;
}

.section-title:first-child {
    margin-top: 0;
}

.sub-title {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 500;
}

.content-box ul {
    list-style: none;
    padding: 0;
}

.content-box ul li {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
    padding-right: 30px;
    position: relative;
    text-align: right;
}

.content-box ul li:before {
    content: "•";
    color: #c41230;
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: -2px;
}

.content-box p.intro-text {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .assets-page .container {
        padding: 30px 20px;
    }
    
    .hero {
        height: 250px;
    }
    
    .hero h1 {
        font-size: 1.8em;
        padding: 0 20px;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box,
    .content-image {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5em;
    }
    
    .page-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box,
    .content-image {
        padding: 20px;
    }
    
    .content-box ul li {
        font-size: 14px;
    }
}

/* Customs clearance */

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23333" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero h1 {
    font-size: 3em;
    font-weight: 300;
    text-align: center;
}

/* Breadcrumb */
.breadcrumb {
    background: linear-gradient(to left, #c41230 0%, #8b0000 100%);
    padding: 15px 0;
}

.breadcrumb-inner {
    color: white;
    text-align: center;
    font-size: 15px;
}

.breadcrumb-inner a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-inner a:hover {
    opacity: 0.8;
}

/* Main Content */
.assets-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
}

.page-title {
    color: #c41230;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Content Image Section - appears first */
.content-image {
    margin: 0 0 40px 0;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.workflow-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.intro-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.intro-text {
    color: #555;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title {
    color: #c41230;
    font-size: 2em;
    margin-bottom: 25px;
    margin-top: 35px;
    font-weight: 400;
    text-align: center;
}

.section-title:first-child {
    margin-top: 0;
}

.sub-title {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
    margin-top: 30px;
    font-weight: 500;
}

.content-box ul {
    list-style: none;
    padding: 0;
}

.content-box ul li {
    color: #555;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
    padding-right: 30px;
    position: relative;
    text-align: right;
}

.content-box ul li:before {
    content: "•";
    color: #c41230;
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: -2px;
}

.content-box p.intro-text {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .assets-page .container {
        padding: 30px 20px;
    }
    
    .hero {
        height: 250px;
    }
    
    .hero h1 {
        font-size: 1.8em;
        padding: 0 20px;
    }
    
    .page-title {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box,
    .content-image {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5em;
    }
    
    .page-title {
        font-size: 1.6em;
    }
    
    .intro-box,
    .content-box,
    .content-image {
        padding: 20px;
    }
    
    .content-box ul li {
        font-size: 14px;
    }
}

/* Sports Activities */

.hero {
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                    url('https://images.unsplash.com/photo-1579952363873-27f3bade9f55?w=1200');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 80px 0;
        text-align: center;
        color: #fff;
        position: relative;
      }

      .hero h1 {
        font-size: 42px;
        font-weight: 700;
        margin: 0;
        position: relative;
        z-index: 2;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
      }

      /* Breadcrumb */
      .breadcrumb {
        background: #fff;
        padding: 20px 0;
        border-bottom: 1px solid #e0e0e0;
      }

      .breadcrumb-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        color: #666;
        font-size: 14px;
      }

      .breadcrumb-inner a {
        color: #d32f2f;
        text-decoration: none;
        transition: color 0.3s;
      }

      .breadcrumb-inner a:hover {
        color: #b71c1c;
        text-decoration: underline;
      }

      /* Main Content */
      .assets-page {
        background: #f8f9fa;
        min-height: 100vh;
      }

      .page-title {
        text-align: center;
        font-size: 36px;
        font-weight: 700;
        color: #d32f2f;
        margin: 50px 0 30px;
      }

      /* Diagram Section */
      .diagram-section {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin-bottom: 40px;
        text-align: center;
      }

      .diagram-section img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
      }

      .intro-box {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin-bottom: 40px;
      }

      .intro-text {
        font-size: 17px;
        line-height: 2;
        color: #555;
        text-align: justify;
      }

      .content-box {
        background: #fff;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin-bottom: 60px;
      }

      .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #d32f2f;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 3px solid #d32f2f;
      }

      .sub-title {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        margin: 30px 0 20px;
        padding-right: 15px;
        border-right: 4px solid #d32f2f;
      }

      .content-box p {
        font-size: 16px;
        line-height: 2;
        color: #555;
        margin-bottom: 20px;
        text-align: justify;
      }

      .content-box ul {
        list-style: none;
        padding: 0;
        margin: 20px 0;
      }

      .content-box ul li {
        font-size: 16px;
        line-height: 1.9;
        color: #555;
        margin-bottom: 15px;
        padding-right: 30px;
        position: relative;
      }

      .content-box ul li:before {
        content: "✓";
        position: absolute;
        right: 0;
        color: #d32f2f;
        font-weight: bold;
        font-size: 18px;
      }

      /* Responsive Design */
      @media (max-width: 768px) {
        .hero h1 {
          font-size: 28px;
        }

        .page-title {
          font-size: 26px;
        }

        .section-title {
          font-size: 24px;
        }

        .intro-box, .content-box {
          padding: 25px;
        }
      }

@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@400;700&display=swap');

html,
body,
*,
*::before,
*::after {
  font-family: 'Noto Kufi Arabic', sans-serif !important;
}




     
