#scroll-progress { position: fixed; top: 0; right: 0; width: 0%; height: 3px; background: linear-gradient(90deg, #A19574, #5F483C); z-index: 99999; }



@font-face {
    font-family: 'Frutiger Arabic';
    src: url('./font/FrutigerLTArabic45Light.tt') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* تعريف الوزن العادي */
@font-face {
    font-family: 'Frutiger Arabic';
    src: url('./font/FrutigerLTArabic55Roman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* تعريف الوزن العريض */
@font-face {
    font-family: 'Frutiger Arabic';
    src: url('./font/FrutigerLTArabic65Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* تعريف الوزن الأسود */
@font-face {
    font-family: 'Frutiger Arabic';
    src: url('./font/frutigerltarabic75black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}


:root {
  /* --- ألوان الهوية الرسمية (NSI Brand Colors) --- */
  --brand-gold: #A19574;          /* اللون الذهبي الأساسي في الدليل */
  --brand-gold-hover: #8C8163;    /* درجة أغمق قليلاً للـ Hover */
  --brand-cream: #F1EEDB;         /* اللون الكريمي الفاتح الثانوي (للتباين والنصوص) */
  --color-dark: #0a0a0a;          /* الخلفية الداكنة الأساسية للموقع */
  --color-light: #f5f5f3;         /* الخلفية الفاتحة */
  --color-white: #ffffff;
  
  /* --- ألوان النصوص --- */
  --color-text: #1a1a1a;          /* لون النص الأساسي في الصفحات الفاتحة */
  --color-muted: #6b6b6b;         /* لون النص الثانوي */

  /* --- إعدادات الهيدر الزجاجي الفخم --- */
  --header-bg-dark: rgba(18, 24, 21, 0.72); /* خلفية زجاجية مائلة للزيتي العميق متناسقة مع الهوية */
  --border-glass-brand: rgba(161, 149, 116, 0.12); /* بوردر زجاجي ناعم مائل للذهبي */
  --header-h: 84px;               /* ارتفاع الهيدر الثابت الخاص بك */

  /* --- الهيكل والأبعاد (Layout & Structure) --- */
  --container: 1280px;            /* أقصى عرض للمحتوى الخاص بك */
  --radius: 14px;  
  
    --color-gold: #c8a24a;
  --color-gold-dark: #a9863a;/* تم تعديل الانحناء من 14px إلى 6px ليطابق الستايل الهندسي الفخم للهوية */

  /* --- الخطوط والأنيميشن --- */
--font: 'Frutiger Arabic', system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
 --au-gold-color: #C8A870;
    --au-dark-bg: #1a1a1a;
    --au-darker-bg: #0d0d0d;
    --au-light-text: #ffffff;
    --au-gray-text: #999;
    --au-transition: all 0.3s ease;



    
        --au3-gold-color: #C8A870;
    --au3-dark-bg: #1a1a1a;
    --au3-darker-bg: #0d0d0d;
    --au3-light-text: #ffffff;
    --au3-gray-text: #999;
  
    --brand-bronze: #A19574;
    --brand-brown: #5F483C;
    --brand-cream: #F1EEDB;
    --brand-olive: #949C7D;

      --elb1-bs-body-font-size: 1rem;
    --elb1-bs-body-font-weight: 400;
    --elb1-bs-body-line-height: 1.5;
    --elb1-bs-body-color: #212529;
    --elb1-bs-body-bg: #fff;
    --elb1-bs-heading-color: inherit;
    --elb1-gold-color: #C8A870;
    --elb1-dark-bg: #1a1a1a;
    --elb1-darker-bg: #0d0d0d;
    --elb1-light-text: #ffffff;
    --elb1-gray-text: #999;
    --elb1-transition: all 0.3s ease;

    --elb4-bs-body-font-size: 1rem;
    --elb4-bs-body-font-weight: 400;
    --elb4-bs-body-line-height: 1.5;
    --elb4-bs-body-color: #212529;
    --elb4-bs-body-bg: #fff;
    --elb4-bs-heading-color: inherit;
    --elb4-gold-color: #C8A870;
    --elb4-dark-bg: #1a1a1a;
    --elb4-darker-bg: #0d0d0d;
    --elb4-light-text: #ffffff;
    --elb4-gray-text: #999;
    --elb4-transition: all 0.3s ease;



    










  

}





/* -------------------------------------------------------------------------
   2) إعادة الضبط (Reset) والأساسيات
   ------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Frutiger Arabic', sans-serif;
  color: var(--color-text);
  background: var(--color-light);
  line-height: 1.7;
  direction: rtl;            /* الاتجاه من اليمين لليسار */
  text-align: right;
  -webkit-font-smoothing: antialiased;
    
    /* الخصائص دي بتخلي الخط ناعم وحاد جداً، خصوصاً على الخلفيات الغامقة */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;


}







img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* حاوية لتوسيط المحتوى وتحديد عرضه */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* مسافات رأسية موحّدة بين الأقسام */
.section { padding-block: 96px; }

/* أقسام داكنة / فاتحة */
.dark  { background: var(--color-dark);  color: var(--color-white); }
.light { background: var(--color-light); color: var(--color-text); }

/* عنوان القسم */
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin-bottom: 48px;
  text-align: center;
}

/* زر أساسي ذهبي (يُستخدم في أكثر من مكان) */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  background: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  transition: background .3s var(--ease), transform .3s var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--color-gold-dark); transform: translateY(-2px); }

/* زر بحدود فقط (شفّاف) */
.btn-outline {
  background: transparent;
  border: 1px solid currentColor;
  color: var(--color-white);
}
.btn-outline:hover { background: var(--color-white); color: var(--color-dark); transform: translateY(-2px); }


/* start header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 1000;
  background: var(--header-bg-dark);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-glass-brand);
  transition: height 0.3s var(--ease);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 45px;
  direction: rtl; /* اتجاه عربي */
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo img {
  height: 34px;
  width: auto;
  display: block;
}

.vertical-divider {
  width: 1px;
  height: 44px;
  background-color: var(--brand-gold);
  opacity: 0.4;
  display: inline-block;
  margin-inline-start: 10px;
}

/* =========================================================================
   3) القائمة الرئيسية وتأثيرات التوهج والضغطة (Glow & Click Flash)
   ========================================================================= */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
  margin: 0 20px 0 0;
  padding: 0;
  flex-grow: 1;
}

/* إعداد اللينكات الأساسية */
.nav-menu > li > a {
  font-family: var(--font);
  color: var(--brand-cream);
  font-size: 15.5px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s var(--ease);
}

/* الخط السفلي المضيء الذي يظهر عند الهوفر (يتمدد من المنتصف) */
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: var(--brand-gold);
  box-shadow: 0 0 12px var(--brand-gold);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* تأثير مرور الماوس (Hover) */
.nav-menu > li > a:hover {
  color: var(--brand-gold);
  text-shadow: 0 0 15px rgba(161, 149, 116, 0.8), 0 0 30px rgba(161, 149, 116, 0.4);
  transform: translateY(-2px);
}

.nav-menu > li > a:hover::after {
  width: 100%;
}

/* تأثير الضغط على اللينك (Click) - تشغيل الفلاش الساطع */
.nav-menu > li > a:active {
  animation: click-glow 0.4s ease-out forwards;
  transform: translateY(1px) scale(0.95);
}

/* أنيميشن الفلاش الساطع (مشترك للديسكتوب والموبايل) */
@keyframes click-glow {
  0% {
    color: var(--brand-gold);
    text-shadow: 0 0 15px rgba(161, 149, 116, 0.8);
  }
  50% {
    color: #ffffff;
    text-shadow: 0 0 25px #ffffff, 0 0 50px var(--brand-gold), 0 0 100px var(--brand-gold);
  }
  100% {
    color: var(--brand-gold);
    text-shadow: 0 0 15px rgba(161, 149, 116, 1);
  }
}

/* السهم المنسدل وحركته */
.arrow-down {
  width: 0;
  height: 0;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  border-top: 5.5px solid var(--brand-cream);
  display: inline-block;
  margin-top: 3px;
  transition: transform 0.3s ease, border-top-color 0.3s;
}

.nav-menu li:hover .arrow-down {
  border-top-color: var(--brand-gold);
  transform: rotate(180deg);
  filter: drop-shadow(0 0 5px var(--brand-gold));
}

/* =========================================================================
   4) القائمة المنسدلة (Dropdown) لـ "من نحن"
   ========================================================================= */
.has-dropdown {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 150%;
  right: 0;
  background: var(--header-bg-dark);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-glass-brand);
  border-radius: var(--radius);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s var(--ease);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* كوبري شفاف لمنع رعشة إغلاق القائمة عند تحريك الماوس */
.sub-menu::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}

.has-dropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  top: 100%;
}

.sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--brand-cream);
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  text-align: right;
}

.sub-menu li a:hover {
  background: rgba(161, 149, 116, 0.15);
  color: var(--brand-gold);
  text-shadow: 0 0 10px rgba(161, 149, 116, 0.5);
}

/* =========================================================================
   5) الأيقونات والأزرار (تأثير بريق النور المائل - Shine Sweep)
   ========================================================================= */
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* =========================================================================
   تعديل فخم: تحويل الأيقونات (البحث والقلب) لأزرار مضيئة (Glow Buttons)
   ========================================================================= */

/* تنسيق الأيقونة في حالتها الطبيعية */
.action-icon-btn {
  background: none;
  border: none;
  color: var(--brand-cream);
  cursor: pointer;
  
  /* تحديد حجم الزرار ليكون دائرة مثالية */
  width: 42px; 
  height: 42px;
  border-radius: 50%; /* دائرة كاملة */
  
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden; /* عشان تأثير اللمعان يبقى جوه الدائرة */
  
  /* ترانزيشن ناعم جداً لكل الخواص */
  transition: background-color 0.4s var(--ease), 
              color 0.4s var(--ease), 
              box-shadow 0.4s var(--ease), 
              transform 0.3s var(--ease) !important;
}
/* الكود ده هيطبق على الأيقونات العائمة اللي تحت بس ومش هيلمس الهيدر */
.floating-actions .action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(18, 24, 21, 0.75) !important; 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15); 
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.floating-actions .action-icon:hover {
    background: rgba(18, 24, 21, 0.95) !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* تجهيز شعاع اللمعان (Shine Sweep) زي الأزرار الكبيرة */
.action-icon-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
  z-index: -1;
}

/* =========================================================================
   تأثير مرور الماوس (Hover State) - الزرار المضيء
   ========================================================================= */
.action-icon-btn:hover {
  /* 1. الزرار بيتحول لدهبي */
  background-color: var(--brand-gold) !important;
  
  /* 2. الأيقونة جوه بتتحول لاسود عشان التباين */
  color: #121815 !important; 
  
  /* 3. حركة نعومة ورفعة لفوق */
  transform: translateY(-3px) scale(1.05) !important;
  
  /* 4. التوهج الدهبي الفخم والواضح (Glow Effect) */
  box-shadow: 0 0 15px rgba(161, 149, 116, 0.8), 
              0 0 30px rgba(161, 149, 116, 0.5) !important;
}

/* تشغيل شعاع اللمعان عند الهوفر */
.action-icon-btn:hover::before {
  left: 150%;
  transition: left 0.6s var(--ease);
}

/* =========================================================================
   تأثير الضغط (Click/Active State) - فلاش ساطع
   ========================================================================= */
.action-icon-btn:active {
  transform: translateY(-1px) scale(0.98) !important; /* ضغطة واقعية */
  box-shadow: 0 0 10px rgba(161, 149, 116, 0.6) !important; /* تقليل التوهج */
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--brand-cream);
  font-size: 30px;
  cursor: pointer;
}

/* تجهيز الأزرار لاحتواء شعاع النور */
.btn-primary-brand, 
.lang-btn {
  font-family: var(--font);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-brand {
  background: transparent;
  color: var(--brand-gold);
  border: 1px solid var(--brand-gold);
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* إنشاء شعاع النور المائل */
.btn-primary-brand::before, 
.lang-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: left 0.6s var(--ease);
  z-index: -1;
}

/* تحريك الشعاع عند مرور الماوس */
.btn-primary-brand:hover::before, 
.lang-btn:hover::before {
  left: 200%;
}

.btn-primary-brand:hover, 
.lang-btn:hover {
  box-shadow: 0 0 20px rgba(161, 149, 116, 0.6);
}

.btn-primary-brand:hover {
  background: var(--brand-gold);
  color: #121815;
}

/* =========================================================================
   6) قائمة اختيار اللغة (Desktop)
   ========================================================================= */
.lang-dropdown {
  position: relative;
}

.lang-btn {
  background: var(--brand-gold);
  color: #121815;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.lang-btn:hover {
  background-color: var(--brand-gold-hover);
}

.arrow-down-s {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #121815;
  display: inline-block;
  transition: transform 0.3s ease;
}

.lang-dropdown.active .arrow-down-s {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: var(--header-bg-dark);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-glass-brand);
  border-radius: var(--radius);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lang-dropdown.active .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--brand-cream);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  text-align: right;
  transition: background 0.3s, color 0.3s;
}

.lang-menu li a:hover, 
.lang-menu li a.active {
  background: rgba(161, 149, 116, 0.15);
  color: var(--brand-gold);
}

/* =========================================================================
   7) شاشة البحث (Search Overlay)
   ========================================================================= */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.search-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.search-overlay-content {
  width: 100%;
  max-width: 700px;
  padding: 0 24px;
  text-align: center;
  transform: translateY(30px);
  transition: transform 0.4s var(--ease);
}

.search-overlay.active .search-overlay-content {
  transform: translateY(0);
}

.search-title {
  color: var(--brand-cream);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  padding: 5px 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input-wrapper:focus-within {
  border-color: var(--brand-gold);
  box-shadow: 0 0 15px rgba(161, 149, 116, 0.15);
}

.search-field {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: var(--color-white);
  font-size: 22px;
  padding: 15px 10px;
}

.search-submit-icon {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 0;
}

.search-input-wrapper:focus-within .search-submit-icon {
  color: var(--brand-gold);
}

.close-search {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 50px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
}

.close-search:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.search-results {
  margin-top: 30px;
  max-height: 350px;
  overflow-y: auto;
  padding-right: 5px;
  text-align: right;
  direction: rtl;
}

.search-results::-webkit-scrollbar {
  width: 5px;
}

.search-results::-webkit-scrollbar-thumb {
  background: var(--brand-gold);
  border-radius: 10px;
}

.search-result-item {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
}

.search-result-item:hover {
  background: rgba(161, 149, 116, 0.1);
  border-color: var(--brand-gold);
  transform: translateX(-5px);
}

.search-result-item h3 {
  color: var(--brand-cream);
  font-size: 18px;
  margin: 0 0 5px 0;
  font-weight: 700;
}

.search-result-item p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin: 0;
}

.no-results {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  padding: 20px;
}

.search-hint {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  margin-top: 25px;
}

/* =========================================================================
   8) القائمة الجانبية للموبايل (Dark Glassmorphism & Tap Glow Effects)
   ========================================================================= */
.mobile-sidebar { 
  position: fixed; 
  top: 0; 
  right: -100%; 
  width: 85%; 
  max-width: 400px; 
  height: 100vh; 
  /* خلفية زجاجية داكنة وفخمة جداً متناسقة مع الهوية */
  background-color: rgba(12, 16, 14, 0.85); 
  backdrop-filter: blur(25px); 
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid rgba(161, 149, 116, 0.15);
  z-index: 2001; 
  transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1); 
  overflow-y: auto; 
  padding: 40px 30px; 
  direction: rtl; 
}

.mobile-sidebar.active { 
  right: 0; 
  box-shadow: -10px 0 40px rgba(0,0,0,0.8);
}

/* زر الإغلاق */
.close-sidebar { 
  position: absolute; 
  top: 25px; 
  left: 25px; 
  background: none; 
  border: none; 
  font-size: 35px; 
  color: var(--brand-cream); 
  cursor: pointer; 
  line-height: 1; 
  transition: color 0.3s, transform 0.3s;
}

.close-sidebar:active { 
  color: var(--brand-gold); 
  transform: scale(0.9); 
}

.sidebar-menu { 
  list-style: none; 
  padding: 0; 
  margin: 60px 0 40px 0; 
}

.sidebar-menu li { 
  margin-bottom: 20px; 
}

/* لينكات الموبايل */
.sidebar-menu a { 
  color: var(--brand-cream); 
  font-size: 19px; 
  font-weight: 500; 
  text-decoration: none; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

/* تأثير اللمس في الموبايل (Tap/Active) - يطلق فلاش ساطع وحركة */
.sidebar-menu a:active { 
  color: var(--brand-gold); 
  border-bottom-color: var(--brand-gold);
  animation: click-glow 0.4s ease-out forwards;
  background: linear-gradient(90deg, rgba(161, 149, 116, 0.1) 0%, transparent 100%);
  padding-right: 10px;
}

.sidebar-menu a .arrow-down { 
  border-top-color: var(--brand-cream); 
}

.sidebar-menu a:active .arrow-down { 
  border-top-color: var(--brand-gold); 
}

/* القائمة الفرعية داخل الموبايل */
.sub-menu-mobile { 
  display: none; 
  list-style: none; 
  padding: 10px 20px 0 0; 
  margin: 0; 
  border-right: 2px solid var(--brand-gold); 
}

.sub-menu-mobile.active { 
  display: block; 
}

.sub-menu-mobile li { 
  margin-bottom: 10px; 
}

.sub-menu-mobile li a { 
  font-size: 16px; 
  color: rgba(255, 255, 255, 0.6); 
  border-bottom: none; 
  padding: 8px 0;
}

.sub-menu-mobile li a:active { 
  color: var(--brand-gold); 
  text-shadow: 0 0 10px rgba(161, 149, 116, 0.5); 
  padding-right: 10px;
}

.has-dropdown-mobile .arrow-down { 
  transition: transform 0.3s ease; 
}

.has-dropdown-mobile.active .arrow-down { 
  transform: rotate(180deg); 
}

/* أزرار التواصل واللغة في الموبايل */
.sidebar-actions { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
  margin-top: 30px;
}

.lang-btn-sidebar, 
.sidebar-btn { 
  width: 100%; 
  justify-content: center; 
  padding: 15px; 
  font-size: 16px; 
  border-radius: var(--radius); 
}

.lang-btn-sidebar { 
  background: var(--brand-gold); 
  color: #121815; 
  border: none; 
  font-weight: 700; 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  cursor: pointer; 
}

.lang-dropdown-sidebar { 
  position: relative; 
}

.lang-menu-sidebar { 
  display: none; 
  list-style: none; 
  padding: 10px 0; 
  margin: 10px 0 0 0; 
  background: rgba(255,255,255,0.05); 
  border-radius: var(--radius); 
  border: 1px solid rgba(255,255,255,0.1); 
}

.lang-menu-sidebar.active { 
  display: block; 
}

.lang-menu-sidebar a { 
  display: block; 
  padding: 10px 20px; 
  color: var(--brand-cream); 
  text-decoration: none; 
  text-align: center; 
}

.lang-menu-sidebar a:active { 
  background: rgba(161, 149, 116, 0.2); 
  color: var(--brand-gold); 
}

/* التظليل الزجاجي خلف قائمة الموبايل */
.sidebar-overlay { 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(0, 0, 0, 0.7); 
  backdrop-filter: blur(5px); 
  -webkit-backdrop-filter: blur(5px); 
  z-index: 2000; 
  opacity: 0; 
  pointer-events: none; 
  transition: opacity 0.4s ease; 
}

.sidebar-overlay.active { 
  opacity: 1; 
  pointer-events: auto; 
}

/* =========================================================================
   9) التجاوب الدقيق للموبايل الإجباري (Responsive Media Queries)
   ========================================================================= */
@media (max-width: 1100px) {
  .main-header {
    height: 65px !important;
  }
  
  .navbar {
    display: flex !important;
    direction: rtl !important;
    justify-content: space-between !important;
    padding: 0 20px !important;
    height: 100% !important;
  }
  
  .header-actions {
    display: flex !important;
    direction: ltr !important;
    align-items: center !important;
    gap: 18px !important;
  }
  
  /* ترتيب الأيقونات إجبارياً من الشمال لليمين */
  .menu-toggle {
    display: block !important;
    order: 1 !important;
    font-size: 28px !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .header-actions button[aria-label="المفضلة"] {
    order: 2 !important;
  }
  
  #searchBtn {
    order: 3 !important;
  }
  
  /* إخفاء عناصر الديسكتوب الزائدة */
  .vertical-divider, 
  .nav-menu, 
  .navbar .lang-dropdown, 
  .navbar .btn-primary-brand {
    display: none !important;
  }
  
  /* تأكيد إظهار زر التواصل في الموبايل */
  .sidebar-btn {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 15px !important;
  }
}



/* end header */






/* start chat */
/* =========================================================================
   تنسيق نافذة الشات بوت (Chat Widget)
   ========================================================================= */
.chat-widget {
    position: fixed;
    bottom: 100px; /* بترتفع عن الأيقونات العائمة */
    right: 90px; /* بجوار الأيقونات */
    width: 350px;
    height: 500px;
    max-height: 80vh;
    
    /* تصميم زجاجي داكن وفخم */
    background: rgba(18, 24, 21, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass-brand);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 10000; /* أعلى من كل شيء */
    direction: rtl;
    
    /* الحركة في البداية مخفية ونازلة لتحت */
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* الكلاس الذي سيضيفه الـ JS لإظهار الشات */
.chat-widget.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* --- هيدر الشات --- */
.chat-header {
    background: linear-gradient(to left, rgba(161, 149, 116, 0.15), transparent);
    border-bottom: 1px solid var(--border-glass-brand);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bot-avatar {
    background: var(--brand-gold);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-header h4 {
    margin: 0;
    color: var(--brand-cream);
    font-size: 16px;
    font-weight: 700;
}

.chat-header p {
    margin: 0;
    color: var(--brand-gold);
    font-size: 12px;
}

.close-chat {
    background: none;
    border: none;
    color: var(--brand-cream);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.close-chat:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* --- جسم الشات (الرسائل) --- */
.chat-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* شريط التمرير (Scrollbar) */
.chat-body::-webkit-scrollbar { width: 5px; }
.chat-body::-webkit-scrollbar-thumb { background: var(--brand-gold); border-radius: 10px; }

.chat-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    animation: fadeInMsg 0.4s ease-out forwards;
}

@keyframes fadeInMsg {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-message {
    background: rgba(255, 255, 255, 0.05);
    color: var(--brand-cream);
    align-self: flex-start;
    border-bottom-right-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.user-message {
    background: var(--brand-gold);
    color: #121815;
    align-self: flex-end;
    border-bottom-left-radius: 2px;
    font-weight: 500;
}

/* --- فوتر الشات (مكان الكتابة) --- */
.chat-footer {
    padding: 15px;
    border-top: 1px solid var(--border-glass-brand);
    display: flex;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
}

.chat-footer input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 8px;
    padding: 10px 15px;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.3s;
}

.chat-footer input:focus {
    border-color: var(--brand-gold);
}

.chat-footer button {
    background: var(--brand-gold);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: #121815;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.chat-footer button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(161, 149, 116, 0.5);
}

/* تظبيط الموبايل */
@media (max-width: 768px) {
    .chat-widget {
        bottom: 80px;
        right: 20px;
        left: 20px;
        width: auto;
        height: 450px;
    }
}


/* end chat */








/* start hero section in home page */
/* =========================================================================
   تنسيق الهيرو سكشن الأساسي
   ========================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden; 
}

/* =========================================================================
   شاشة التحميل المزدوجة (تتحكم بها GSAP)
   ========================================================================= */
#logo-mask-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    pointer-events: none; 
}

#mask-1, 
#mask-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
}

#mask-1 {
    z-index: 2;
}

#mask-2 {
    z-index: 1;
}

/* =========================================================================
   فيديو الخلفية
   ========================================================================= */
.hero-video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12, 16, 14, 0.3), rgba(12, 16, 14, 0.7));
    z-index: -1;
}

/* =========================================================================
   محتوى النصوص (تظهر برمجياً بواسطة GSAP)
   ========================================================================= */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.reveal-wrapper {
    overflow: hidden; 
    clip-path: inset(0 0 0 0); 
    display: block;
}

/* الحالة الأولية للنصوص (مخفية للأسفل) */
.hero-title, 
.hero-subtitle, 
.btn-glass {
    transform: translateY(120%);
    opacity: 0;
}

.hero-title { 
    font-family: var(--font); 
    font-size: clamp(40px, 6vw, 80px); 
    font-weight: 700; 
    line-height: 1.15; 
    margin: 0; 
    text-shadow: 0 10px 30px rgba(0,0,0,0.5); 
}

.hero-subtitle { 
    font-family: var(--font); 
    font-size: clamp(18px, 2vw, 24px); 
    font-weight: 300; 
    margin-block: 10px 30px; 
    color: rgba(255, 255, 255, 0.9); 
}

/* =========================================================================
   زر استكشف المشاريع (تأثير الزجاج)
   ========================================================================= */
.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    padding: 14px 40px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-glass:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: #121815;
    box-shadow: 0 10px 25px rgba(161, 149, 116, 0.4);
    transform: translateY(-3px);
}

/* =========================================================================
   الأيقونات العائمة (ثابتة في الشاشة - Fixed)
   ========================================================================= */
/* =========================================================================
   الأيقونات العائمة (ثابتة في الشاشة - Fixed)
   ========================================================================= */
.floating-actions {
    position: fixed; 
    right: 30px;
    bottom: 40px; 
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999; 
    
    /* التعديل الجديد: إخفاء الأيقونات في البداية */
    opacity: 0; 
    transform: translateY(50px); /* تنزيلها لتحت شوية عشان تطلع بنعومة */
    pointer-events: none; /* لمنع الضغط عليها وهي مخفية */
}

/* هنضيف الكلاس ده بالجافاسكربت عشان تظهر */
.floating-actions.show-actions {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); /* حركة ظهور ناعمة */
}

.action-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    background: rgba(18, 24, 21, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s var(--ease);
}

.action-icon:hover,
.action-icon:active {
    transform: scale(1.1) translateX(-5px);
}

.bot-icon:hover, 
.bot-icon:active { 
    background: #8E2DE2; 
    border-color: #8E2DE2; 
    box-shadow: 0 0 20px rgba(142, 45, 226, 0.6); 
}

.whatsapp-icon:hover, 
.whatsapp-icon:active { 
    background: #25D366; 
    border-color: #25D366; 
    color: #ffffff; 
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6); 
}

.phone-icon:hover, 
.phone-icon:active { 
    background: var(--brand-gold); 
    border-color: var(--brand-gold); 
    color: #121815; 
    box-shadow: 0 0 20px rgba(161, 149, 116, 0.6); 
}

/* استجابة الموبايل */
@media (max-width: 1100px) {
    .floating-actions {
        right: 20px;
        bottom: 25px; 
    }
    .action-icon {
        width: 42px;
        height: 42px;
    }
}

/* end hero section in home page */





/* start section 1 in home page */
/* =========================================================================
   سكشن المشاريع المميزة (Featured Project)
   ========================================================================= */
.featured-project {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--color-white);
  padding-bottom: 60px;
}

/* =========================================================================
   حاوية الصورة وطبقة التعتيم (الأساس لبروز العناصر)
   ========================================================================= */
.fp-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.fp-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: center center;
}

/* طبقة التعتيم: تم تقويتها من الأسفل لضمان وضوح النصوص والزرار 100% */
.fp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  z-index: -1;
}

/* =========================================================================
   تخطيط المحتوى (توزيع النصوص يمين والزرار يسار)
   ========================================================================= */
.fp-container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

/* قسم النصوص */
.fp-content {
  max-width: 60%;
  text-align: right;
}

/* =========================================================================
   تجهيز العناصر لحركة الظهور بالـ GSAP (Scroll-Triggered Reveal)
   ========================================================================= */
.reveal-wrapper {
  overflow: hidden; 
  clip-path: inset(0 0 0 0); 
  display: block;
}

.reveal-item {
  transform: translateY(60px); /* البداية من أسفل */
  opacity: 0; /* مخفي تماماً في البداية */
  display: inline-block;
  will-change: transform, opacity; /* لتحسين الأداء أثناء الحركة */
}

/* تنسيقات الخطوط داخل السكشن */
.fp-label {
  display: inline-block;
  background-color: #A19574; /* لون الشريط الأزرق الداكن */
  color: #ffffff;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-weight: 500;
}

.fp-title {
  font-family: var(--font);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.1;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.fp-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.8;
  margin: 0;
}

/* =========================================================================
   الزرار (تصميم داكن، عريض، وظاهر بوضوح تام)
   ========================================================================= */
.fp-action {
  flex-shrink: 0;
  margin-bottom: 10px;
}

/* =========================================================================
   الزرار (تصميم داكن + هوفر ذهبي مع بريق ولمعان)
   ========================================================================= */
.btn-shimmer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  width: 240px; 
  height: 56px; 
  
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600; 
  color: #ffffff;
  text-decoration: none;
  
  /* التصميم الأساسي: زجاجي داكن */
  background: rgba(15, 15, 15, 0.85); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  border: 1px solid rgba(255, 255, 255, 0.2); 
  border-radius: 8px; 
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); 
  
  /* إعدادات ضرورية للبريق */
  position: relative;
  overflow: hidden; 
  transition: all 0.4s ease;
}

/* رفع النص فوق طبقة البريق */
.btn-shimmer span {
  position: relative;
  z-index: 2;
}

/* طبقة البريق واللمعان (Shimmer) */
.btn-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%; /* مخفي في اليسار */
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-25deg); /* شكل مائل للبريق */
  z-index: 1;
  transition: left 0.6s ease-in-out;
}

/* =========================================================================
   تأثير الهوفر (Hover)
   ========================================================================= */
.btn-shimmer:hover {
  background: var(--brand-gold, #A19574); /* يتحول للذهبي */
  border-color: var(--brand-gold, #A19574);
  color: #121815; /* النص يصبح داكن */
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(161, 149, 116, 0.45); /* توهج ذهبي حول الزرار */
}

/* تحريك البريق عند الهوفر */
.btn-shimmer:hover::before {
  left: 150%; /* يمر بسرعة لليمين */
}

/* =========================================================================
   استجابة الشاشات (Mobile & Tablet)
   ========================================================================= */
@media (max-width: 991px) {
  .fp-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  
  .fp-content {
    max-width: 100%;
  }
  
  .btn-shimmer {
    width: 240px; /* الحفاظ على عرض الزرار في الموبايل */
  }
}

@media (max-width: 768px) {
  .featured-project {
    min-height: 80vh;
  }
}
/* end section 1 in home page */


/* start section 2 in home page */




/* =========================================================================
   تنسيق سكشن المشاريع المتراكمة (Sticky Cards)
   ========================================================================= */
.McPinPanel {
  width: 100%;
  position: relative;
}

.McPinnedImage {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6); /* شادو أقوى لفصل الطبقات */
}

.McPinItemBlock {
  width: 100%;
  height: 100%;
  position: relative;
}

.McImageFull {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* طبقة التعتيم */
.McCardTextOverlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(12, 16, 14, 0.5); /* تعتيم داكن مناسب للهوية */
}

.McContentWrapper {
  max-width: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px; /* مسافة موحدة بين اللوجو والنص والزرار */
}

.McCardTextOverlay img.reveal-project-item {
  max-width: 220px;
  height: auto;
  margin-bottom: 5px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); /* بروز للوجو */
}

.McCardTextOverlay p.reveal-project-item {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
  font-family: var(--font);
}

/* =========================================================================
   تجهيز العناصر لحركة الظهور (GSAP Reveal)
   ========================================================================= */
.reveal-project-item {
  transform: translateY(50px); /* البداية من أسفل */
  opacity: 0; /* مخفي */
  will-change: transform, opacity;
}

/* =========================================================================
   تصميم زر "عرض المشروع" (Glassmorphism + Shimmer)
   ========================================================================= */
.btn-shimmer-project {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  width: 220px; 
  height: 50px; 
  
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600; 
  color: #ffffff;
  text-decoration: none;
  
  /* زجاج داكن */
  background: rgba(15, 15, 15, 0.7); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  border: 1px solid rgba(255, 255, 255, 0.15); 
  border-radius: 8px; /* حواف متطابقة مع الهوية */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); 
  
  position: relative;
  overflow: hidden; 
  transition: all 0.4s ease;
}

.btn-shimmer-project span {
  position: relative;
  z-index: 2;
}

/* طبقة البريق واللمعان */
.btn-shimmer-project::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%; 
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg); 
  z-index: 1;
  transition: left 0.6s ease-in-out;
}

/* الهوفر (يتحول للذهبي مع لمعان) */
.btn-shimmer-project:hover {
  background: var(--brand-gold, #A19574); 
  border-color: var(--brand-gold, #A19574);
  color: #121815; 
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(161, 149, 116, 0.4); 
}

.btn-shimmer-project:hover::before {
  left: 150%; 
}


/* end section 2 in home page */



/* start section 3 in home page*/

/* ── Reset Scoped via Classes ──────────────────────────────────────────── */


.s4ch-body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-light);
  line-height: 1.7;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}

.s4ch-body,
.s4ch-card-text {
  font-weight: 400;
}

.s4ch-card-title,
.s4ch-approach-title,
.s4ch-btn {
  font-weight: 700;
}

.s4ch-hero-title {
  font-weight: 900;
}

.s4ch-approach-image,
.s4ch-icon-img,
.s4ch-logo-img {
  max-width: 100%;
  display: block;
}

.s4ch-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.s4ch-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 16px;
  background: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.s4ch-btn:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.s4ch-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.s4ch-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.s4ch-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.s4ch-hero-title {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.1;
}

.s4ch-hero-subtitle {
  font-size: clamp(18px, 2.4vw, 26px);
  margin-block: 22px 34px;
  font-weight: 300;
}

/* ── Section Approach ───────────────────────────────────────────────────── */
.s4ch-approach-section {
  background-color: var(--color-light);
  padding-block: 100px 280px;
  overflow: hidden;
}

.s4ch-approach-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 70px;
  text-align: center;
  color: var(--color-text);
}

/* ── Shared Card Styles ─────────────────────────────────────────────────── */
.s4ch-approach-card {
  background: transparent;
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding: 16px;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  flex: 1 1 330px;
}

.s4ch-approach-card:hover {
  transform: translateY(-8px);
}

/* border drawing on hover */
.s4ch-approach-card::before,
.s4ch-approach-card::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 2px solid transparent;
  box-sizing: border-box;
  border-radius: 20px;
  pointer-events: none;
  z-index: 10;
}

.s4ch-approach-card::before {
  top: 0;
  left: 0;
}

.s4ch-approach-card::after {
  bottom: 0;
  right: 0;
}

.s4ch-approach-card:hover::before {
  width: 100%;
  height: 100%;
  border-top-color: var(--color-gold);
  border-right-color: var(--color-gold);
  transition:
    width 0.3s ease-out,
    height 0.3s ease-out 0.3s;
}

.s4ch-approach-card:hover::after {
  width: 100%;
  height: 100%;
  border-bottom-color: var(--color-gold);
  border-left-color: var(--color-gold);
  transition:
    border-color 0s ease-out 0.6s,
    width 0.3s ease-out 0.6s,
    height 0.3s ease-out 0.9s;
}

.s4ch-image-wrapper {
  position: relative;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.s4ch-approach-image {
  width: 100%;
  height: 130%;
  object-fit: cover;
  transform-origin: center;
  transition: scale 0.6s var(--ease); /* تم التعديل لتجنب التداخل مع البارالاكس */
}

.s4ch-approach-card:hover .s4ch-approach-image {
  transform: none;
  scale: 1.05;
}

.s4ch-image-wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 84px;
  height: 84px;
  z-index: 1;
  background: var(--color-light);
  border-radius: 0 78% 0 0;
}

.s4ch-icon-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  width: 58px;
  height: 58px;
  background-color: #d1b17a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background-color 0.3s;
}

.s4ch-icon-badge::before {
  content: "";
  position: absolute;
  top: -46px;
  right: 63%;
  width: 30px;
  height: 30px;
  background-color: var(--color-light);
  clip-path: path("M0 0 Q0,30 30,30 L 0 30 Z");
}

.s4ch-icon-badge .s4ch-icon-img {
  width: 36px;
  height: auto;
  object-fit: contain;
  display: block;
}

.s4ch-card-content {
  padding: 0 8px;
  text-align: right;
}

.s4ch-card-title {
  display: block;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--color-text);
}

.s4ch-card-text {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.8;
  margin: 0;
}

/* Swiper pagination dots */
.s4ch-approach-swiper .swiper-pagination-bullet {
  background: var(--color-gold);
  opacity: 0.4;
}

.s4ch-approach-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}

.s4ch-approach-swiper .swiper-pagination {
  bottom: 0;
}

/* ── Vanilla JS Animations ─────────────────────────────────────────────── */

.s4ch-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.s4ch-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE (إصلاح مشكلة الـ 5 كروت والتداخل)
   ========================================================================== */

/* 1. إعدادات الديسكتوب (الشاشات الأكبر من 992 بيكسل) */
@media (min-width: 992px) {
  .swiper.s4ch-approach-swiper {
    display: none !important;
  }
  
  .s4ch-approach-desktop {
    display: flex !important;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1500px;
    margin: 0 auto;
    padding-inline: 24px;
  }
  
  .s4ch-approach-desktop .s4ch-approach-card {
    margin-top: 0;
  }
  
  .s4ch-approach-desktop .s4ch-approach-card.s4ch-card-offset {
    margin-top: 220px;
  }
}

/* 2. إعدادات الموبايل والتابلت (الشاشات الأصغر من 991 بيكسل) */
@media (max-width: 991px) {
  .s4ch-approach-desktop {
    display: none !important;
  }

  .swiper.s4ch-approach-swiper {
    display: block !important;
    max-width: 680px;
    margin: 0 auto;
    padding-inline: 0;
    padding-bottom: 40px;
  }

  .s4ch-approach-section {
    padding-block: 80px 80px;
  }

  .s4ch-approach-title {
    margin-bottom: 50px;
  }

  .s4ch-approach-swiper .s4ch-approach-card {
    max-width: 100%;
    flex: none;
    margin-top: 0 !important;
  }

  .s4ch-approach-swiper .s4ch-approach-image {
    height: 260px;
  }
}

@media (max-width: 767px) {
  .s4ch-logo-img { height: 34px; }
  .s4ch-btn { padding: 12px 26px; font-size: 15px; }
  .s4ch-hero-title { font-size: clamp(32px, 8vw, 48px); }
  .s4ch-hero-subtitle { font-size: clamp(15px, 2.5vw, 18px); margin-block: 16px 28px; }
  .s4ch-approach-section { padding-block: 70px 70px; }
  .s4ch-approach-title { font-size: clamp(24px, 5vw, 32px); margin-bottom: 44px; }
  .s4ch-approach-swiper { padding-inline: 16px; }
  .s4ch-approach-swiper .s4ch-approach-image { height: 220px; }
  .s4ch-card-title { font-size: 19px; }
  .s4ch-card-text { font-size: 14px; }

  /* إخفاء تأثير الخط تماماً داخل السلايدر في الموبايل والتابلت */
  .s4ch-approach-swiper .s4ch-approach-card::before,
  .s4ch-approach-swiper .s4ch-approach-card::after {
    display: none;
  }
  .swiper-slide { outline: none !important; }
}

@media (max-width: 599px) {
  .s4ch-logo-img { height: 30px; }
  .s4ch-btn { padding: 11px 22px; font-size: 14px; }
  .s4ch-hero-title { font-size: clamp(28px, 9vw, 40px); }
  .s4ch-hero-subtitle { font-size: 14px; margin-block: 14px 24px; }
  .s4ch-approach-section { padding-block: 60px 60px; }
  .s4ch-approach-title { font-size: 22px; margin-bottom: 36px; }
  .s4ch-approach-swiper { padding-inline: 12px; padding-bottom: 36px; }
  .s4ch-approach-swiper .s4ch-approach-image { height: 190px; }
  .s4ch-card-title { font-size: 17px; }
  .s4ch-card-text { font-size: 13.5px; }
  .s4ch-icon-badge { width: 48px; height: 48px; }
  .s4ch-icon-badge .s4ch-icon-img { width: 28px; }
}

@media (max-width: 359px) {
  .s4ch-logo-img { height: 26px; }
  .s4ch-btn { padding: 10px 18px; font-size: 13px; }
  .s4ch-hero-title { font-size: clamp(26px, 10vw, 36px); }
  .s4ch-hero-subtitle { font-size: 13px; }
  .s4ch-approach-title { font-size: 20px; margin-bottom: 28px; }
  .s4ch-approach-swiper { padding-inline: 8px; }
  .s4ch-approach-swiper .s4ch-approach-image { height: 160px; }
  .s4ch-card-title { font-size: 15px; }
  .s4ch-card-text { font-size: 13px; }
  .s4ch-icon-badge { width: 42px; height: 42px; }
  .s4ch-icon-badge .s4ch-icon-img { width: 24px; }
}




/* end section 3 in home page*/










/* start section 4 in home page */


.s5ch-text,
.s5ch-card-text,
.s5ch-link {
  font-weight: 400;
}

.s5ch-title-2,
.s5ch-title-3,
.s5ch-title-4,
.s5ch-title-5,
.s5ch-title-6,
.s5ch-card-title,
.s5ch-approach-title,
.s5ch-btn {
  font-weight: 700;
}

.s5ch-title-1,
.s5ch-hero-title,
.s5ch-section-title {
  font-weight: 900;
}

.s5ch-image {
  max-width: 100%;
  display: block;
}

.s5ch-link {
  text-decoration: none;
  color: inherit;
}

.s5ch-list {
  list-style: none;
}

.s5ch-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.s5ch-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 16px;
  background: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.s5ch-btn:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.s5ch-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}
.s5ch-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.s5ch-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}
.s5ch-hero-title {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.1;
}
.s5ch-hero-subtitle {
  font-size: clamp(18px, 2.4vw, 26px);
  margin-block: 22px 34px;
  font-weight: 300;
}

/* ============================================================
   إعدادات القسم الرئيسي (Stats Section)
   ============================================================ */
.s5ch-pt-100 {
  padding-top: 100px;
}

.s5ch-stats-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.s5ch-stats-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.s5ch-stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.s5ch-stats-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ============================================================
   رأس القسم (Header)
   ============================================================ */
.s5ch-stats-header {
  text-align: center;
  margin-bottom: 40px;
}

/* تم الاستبدال بالكلاس .s5ch-stats-header-icon */
.s5ch-stats-header .s5ch-stats-header-icon {
  margin: 0 auto;
}

/* تم الاستبدال بالكلاس .s5ch-stats-header-desc */
.s5ch-stats-header .s5ch-stats-header-desc {
  color: #fff;
  text-align: center;
  font-family: "Helvetica Neue LT Arabic";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 28.07px;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* ============================================================
   شبكة الإحصائيات (Grid)
   ============================================================ */
.s5ch-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
  margin-top: 3rem;
  align-items: start;
}

/* ============================================================
   العناصر الداخلية وحركاتها (Items & Animations)
   ============================================================ */
.s5ch-stat-item {
  text-align: center;
  position: relative;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.s5ch-stat-item:nth-child(1),
.s5ch-stat-item:nth-child(3),
.s5ch-stat-item:nth-child(5) {
  margin-top: 50px;
}

.s5ch-stat-item:nth-child(2),
.s5ch-stat-item:nth-child(4) {
  margin-top: 198px;
}

.s5ch-stat-item:nth-child(3)::after,
.s5ch-stat-item:nth-child(3)::before {
  display: none;
}

/* ============================================================
   الأيقونات والأرقام والنصوص (Icons, Numbers & Labels)
   ============================================================ */
.s5ch-stat-icon {
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* تم الاستبدال بالكلاس .s5ch-stat-icon-img */
.s5ch-stat-icon .s5ch-stat-icon-img {
  width: 47px;
}

/* تم الاستبدال بالكلاس .s5ch-stat-icon-svg */
.s5ch-stat-icon .s5ch-stat-icon-svg {
  width: 100%;
  height: 100%;
  stroke: #d4af37;
  stroke-width: 2;
  fill: none;
}

.s5ch-num-wrap {
  display: inline-block;
  color: #fff;
}

.s5ch-stat-number {
  margin-bottom: 1rem;
  display: inline-block;
  color: #fff;
  font-family: "Helvetica Neue LT Arabic";
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 64.49px;
}

span.s5ch-num-label {
  padding-left: 6px;
}

.rtl span.s5ch-num-label {
  padding-left: 0;
  padding-right: 10px;
}

.s5ch-stat-label {
  color: #fff;
  text-align: center;
  font-family: "Helvetica Neue LT Arabic";
  font-size: 19px;
  font-style: normal;
  font-weight: 300;
  line-height: 43.392px;
}

/* ============================================================
   التجاوب مع الشاشات المختلفة (Media Queries)
   ============================================================ */
@media (max-width: 1200px) {
  .s5ch-stats-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
  }
  .s5ch-stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 991px) {
  .s5ch-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .s5ch-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem;
  }
  .s5ch-stat-number {
    font-size: 2rem;
    line-height: 30px;
    margin-bottom: 0;
  }
  .s5ch-stat-item::after,
  .s5ch-stat-item::before {
    display: none;
  }
  .s5ch-stats-header {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .s5ch-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  /* تم التحديث ليتوافق مع الكلاس الجديد */
  .s5ch-stat-item .s5ch-stat-icon-svg {
    display: none;
  }
  .s5ch-stat-item:nth-child(1),
  .s5ch-stat-item:nth-child(2),
  .s5ch-stat-item:nth-child(4),
  .s5ch-stat-item:nth-child(5) {
    margin-top: 0;
  }
  section.s5ch-stats-section {
    padding-bottom: 50px;
  }
  .s5ch-pt-100 {
    padding-top: 50px;
  }
}

@media (max-width: 480px) {
  .s5ch-stats-grid {
    grid-template-columns: 1fr;
  }
}






/* start section 4 in home page */



/* start section 5 in home page */

/* ── General Elements & Typography ─────────────────────────────────────── */
.s6ch-title-2,
.s6ch-title-3,
.s6ch-title-4,
.s6ch-title-5,
.s6ch-title-6,
.s6ch-card-title,
.s6ch-approach-title,
.s6ch-btn {
  font-weight: 700;
}

.s6ch-title-1,
.s6ch-hero-title,
.s6ch-section-title {
  font-weight: 900;
}

.s6ch-image {
  max-width: 100%;
  display: block;
}

.s6ch-link {
  text-decoration: none;
  color: inherit;
}

.s6ch-list {
  list-style: none;
}

.s6ch-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.s6ch-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 16px;
  background: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.s6ch-btn:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.s6ch-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}
.s6ch-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.s6ch-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}
.s6ch-hero-title {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.1;
}
.s6ch-hero-subtitle {
  font-size: clamp(18px, 2.4vw, 26px);
  margin-block: 22px 34px;
  font-weight: 300;
}

/* كلاسات المسافات (Utilities) */
.s6ch-ptb-100 {
  padding: 100px 0;
}
.s6ch-pt-90 {
  padding-top: 90px;
}

/* ── Awards Section Base ────────────────────────────────────────────────── */
.s6ch-awards-section {
  background: var(--wpr-bg-f43c9d3f-7e53-4bb8-a54d-ecdb50a1bf0e);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #f2f2f2;
}

/* عنوان السيكشن */
.s6ch-section-heading {
  color: #333435;
  font-family: "Helvetica Neue LT Arabic";
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 51.304px;
}

/* ── حاوية الجوائز لتوسيطها في المنتصف ── */
.s6ch-awards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* ── إعدادات العمود الواحد ── */
.s6ch-awards-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  flex: 1 1 250px;
  max-width: 300px;
}

/* ── كروت الجوائز + تأثير اللمعان (Shine Effect) والـ Hover ── */
.s6ch-award-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* طبقة اللمعان المخفية */
.s6ch-award-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  z-index: 2;
  pointer-events: none;
}

/* تشغيل اللمعان عند مرور الماوس */
.s6ch-award-card:hover::before {
  animation: shine-sweep 0.8s ease-in-out;
}

@keyframes shine-sweep {
  0% { left: -150%; }
  100% { left: 150%; }
}

.s6ch-award-card:hover {
  transform: translateY(-8px);
}

/* الصور أبيض وأسود طبيعياً وتلون عند الـ Hover */
.s6ch-award-card .s6ch-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s var(--ease);
}

.s6ch-award-card:hover .s6ch-image {
  filter: grayscale(0%);
}

/* ── تأثير الظهور عند التمرير (Reveal on Scroll) ──────────────────────── */
.s6ch-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.s6ch-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── التجاوب مع الشاشات المختلفة (Media Queries) ──────────────────────── */
@media (max-width: 991px) {
  .s6ch-section-heading {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .s6ch-section-heading {
    font-size: 30px;
    line-height: 30px;
  }
  .s6ch-pt-90 {
    padding-top: 40px;
  }
  .s6ch-ptb-100 {
    padding: 60px 0;
  }
  .s6ch-awards-wrapper {
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .s6ch-section-heading {
    font-size: 1.5rem;
  }
}


/* end section 5 in home page */



/* start section 6 in home page */



:root {
  --color-dark: #0a0a0a;
  --color-light: #f1f3f3;
  --color-text: #1a1a1a;
  --color-muted: #6b6b6b;
  --color-gold: #c8a24a;
  --color-gold-dark: #a9863a;
  --color-white: #ffffff;
  --container: 1280px;
  --radius: 14px;
/* قم بتعديله ليكون: */
--font: 'Frutiger Arabic', "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ──────────────────────────────────────────────────────────────── */


body,
.s7ch-text,
.s7ch-news-text,
.s7ch-link {
  font-weight: 400;
}


.s7ch-title-2,
.s7ch-title-3,
.s7ch-title-4,
.s7ch-title-5,
.s7ch-title-6,
.s7ch-news-title,
.s7ch-btn {
  font-weight: 700;
}

.s7ch-title-1,
.s7ch-hero-title,
.s7ch-section-heading {
  font-weight: 900;
}

.s7ch-news-image img {
  max-width: 100%;
  display: block;
}

.s7ch-link {
  text-decoration: none;
  color: inherit;
}

.s7ch-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.s7ch-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 16px;
  background: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.s7ch-btn:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.s7ch-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.s7ch-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.s7ch-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

h1.s7ch-hero-title {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.1;
  margin: 0;
}

p.s7ch-hero-subtitle {
  font-size: clamp(18px, 2.4vw, 26px);
  margin-block: 22px 34px;
  font-weight: 300;
}

/* ==============================================================
   News Section CSS (آخر الأخبار والتحديثات)
   ============================================================== */

.s7ch-ptb-100 {
  padding: 100px 0;
}

.s7ch-container-fluid {
  padding: 0 50px;
}

.s7ch-news-section {
  background-color: #fafafa;
  padding: 80px 0 !important;
}

/* حاوية العنوان والزر في الأعلى */
.s7ch-news-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 15px;
}

h2.s7ch-section-heading {
  color: #1a1a1a;
  font-size: 36px;
  font-weight: 700;
  position: relative;
  margin: 0;
}

/* تنسيق زر عرض جميع الأخبار مع تأثير الهوفر المميز */
a.s7ch-btn-view-all {
  text-decoration: none;
  border-radius: 30px;
  background: #000;
  padding: 12px 35px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.4s var(--ease);
  border: 1px solid #000;
  display: inline-block;
  white-space: nowrap;
}

a.s7ch-btn-view-all:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(200, 162, 74, 0.3);
}

/* Grid Layout */
.s7ch-news-grid {
  margin-top: 40px;
  padding: 20px 0 !important;
  /* لضمان عدم قطع الظلال */
}

/* ==============================================================
   كارت الخبر وتأثيرات البريق (Glow & Shine Effect)
   ============================================================== */
.s7ch-news-item {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #eee;
  position: relative;
}

/* لمعة الضوء المتحركة التي تظهر عند الهوفر */
.s7ch-news-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 6;
  pointer-events: none;
}

/* التوهج الذهبي ورفع الكارت */
.s7ch-news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(200, 162, 74, 0.25), 0 5px 15px rgba(200, 162, 74, 0.15);
  border-color: rgba(200, 162, 74, 0.4);
}

/* حركة تمرير الضوء (البريق) */
.s7ch-news-item:hover::before {
  left: 200%;
}

/* صورة الكارت وثبات الارتفاع */
.s7ch-news-image {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.s7ch-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.s7ch-news-item:hover .s7ch-news-image img {
  transform: scale(1.08);
}

/* بادج التصنيف (أخبار) */
span.s7ch-news-category {
  position: absolute;
  top: 15px;
  left: 15px;
  right: auto;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  color: #FFF;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 18px;
  z-index: 5;
}

/* ==============================================================
   نظام تحريك أيقونات الشير بالضغط (Click Toggle System)
   ============================================================== */
.s7ch-share-wrapper {
  position: absolute;
  bottom: 15px;
  right: 15px;
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

/* زر الشير الرئيسي الدائري */
button.s7ch-share-main-btn {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 0;
  outline: none;
}

/* حاوية أيقونات السوشيال ميديا (رأسياً لأعلى للديسكتوب) */
.s7ch-share-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  margin-bottom: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* إظهار الأيقونات */
.s7ch-share-wrapper.s7ch-active .s7ch-share-icons {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* تغيير شكل الزر الرئيسي عند الفتح */
.s7ch-share-wrapper.s7ch-active .s7ch-share-main-btn {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.05);
}

/* تصميم أيقونات السوشيال ميديا الفردية */
.s7ch-share-icons a {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.s7ch-share-icons a:hover {
  background: var(--color-gold);
  transform: scale(1.15);
  color: #fff;
}

/* تفاصيل نصوص ومحتوى كرت الخبر */
.s7ch-news-body {
  padding: 25px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

h3.s7ch-news-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}

h3.s7ch-news-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

h3.s7ch-news-title a:hover {
  color: var(--color-gold);
}

p.s7ch-news-text {
  font-size: 13px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
  flex: 1;
}

/* رابط اقرأ المزيد السفلي */
a.s7ch-news-link {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s ease;
  text-align: right;
  text-decoration: none;
  margin-top: auto;
  display: inline-block;
  position: relative;
  width: max-content;
}

a.s7ch-news-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  right: 0;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

a.s7ch-news-link:hover {
  color: var(--color-gold);
}

a.s7ch-news-link:hover::after {
  transform: scaleX(1);
}

.s7ch-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ==============================================================
   أنيميشن السكرول للعنوان (ظهور واختفاء تكراري ناعم)
   ============================================================== */
.s7ch-scroll-reveal-header {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.s7ch-scroll-reveal-header.s7ch-is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================================================
   Responsive Media Queries
   ============================================================== */

@media (max-width: 991px) {
  h2.s7ch-section-heading {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .s7ch-ptb-100 {
    padding: 60px 0;
  }

  .s7ch-container-fluid {
    padding: 0 15px;
  }

  /* إبقاء العنوان وزر "عرض جميع الأخبار" بجوار بعضهما في الموبايل */
  .s7ch-news-header-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  h2.s7ch-section-heading {
    font-size: 18px;
  }

  a.s7ch-btn-view-all {
    padding: 8px 18px;
    font-size: 12px;
  }

  .s7ch-news-image {
    height: 220px;
  }

  .s7ch-news-body {
    padding: 20px 15px;
  }

  /* جعل الأيقونات تظهر أفقياً للموبايل عشان ما تتقصش */
  .s7ch-share-icons {
    flex-direction: row;
    bottom: 50%;
    right: 100%;
    left: auto;
    margin-bottom: 0;
    margin-right: 12px;
    transform: translateY(50%) translateX(15px);
  }

  .s7ch-share-wrapper.s7ch-active .s7ch-share-icons {
    transform: translateY(50%) translateX(0);
  }

  .s7ch-share-icons a {
    margin: 0 4px;
  }
}



/* end section 6 in home page */



/* start section 7 in home page */

.s8ch-title-2,
.s8ch-title-3,
.s8ch-title-4,
.s8ch-title-5,
.s8ch-title-6,
.s8ch-card-title,
.s8ch-approach-title,
.s8ch-btn {
  font-weight: 700;
}

.s8ch-title-1,
.s8ch-hero-title,
.s8ch-section-title {
  font-weight: 900;
}

.s8ch-image {
  max-width: 100%;
  display: block;
}

.s8ch-link {
  text-decoration: none;
  color: inherit;
}

.s8ch-list {
  list-style: none;
}

.s8ch-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.s8ch-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 16px;
  background: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
  transition:
    background 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.s8ch-btn:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.s8ch-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}
.s8ch-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.s8ch-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}
.s8ch-hero-title {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.1;
}
.s8ch-hero-subtitle {
  font-size: clamp(18px, 2.4vw, 26px);
  margin-block: 22px 34px;
  font-weight: 300;
}

/* =========================================
   Call To Action (CTA) Section Styles
   ========================================= */

.s8ch-cta-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28.02%, #494a4a 100.99%);
}

.s8ch-cta-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

.s8ch-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28.02%, #000 100.99%);
  z-index: 2;
}

.s8ch-cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 2rem;
  max-width: 65%;
}

.s8ch-cta-title {
  margin-bottom: 40px;
  letter-spacing: normal;
  color: #fff;
  text-align: center;
  font-family: "Helvetica Neue LT Arabic";
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 55.8px;
}

.s8ch-cta-btn {
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border-radius: 7.496px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 12px 52.144px 12.467px 53px;
  color: #fff;
  font-family: "Helvetica Neue LT Arabic";
  font-size: 15px;
  font-style: normal;
  line-height: 20.988px;
}

.s8ch-cta-btn:hover {
  background-color: #b8965a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 167, 107, 0.3);
  color: #fff;
}

/* =========================================
   تأثير الظهور والاختفاء (Reveal on Scroll)
   ========================================= */
.s8ch-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.s8ch-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   Media Queries (Responsive Styles)
   ========================================= */

@media (max-width: 991px) {
  .s8ch-cta-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .s8ch-cta-section {
    height: 96vh;
  }

  .s8ch-cta-content {
    max-width: 90%;
  }

  .s8ch-cta-title {
    font-size: 20px;
    line-height: 23px;
  }

  .s8ch-cta-btn {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }
}




/* end section 7 in home page */



/*start footer styles */



/* =========================================
   إعدادات الفوتر الأساسية
   ========================================= */
.s9ch-footer {
  background-color: #000000;
  color: #ffffff;
  font-family: "Helvetica Neue LT Arabic", sans-serif;
  padding: 60px 0 30px;
  direction: rtl;
  overflow: hidden;
}

.s9ch-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: 40px;
}

/* =========================================
   الجزء العلوي
   ========================================= */
.s9ch-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.s9ch-footer-logo {
  max-width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.4s ease;
}

.s9ch-brand:hover .s9ch-footer-logo {
  transform: scale(1.05);
}

.s9ch-socials {
  display: flex;
  gap: 15px;
  align-items: center;
}

.s9ch-socials a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.s9ch-socials a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.s9ch-socials a:hover {
  background-color: #d1b17a;
  color: #000;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(209, 177, 122, 0.4);
}

/* =========================================
   النشرة الإخبارية (مع تأثير لمعان الزر)
   ========================================= */
.s9ch-newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 350px;
}

.s9ch-newsletter-label {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.s9ch-newsletter-form {
  display: flex;
  width: 100%;
  background-color: #f5f5f5;
  border-radius: 6px;
  overflow: hidden;
}

.s9ch-newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background: transparent;
  color: #333;
  outline: none;
}

.s9ch-newsletter-btn {
  background-color: #d1b17a;
  color: #000;
  border: none;
  padding: 0 30px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.s9ch-newsletter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: all 0.6s ease;
}

.s9ch-newsletter-btn:hover::before {
  animation: shine-sweep 0.8s ease-in-out;
}

.s9ch-newsletter-btn:hover {
  background-color: #b8965a;
}

/* =========================================
   الفواصل (الخطوط)
   ========================================= */
.s9ch-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

/* =========================================
   الجزء الأوسط: أعمدة الروابط وحركة الفتح والقفل
   ========================================= */
.s9ch-footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.s9ch-footer-col {
  position: relative;
  overflow: hidden;
  padding: 15px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

/* تأثير اللمعان للأعمدة */
.s9ch-footer-col::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  z-index: 1;
  pointer-events: none;
}

.s9ch-footer-col:hover {
  background: rgba(255, 255, 255, 0.02);
}

.s9ch-footer-col:hover::after {
  animation: shine-sweep 1s ease-in-out;
}

/* العنوان وأيقونة السهم */
.s9ch-col-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding-bottom: 15px;
  position: relative;
  z-index: 2;
  user-select: none;
}

.s9ch-chevron {
  font-size: 18px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  color: #d1b17a;
}

/* حركة القائمة المنسدلة (Accordion) بـ CSS Grid لضمان النعومة */
.s9ch-links-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.s9ch-links-list {
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 2;
}

/* عند إضافة كلاس is-open من الجافاسكريبت */
.s9ch-footer-col.is-open .s9ch-links-wrapper {
  grid-template-rows: 1fr;
}

.s9ch-footer-col.is-open .s9ch-col-title {
  color: #d1b17a;
}

.s9ch-footer-col.is-open .s9ch-chevron {
  transform: rotate(180deg);
}

/* روابط القائمة */
.s9ch-links-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.s9ch-links-list a:hover {
  color: #d1b17a;
  transform: translateX(-8px);
}

/* =========================================
   الجزء السفلي (الحقوق)
   ========================================= */
.s9ch-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.s9ch-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}

.s9ch-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.s9ch-bottom-links a:hover {
  color: #d1b17a;
}

.s9ch-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

/* =========================================
   تأثيرات الظهور (Reveal) واللمعان (Keyframes)
   ========================================= */
.s9ch-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.s9ch-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shine-sweep {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* =========================================
   الموبايل والتجاوب (Responsive)
   ========================================= */
@media (max-width: 1024px) {
  .s9ch-footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .s9ch-footer-top {
    flex-direction: column;
    text-align: center;
  }
  
  .s9ch-newsletter {
    width: 100%;
    min-width: unset;
  }
  
  .s9ch-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .s9ch-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .s9ch-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .s9ch-footer-links {
    grid-template-columns: 1fr;
  }
  
  .s9ch-footer-col {
    padding: 5px 0;
  }
  
  .s9ch-col-title {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
  }
}
/* end footer styles */





/* start herosection in page about us  */


.pin-spacer {
    background-color: #000000 !important;
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================================================
   2. تنسيق الهيرو سكشن (الأساس)
   ========================================================================= */
/* استخدمنا الـ ID لتقوية الكلاس بدلاً من استخدام !important */
#about-hero.about-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
    pointer-events: auto;
    isolation: isolate;
}

/* =========================================================================
   3. العناصر الداخلية للهيرو
   ========================================================================= */
.about-hero-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 1;
    will-change: transform, opacity;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: #000000;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    will-change: opacity;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    width: 95%;
    display: flex;
    justify-content: center;
    transform: translateY(40vh) translateZ(0);
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* =========================================================================
   4. تنسيق النص (الوطنية الذكية للاستثمار)
   ========================================================================= */
.about-title-shimmer {
    font-family: var(--font, sans-serif); 
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    font-size: clamp(40px, 5vw, 80px); 
    min-height: 50px;
    white-space: nowrap;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4), 
                 0 0 10px rgba(255, 255, 255, 0.2);
    transform-origin: center center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* =========================================================================
   5. تأمين الأيقونات وتأثير الزجاج المصنفر (Glassmorphism)
   ========================================================================= */
#floating-actions-wrapper.floating-actions {
    position: fixed;
    z-index: 99999;
    pointer-events: auto;
    bottom: 20px; 
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* التصميم الزجاجي الراقي للأيقونات */
.action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08); /* شفافية خفيفة */
    backdrop-filter: blur(12px); /* تأثير الصنفرة الزجاجية */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15); /* إطار مضيء */
    color: #ffffff;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

/* حركة ناعمة عند الوقوف بالماوس */
.action-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

/* =========================================================================
   6. Responsive الشامل (للأيباد، التابلت، والآيفون)
   ========================================================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-hero-img { transform: scale(1.8) translateZ(0); }
    .about-hero-content { transform: translateY(30vh) translateZ(0); }
    .about-title-shimmer { font-size: clamp(35px, 5.5vw, 55px); }
}

@media (max-width: 768px) {
    .about-hero-img { transform: scale(2) translateY(-2vh) translateZ(0); }
    .about-hero-content { transform: translateY(25vh) translateZ(0); }
    .about-title-shimmer { font-size: clamp(26px, 8vw, 45px) !important; }
}


/* end hero section in page about us  */



/* start section 1 in page about us  */



.au-image,
.au-video {
    vertical-align: middle;
}

/* أضف هذا الجزء لتنزيل الصورة/الفيديو للأسفل */
.au-about-sec .au-image,
.au-about-sec .au-video {
    margin-top: 70px; /* غيّر هذا الرقم لضبط النزول كما يناسبك */
}


/* ==========================================================================
   2. نظام حاويات وشبكة بوتستراب (Bootstrap Grid System Core)
   ========================================================================== */
.au-container {
    --au-bs-gutter-x: 1.5rem;
    --au-bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--au-bs-gutter-x) * .5);
    padding-left: calc(var(--au-bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

.au-row {
    --au-bs-gutter-x: 1.5rem;
    --au-bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--au-bs-gutter-y));
    margin-right: calc(-.5 * var(--au-bs-gutter-x));
    margin-left: calc(-.5 * var(--au-bs-gutter-x));
}

.au-row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--au-bs-gutter-x) * .5);
    padding-left: calc(var(--au-bs-gutter-x) * .5);
    margin-top: var(--au-bs-gutter-y);
}


/* ==========================================================================
   3. التنسيقات الافتراضية وتنسيقات النصوص للثيم (Typography & Base Styles)
   ========================================================================== */
.au-title-2 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--au-bs-heading-color, #333);
    /* تم إضافة Fallback لون احتياطي */
    font-size: calc(1.325rem + .9vw);
}

.au-text {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* خصائص كلاس العناوين العامة وتخصيصها للشركة */
.au-section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.au-title-2.au-section-title {
    color: #333435;
  
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
}

/* الخطوط والألوان المعتمدة للفقرات والنصوص */
.au-text,
.au-list-item {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.8;
    
}


/* ==========================================================================
   4. تنسيق وهيكل قسم "عن أسس" (Custom Section Layout)
   ========================================================================== */
.au-about-sec {
    padding: 100px 0;
}

.au-about-sec .au-col-md-8 {
    padding: 0 200px 0 100px;
}


/* ==========================================================================
   5. شاشات العرض المتجاوبة مدمجة (Combined Responsive Media Queries)
   ========================================================================== */

/* --- شاشات الموبايل فما فوق (الحد الأدنى للأبعاد Min-Width) --- */
@media (min-width: 576px) {
    .au-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .au-container {
        max-width: 720px;
    }

    /* تقسيم الأعمدة: ثلثين للنص وثلث للصورة */
    .au-col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .au-col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

@media (min-width: 992px) {
    .au-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .au-container {
        max-width: 1140px;
    }

    .au-title-2 {
        font-size: 2rem;
    }
}

@media (min-width: 1400px) {
    .au-container {
        max-width: 1320px;
    }
}

/* --- الشاشات المتوسطة واللوحية بالتحديد (بين 768px و 1280px) --- */
@media (min-width: 768px) and (max-width: 1280px) {

    .au-about-sec .au-image,
    .au-about-sec .au-video {
        width: 100%;
    }

    .au-about-sec .au-col-md-8 {
        padding: 0 30px;
    }

    .au-about-sec .au-text {
        font-size: 18px;
        line-height: 1.8;
    }
}

/* --- تعديلات الشاشات الصغيرة وتصغير حجم العرض (Max-Width) --- */
@media (max-width: 1199px) {
    .au-section-title {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .au-section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

/* --- شاشات الجوال والهواتف الذكية (أقل من 767px) --- */
@media (max-width: 767px) {
    .au-title-2.au-section-title {
        font-size: 30px;
    }

    .au-section-title {
        font-size: 28px;
    }

    .au-text,
    .au-list-item {
        font-size: 17px;
        line-height: 1.8;
    }

    .au-about-sec {
        padding: 30px 0;
    }

    .au-about-sec .au-col-md-8 {
        padding: 0 20px;
    }

    .au-about-sec .au-col-md-4 .au-image,
    .au-about-sec .au-col-md-4 .au-video {
        width: 100%;
    }
}

/* ==========================================================================
   6. تأثيرات الظهور عند التمرير (Reveal on Scroll)
   ========================================================================== */
.au-reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
    transition-delay: 0s;
    /* إزالة التأخير عند الاختفاء لضمان سلاسة السكرول السريع */
}

/* هذه الفئة سيتم إضافتها وحذفها تلقائياً عبر الجافاسكريبت */
.au-reveal-item.au-active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: var(--delay, 0s);
    /* تطبيق التأخير عند الظهور فقط */
}

/* ==========================================================================
   تأثير التدرج اللوني للنص بناءً على الألوان في image_bd459d.png
   ========================================================================== */
.au-gradient-text {
    background: linear-gradient(to left, #A19574, #2E3A31);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}





/* end section 1 in page about us  */




/* start section 2 in page about us  */



.au2-image,
.au2-video {
    vertical-align: middle;
}

/* ==========================================================================
   3. النصوص والعناوين (Typography)
   ========================================================================== */
.au2-title-2,
.au2-title-3 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--au2-bs-heading-color, #333);
}

.au2-title-2 {
    font-size: calc(1.325rem + .9vw);
}

.au2-title-3 {
    font-size: calc(1.3rem + .6vw);
}

.au2-text,
.au2-list-item {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 1rem;
    margin-top: 0;
}

.au2-section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.au2-title-2.au2-section-title {
    color: #333435;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}

/* ==========================================================================
   4. نظام الشبكة والحاويات (Grid System)
   ========================================================================== */
.au2-container-fluid {
    --au2-bs-gutter-x: 1.5rem;
    --au2-bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--au2-bs-gutter-x) * .5);
    padding-left: calc(var(--au2-bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
    padding: 0 50px;
}

.au2-container {
    --au2-bs-gutter-x: 1.5rem;
    --au2-bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--au2-bs-gutter-x) * .5);
    padding-left: calc(var(--au2-bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}

.au2-row {
    --au2-bs-gutter-x: 1.5rem;
    --au2-bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--au2-bs-gutter-y));
    margin-right: calc(-.5 * var(--au2-bs-gutter-x));
    margin-left: calc(-.5 * var(--au2-bs-gutter-x));
}

.au2-row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--au2-bs-gutter-x) * .5);
    padding-left: calc(var(--au2-bs-gutter-x) * .5);
    margin-top: var(--au2-bs-gutter-y);
}

@media (min-width: 768px) {
    .au2-col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}

/* ==========================================================================
   5. قسم "رؤيتنا" (Our Vision Section)
   ========================================================================== */
section.au2-our-vision.au2-sections.au2-light .au2-row {
    align-items: center;
}

.au2-vision-back {
    border-radius: 20px;
    background: rgba(242, 242, 242, 0.5);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
    padding: 55px 89px;
}

.au2-vision-back .au2-title-3 {
    color: #333435;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    padding: 20px 0;
}

.au2-vision-img-wrapper {
    max-width: 50%;
    margin: 0 auto;
    border-radius: 15px;
    background: transparent;
    position: relative;
}

.au2-interactive-img {
    width: 100%;
    height: auto;
    display: block;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* ==========================================================================
   6. قسم "عن أسس" (About Us Section)
   ========================================================================== */
.au2-about-sec {
    padding: 100px 0;
}

.au2-about-sec .au2-col-md-8 {
    padding: 0 200px 0 100px;
}

/* ==========================================================================
   7. تأثيرات النصوص المتحركة والظهور (Animations & Gradients)
   ========================================================================== */
.au2-gradient-text {
    background: linear-gradient(to left, #A19574, #2E3A31);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.au2-reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.00s ease-out, transform 1.00s ease-out;
    transition-delay: 0s;
}

.au2-reveal-item.au2-active {
    opacity: 1;
    transform: translateY(0);
    transition-delay: var(--au2-delay, 0s);
}

/* ==========================================================================
   8. استعلامات الوسائط المجمعة (Responsive Media Queries)
   ========================================================================== */
@media (min-width: 576px) {
    .au2-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .au2-container {
        max-width: 720px;
    }

    .au2-col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .au2-col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

@media (min-width: 992px) {
    .au2-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .au2-container {
        max-width: 1140px;
    }

    .au2-title-2 {
        font-size: 2rem;
    }

    .au2-title-3 {
        font-size: 1.75rem;
    }
}

@media (min-width: 1400px) {
    .au2-container {
        max-width: 1320px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {

    .au2-about-sec .au2-image,
    .au2-about-sec .au2-video {
        width: 100%;
    }

    .au2-about-sec .au2-col-md-8 {
        padding: 0 30px;
    }

    .au2-about-sec .au2-text {
        font-size: 15px;
        line-height: 27px;
    }

    .au2-col-md-6.au2-vision-back {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .au2-section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    section.au2-our-vision.au2-sections.au2-light .au2-row {
        flex-direction: column;
        text-align: center;
    }

    section.au2-our-vision.au2-sections.au2-light .au2-col-md-6 {
        width: 100%;
    }

    .au2-vision-img-wrapper {
        max-width: 65%;
        margin: 0 auto 30px auto;
    }

    .au2-vision-back {
        padding: 40px 30px;
        margin-top: 20px;
    }

    .au2-vision-back .au2-title-3 {
        font-size: 30px;
        line-height: 45px;
    }
}

@media (max-width: 767px) {
    .au2-title-2.au2-section-title {
        font-size: 30px;
    }

    .au2-section-title {
        font-size: 28px;
    }

    .au2-text,
    .au2-list-item {
        font-size: 15px;
        line-height: 28px;
    }

    .au2-about-sec {
        padding: 30px 0;
    }

    .au2-about-sec .au2-col-md-8 {
        padding: 0 20px;
    }

    .au2-about-sec .au2-col-md-4 .au2-image,
    .au2-about-sec .au2-col-md-4 .au2-video {
        width: 100%;
    }

    section.au2-our-vision.au2-sections.au2-light .au2-row {
        display: flex;
        flex-direction: column-reverse;
    }

    .au2-container-fluid {
        padding: 0 20px;
    }

    .au2-vision-back {
        margin-top: 20px;
        padding: 30px;
    }

    .au2-vision-back .au2-title-3 {
        font-size: 25px;
        line-height: 30px;
        padding: 0;
    }

    .au2-vision-img-wrapper {
        max-width: 90%;
        margin: 30px auto 0 auto;
    }

    p.au2-gradient-text {
        display: block;
    }
}





/* end section 2 in page about us  */



/* start section 3 in page about us  */




.au3-image {
    vertical-align: middle;
}

/* ========================================================
   2. قواعد Bootstrap الأساسية
======================================================== */
.au3-container {
    --au3-bs-gutter-x: 1.5rem;
    --au3-bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--au3-bs-gutter-x) * 0.5);
    padding-left: calc(var(--au3-bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 992px) {
    .au3-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .au3-container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .au3-container {
        max-width: 1320px;
    }
}

.au3-row {
    --au3-bs-gutter-x: 1.5rem;
    --au3-bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--au3-bs-gutter-y));
    margin-right: calc(-0.5 * var(--au3-bs-gutter-x));
    margin-left: calc(-0.5 * var(--au3-bs-gutter-x));
}

.au3-row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--au3-bs-gutter-x) * 0.5);
    padding-left: calc(var(--au3-bs-gutter-x) * 0.5);
    margin-top: var(--au3-bs-gutter-y);
}

.au3-align-items-start {
    align-items: flex-start !important;
}

@media (min-width: 992px) {
    .au3-col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .au3-col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
}

/* ========================================================
   3. التنسيقات المضمنة
======================================================== */
.au3-test-sec {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f4f4f4;
    padding: 50px 0;
}

.au3-test-sec.au3-dark {
    background-color: var(--au3-darker-bg, #0d0d0d);
    color: var(--au3-light-text, #ffffff);
}

.au3-test-sec .au3-title-2 {
    color: inherit;
    margin-bottom: 20px;
}

/* ========================================================
   4. تنسيقات مكونات الصفحة
======================================================== */
section.au3-values-section {
    padding: 83px 0;
    margin-top: 100px;
    background-size: cover;
}

.au3-text-gold {
    color: var(--au3-gold-color) !important;
}

.au3-values-image {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 0;
}

/* تم استبدال ال img ب au3-image هنا كمان */
.au3-values-image .au3-image {
    width: min-content;
    max-width: 100%;
}

.au3-values-content {
    /* أضف هذا السطر، وكلما زاد الرقم بالسالب كلما ارتفع الكلام أكثر */
    margin-top: -30px;
    margin-bottom: 40px;
    padding-right: 10px;
}

.au3-values-heading {
    margin-top: 30px;
    margin-bottom: 5px;
    color: #333435;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

p.au3-values-description {
    padding-top: 20px;
    margin-bottom: 0;
    font-weight: 500;
}

.au3-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.au3-value-item {
    padding-bottom: 10px;
}

.au3-value-icon {
    width: 60px;
    height: 60px;
    color: #fff;
    margin-bottom: 20px;
}

.au3-value-item h3 {
    margin-bottom: 10px;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.au3-value-item p {
    margin: 0;
    color: #333435;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

/* ========================================================
   5. أكواد الأنيميشن والتكرار السلس
======================================================== */
.au3-reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.4s ease-in, transform 0.4s ease-in;
    transition-delay: 0s !important;
}

.au3-reveal-item.au3-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: var(--au3-delay, 0s) !important;
}

@keyframes au3-floatDirectional {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(15px, -10px);
    }

    50% {
        transform: translate(-15px, 15px);
    }

    75% {
        transform: translate(10px, 15px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.au3-floating-img {
    animation: au3-floatDirectional 8s infinite ease-in-out;
    display: inline-block;
    will-change: transform;
}

/* ========================================================
   6. تنسيقات التجاوب الخاصة بالتابلت والموبايل
======================================================== */
@media (max-width: 991px) {
    section.au3-values-section {
        padding: 60px 0;
        /* تقليل المسافة العلوية والسفلية للقسم في التابلت */
        margin-top: 50px;
    }

    .au3-values-content {
        padding-right: 0;
        margin-bottom: 40px;
        margin-top: 0;
        /* إلغاء الرفع بالسالب عشان ميبوظش التنسيق في التابلت */
    }

    .au3-values-image {
        margin-bottom: 40px;
    }

    .au3-values-heading {
        font-size: 34px;
        /* تصغير نسبي للعنوان عشان يناسب التابلت */
        line-height: 44px;
        /* تظبيط تباعد السطور */
    }
}

@media (max-width: 767px) {
    .au3-values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px 15px;
    }

    .au3-value-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 30px !important;
    }

    .au3-value-item h3 {
        font-size: 18px;
        /* 16 كان صغير جداً كعنوان، 18 هيكون أوضح */
        margin-bottom: 8px !important;
    }

    .au3-value-item p {
        font-size: 14px;
        /* 13 صغير جداً وبيجهد العين، 14 أو 15 أفضل ومقروء */
        line-height: 24px;
    }

    .au3-values-heading {
        font-size: 28px;
        line-height: 40px;
        margin-top: 0;
    }

    p.au3-values-description {
        font-size: 15px;
        line-height: 26px;
    }
}







/* end section 3 in page about us  */



/* start section in page Administration  */



.chairman-section {
    position: relative;
    padding: 100px 0;
    /* لون الخلفية الكريمي الفاتح من الهوية #F1EEDB */
    background-color: #F1EEDB; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.chairman-container {
    width: 100%;
    max-width: 1000px; /* عرض مناسب يخلي القراءة مريحة للعين */
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

/* =========================================================================
   تصميم الكارت والـ Hover Effect
   ========================================================================= */
.chairman-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 60px 50px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(95, 72, 60, 0.08); /* ظل خفيف بلون البني الداكن */
    border-top: 8px solid #A19574; /* خط علوي باللون البرونزي/الذهبي */
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* إعدادات حركة الـ Hover */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

/* التأثير عند المرور بالماوس (Hover) */
.chairman-card:hover {
    transform: translateY(-10px); /* الكارت يرتفع لأعلى */
    box-shadow: 0 30px 60px rgba(95, 72, 60, 0.15); /* الظل يكبر ويدي عمق */
}

/* =========================================================================
   حاوية الصورة
   ========================================================================= */
.chairman-img-outer {
    margin-bottom: 25px;
}

.chairman-img-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #E8DBBE; /* إطار بلون البيج من الهوية */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F1EEDB;
    transition: transform 0.4s ease;
}

/* حركة خفيفة للصورة لما تعمل Hover على الكارت */
.chairman-card:hover .chairman-img-wrapper {
    transform: scale(1.05);
    border-color: #A19574;
}

.chairman-img {
    width: 130px;
    height: 120px;
    object-fit: cover;
}

/* =========================================================================
   النصوص (الاسم، المسمى، ومتن الكلمة)
   ========================================================================= */
.chairman-name {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 700;
    color: #5F483C; /* البني الداكن من الهوية */
    margin: 0 0 5px 0;
    text-align: center;
}

.chairman-role {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
    color: #A19574; /* البرونزي/الذهبي */
    margin: 0 0 25px 0;
    text-align: center;
}

.chairman-divider {
    width: 60px;
    height: 3px;
    background-color: #949C7D; /* اللون الزيتي الفاتح من الهوية */
    margin-bottom: 35px;
    border-radius: 2px;
}

.chairman-speech-content {
    width: 100%;
}

.chairman-speech-content p {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.9;
    color: #333333; /* لون غامق للقراءة المريحة */
    margin: 0 0 20px 0;
    text-align: justify; /* محاذاة أطراف النص */
}

.chairman-speech-content p strong {
    color: #5F483C; /* تمييز اسم الشركة بالبني الداكن */
}

.chairman-speech-content p:last-child {
    margin-bottom: 0;
}

/* =========================================================================
   Responsive التابلت والموبايل
   ========================================================================= */
@media (max-width: 768px) {
    .chairman-section {
        padding: 60px 0;
    }
    .chairman-card {
        padding: 40px 25px;
        border-radius: 16px;
    }
    .chairman-img-wrapper {
        width: 130px;
        height: 130px;
    }
}
/*end section in page Administration  */



/*start hero section in page projects  */



.projects-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* بياخد ارتفاع الشاشة بالكامل */
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* مهم جداً عشان الصورة لما تكبر متعملش سكرول بالعرض */
    background-color: #000;
}

/* =========================================================================
   خلفية الصورة والـ Overlay
   ========================================================================= */
.ph-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ph-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* تحسينات الأداء عشان الـ Zoom ميبقاش بيقطع */
    will-change: transform;
    transform-origin: center center; /* نقطة الزوم من نص الصورة */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.ph-overlay {
    position: absolute;
    inset: 0;
    /* تدرج لوني من الأسفل والبني الداكن للشفافية */
    background: linear-gradient(to top, rgba(95, 72, 60, 0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

/* =========================================================================
   النصوص والمحتوى
   ========================================================================= */
.ph-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    will-change: transform, opacity;
}

.ph-subtitle {
    font-family: var(--font, sans-serif);
    color: var(--brand-bronze); /* اللون البرونزي */
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ph-title {
    font-family: var(--font, sans-serif);
    color: #ffffff;
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.ph-divider {
    width: 80px;
    height: 3px;
    background-color: var(--brand-bronze);
    margin-bottom: 30px;
    border-radius: 2px;
}

.ph-desc {
    color: var(--brand-cream); /* اللون الكريمي الفاتح */
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* =========================================================================
   مؤشر الماوس (يتحرك للأسفل)
   ========================================================================= */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    opacity: 0.8;
}

.scroll-indicator span {
    font-size: 12px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: var(--brand-cream);
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--brand-cream);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--brand-bronze);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}




/*end hero section in page projects  */


/*start section 1 in page projects  */


.pro1-title-2,
.pro1-title-3 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

.pro1-text {
    margin-top: 0;
    margin-bottom: 1rem;
}

.pro1-link {
    color: #0d6efd;
    text-decoration: none;
}

.pro1-link:hover {
    color: #0a58ca;
}

.pro1-image {
    vertical-align: middle;
    max-width: 100%;
}

.pro1-list {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* =========================================
   2. نظام الشبكة (Grid) والمسافات
   ========================================= */
.pro1-container {
    width: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    margin-right: auto;
    margin-left: auto;
}

.pro1-row {
    --pro1-bs-gutter-x: 1.5rem;
    --pro1-bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: 3rem;
    margin-top: calc(-1 * var(--pro1-bs-gutter-y));
    margin-right: calc(-.5 * var(--pro1-bs-gutter-x));
    margin-left: calc(-.5 * var(--pro1-bs-gutter-x));
}

.pro1-row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--pro1-bs-gutter-x) * .5);
    padding-left: calc(var(--pro1-bs-gutter-x) * .5);
    margin-top: var(--pro1-bs-gutter-y);
}

.pro1-text-center {
    text-align: center !important;
}

.pro1-mb-5 {
    margin-bottom: 3rem !important;
}

.pro1-mt-5 {
    margin-top: 3rem !important;
}

.pro1-g-4 {
    --pro1-bs-gutter-x: 1.5rem;
    --pro1-bs-gutter-y: 1.5rem;
}

/* تخصيصات الشاشات المختلفة (Media Queries) */
@media (min-width: 768px) {
    .pro1-container {
        max-width: 720px;
    }

    .pro1-col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

@media (min-width: 992px) {
    .pro1-container {
        max-width: 960px;
    }

    .pro1-col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .pro1-col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .pro1-px-lg-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
}

@media (min-width: 1200px) {
    .pro1-container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .pro1-container {
        max-width: 1320px;
    }
}

.pro1-btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .375rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* =========================================
   3. الأكواد المخصصة
   ========================================= */
.pro1-test-sec {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f4f4f4;
    padding: 50px 0;
}

.pro1-test-sec.pro1-dark {
    background-color: var(--pro1-darker-bg, #0d0d0d);
    color: var(--pro1-light-text, #ffffff);
}

.pro1-test-sec .pro1-title-2 {
    color: inherit;
    margin-bottom: 20px;
}

/* تنسيقات المشاريع والفلاتر */
.pro1-projects-section {
    background-color: #fff;
    padding: 50px 0;
    background-size: unset;
    background-repeat: repeat;
    overflow-x: hidden;
}

.pro1-section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #333435;
    font-family: "Helvetica Neue LT Arabic", sans-serif;
}

.pro1-section-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 1250px;
    margin: 0 auto;
    font-weight: 700;
}

.pro1-category-filter {
    margin-bottom: 40px;
}

/* =========================================
   تنسيقات الفلاتر
   ========================================= */
.pro1-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 155px;
}

.pro1-category-link {
    text-decoration: none;
    color: #a0a0a0;
    font-size: 22px;
    font-weight: 500;
    background-color: transparent;
    padding: 5px 0;
    border-radius: 0;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.pro1-category-link:hover {
    color: #C8A870;
    background-color: transparent;
}

.pro1-category-item.pro1-active .pro1-category-link {
    color: #C8A870;
    background-color: transparent;
    font-weight: 700;
}

/* =========================================
   تعديلات الفلاتر للشاشات المتوسطة والصغيرة (التابلت والجوال)
   ========================================= */

/* شاشات الآيباد برو واللابتوب الصغير (أقل من أو يساوي 1024px) */
@media (max-width: 1024px) {
    .pro1-category-list {
        gap: 80px;
        row-gap: 20px;
    }

    .pro1-category-link {
        font-size: 18px;
    }
}

/* شاشات التابلت (أقل من 992px) */
@media (max-width: 991px) {
    .pro1-category-list {
        gap: 40px;
    }

    .pro1-category-link {
        font-size: 19px;
    }
}

/* شاشات الجوال (أقل من 768px) */
@media (max-width: 767px) {
    .pro1-category-list {
        gap: 15px;
        row-gap: 20px;
    }

    .pro1-category-link {
        font-size: 16px;
    }
}

/* =========================================
   تنسيقات كروت المشاريع (Cards) وحركتها
   ========================================= */
.pro1-project-card {
    position: relative;
    height: 700px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeaea;
    /* إضافة البوردر هنا */

    opacity: 0;
    transform: translate(-80px, 50px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.4s ease;
}

.pro1-project-card.pro1-card-visible {
    opacity: 1;
    transform: translate(0, 0);
}

@media (min-width: 768px) {
    .pro1-row#pro1-projectsGrid {
        padding-bottom: 80px;
    }

    .pro1-row#pro1-projectsGrid>div:nth-child(3n+2) .pro1-project-card {
        transform: translate(-80px, 95px);
    }

    .pro1-row#pro1-projectsGrid>div:nth-child(3n+2) .pro1-project-card.pro1-card-visible {
        transform: translate(0, 45px);
    }
}

.pro1-project-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}

.pro1-project-card .pro1-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pro1-project-card:hover .pro1-project-image {
    transform: scale(1.1);
}

.pro1-tour-360-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.pro1-tour-360-icon .pro1-image {
    width: 40px;
    height: 40px;
}

.pro1-project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .9), transparent);
    padding: 40px;
    color: #fff;
    z-index: 2;
}

.pro1-project-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pro1-project-title .pro1-link {
    color: #fff;
    text-decoration: none;
}

.pro1-sold-ava {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 3;
}

/* =========================================
   أنيميشن ظهور النصوص والفلاتر
   ========================================= */
.pro1-animate-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.pro1-animate-text.pro1-text-visible {
    opacity: 1;
    transform: translateY(0);
}

.pro1-section-description.pro1-animate-text {
    transition-delay: 0.15s;
}

.pro1-category-item.pro1-animate-text:nth-child(1) {
    transition-delay: 0.25s;
}

.pro1-category-item.pro1-animate-text:nth-child(2) {
    transition-delay: 0.35s;
}

.pro1-category-item.pro1-animate-text:nth-child(3) {
    transition-delay: 0.45s;
}

.pro1-category-item.pro1-animate-text:nth-child(4) {
    transition-delay: 0.55s;
}

.pro1-category-item.pro1-animate-text:nth-child(5) {
    transition-delay: 0.65s;
}

/* =========================================
   تأثير البريق الذهبي لزر "عرض المزيد"
   ========================================= */
.pro1-btn-load-more {
    position: relative;
    overflow: hidden;
    background: #C8A870;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pro1-btn-load-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
    z-index: 1;
}

.pro1-btn-load-more:hover {
    background: #b89760;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 168, 112, 0.4);
}

.pro1-btn-load-more:hover::before {
    left: 150%;
    transition: left 0.7s ease-in-out;
}

/* =========================================
   تنسيقات كروت "قيد الإنشاء" والمحتوى الفارغ
   ========================================= */
.pro1-empty-card {
    background-color: #fafafa;
    border: 2px dashed #e4e4e4;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.pro1-under-construction {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.pro1-uc-text {
    font-size: 24px;
    font-weight: 700;
    color: #b3b3b3;
    margin: 0;
    font-family: "Helvetica Neue LT Arabic", sans-serif;
    letter-spacing: 0.5px;
}

/* =========================================
   تصميم علامة التحميل (Spinner Loader)
   ========================================= */
.pro1-loader {
    width: 60px;
    height: 60px;
    border: 5px solid #eaeaea;
    border-top: 5px solid #C8A870;
    border-right: 5px solid #C8A870;
    border-radius: 50%;
    animation: pro1-spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes pro1-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}








/*end section 1 in page projects  */



/*start hero section  in page Alpha  */

.project-detail-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
    
    /* فك قفل الـ GSAP للسماح بالضغط على الأزرار */
    pointer-events: auto !important; 
    isolation: isolate;
}

/* =========================================================================
   خلفية الصورة والـ Overlay
   ========================================================================= */
.pd-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pd-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transform-origin: center center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.pd-overlay {
    position: absolute;
    inset: 0;
    /* تدرج يركز على الجزء السفلي لضمان وضوح النصوص والأزرار */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 30%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* =========================================================================
   المحتوى (الاسم والأزرار) 
   ========================================================================= */
.pd-content {
    position: absolute;
    bottom: 8%; /* يرفع المحتوى قليلاً عن الحافة */
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    will-change: transform, opacity;
    
    /* تأكيد السماح بالضغط على المحتوى */
    pointer-events: auto;
}

.pd-title {
    font-family: var(--font, sans-serif);
    color: #ffffff;
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 700;
    margin: 0 0 30px 0;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.pd-buttons-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* =========================================================================
   تصميم الأزرار وتفاعلات الـ Hover الفخمة (Glassmorphism)
   ========================================================================= */
.pd-btn {
    padding: 15px 40px;
    border-radius: 8px;
    font-family: var(--font, sans-serif);
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* زر "سجل اهتمامك" */
.primary-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.primary-btn:hover {
    background: var(--brand-brown); 
    border-color: var(--brand-brown);
    color: var(--brand-cream); 
    transform: translateY(-5px); 
    box-shadow: 0 12px 25px rgba(95, 72, 60, 0.4); 
}

/* زر "حمل البروشور" */
.secondary-btn {
    background: rgba(148, 156, 125, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 156, 125, 0.5);
    color: #ffffff;
}

.secondary-btn:hover {
    background: var(--brand-olive); 
    border-color: var(--brand-olive);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(148, 156, 125, 0.4); 
}

/* Responsive لشاشات الموبايل */
@media (max-width: 480px) {
    .pd-buttons-group {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .pd-btn {
        width: 100%;
    }
    .pd-content {
        bottom: 5%;
    }
}


/*end hero section  in page Alpha  */



/*start  section 1 in page Alpha  */



.elb-title-2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--elb-bs-heading-color);
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
    .elb-title-2 {
        font-size: 2rem;
    }
}

.elb-text {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* ==============================================================
   2. التخطيط والشبكة (Bootstrap Grid Layout)
   ============================================================== */
.elb-container {
    --elb-bs-gutter-x: 1.5rem;
    --elb-bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--elb-bs-gutter-x) * 0.5);
    padding-left: calc(var(--elb-bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .elb-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .elb-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .elb-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .elb-container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .elb-container {
        max-width: 1320px;
    }
}

.elb-row {
    --elb-bs-gutter-x: 1.5rem;
    --elb-bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--elb-bs-gutter-y));
    margin-right: calc(-0.5 * var(--elb-bs-gutter-x));
    margin-left: calc(-0.5 * var(--elb-bs-gutter-x));
}

.elb-row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--elb-bs-gutter-x) * 0.5);
    padding-left: calc(var(--elb-bs-gutter-x) * 0.5);
    margin-top: var(--elb-bs-gutter-y);
}

.elb-col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .elb-col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

.elb-text-center {
    text-align: center !important;
}

.elb-mb-4 {
    margin-bottom: 1.5rem !important;
}

/* ==============================================================
   3. العناصر المخصصة (Custom Components)
   ============================================================== */
.elb-counter-section {
    padding: 80px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.elb-counter-box {
    padding: 20px;
}

.elb-counter-number {
    font-size: 48px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .elb-counter-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .elb-counter-number {
        font-size: 36px;
    }
}

.elb-counter-label {
    font-size: 16px;
    color: var(--elb-gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.elb-counter-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.elb-count-sec {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.elb-count-sec span {
    padding-left: 10px;
}

/* دعم الاتجاه من اليمين لليسار (RTL) */
.rtl .elb-count-sec span,
[dir="rtl"] .elb-count-sec span {
    padding-right: 10px;
    padding-left: 10px;
}

/* ==============================================================
   4. الأقسام التجريبية وحركات الظهور (Animations & Test Sections)
   ============================================================== */
.elb-sections {
    padding: 100px 15px;
    text-align: center;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.elb-dark {
    background-color: var(--elb-dark-bg);
}

.elb-dark .elb-title-2,
.elb-dark .elb-text {
    color: var(--elb-light-text);
}

.elb-gradient-text {
    background: linear-gradient(45deg, var(--elb-gold-color), #f3d088);
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.elb-reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.elb-reveal-item.elb-active {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================================================
   5. حركات الظهور للعداد (Counter Reveal Animations)
   ============================================================== */
.elb-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* الكلاس المضاف برمجياً عند دخول الشاشة */
.elb-reveal.elb-is-visible {
    opacity: 1;
    transform: translateY(0);
}


/*end  section 1 in page Alpha  */




/*start  section 2 in page Alpha  */

.elb1-title-2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .elb1-title-2 {
        font-size: 2rem;
    }
}

.elb1-text {
    margin-top: 0;
    margin-bottom: 1rem;
}

.elb1-link {
    color: rgba(13, 110, 253, 1);
    text-decoration: underline;
}

.elb1-link:hover {
    color: rgba(10, 88, 202, 1);
}

.elb1-image {
    vertical-align: middle;
}

/* ==============================================================
   2. التخطيط والشبكة (Bootstrap Grid Layout)
   ============================================================== */
.elb1-container,
.elb1-container-fluid {
    --elb1-bs-gutter-x: 1.5rem;
    --elb1-bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--elb1-bs-gutter-x) * 0.5);
    padding-left: calc(var(--elb1-bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

.elb1-container-fluid {
    padding: 0 50px;
}

@media (max-width: 768px) {
    .elb1-container-fluid {
        padding: 0 15px;
    }
}

@media (min-width: 576px) {
    .elb1-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .elb1-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .elb1-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .elb1-container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .elb1-container {
        max-width: 1320px;
    }
}

.elb1-row {
    --elb1-bs-gutter-x: 1.5rem;
    --elb1-bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--elb1-bs-gutter-y));
    margin-right: calc(-0.5 * var(--elb1-bs-gutter-x));
    margin-left: calc(-0.5 * var(--elb1-bs-gutter-x));
}

.elb1-row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--elb1-bs-gutter-x) * 0.5);
    padding-left: calc(var(--elb1-bs-gutter-x) * 0.5);
    margin-top: var(--elb1-bs-gutter-y);
}

.elb1-g-0,
.elb1-gx-0 {
    --elb1-bs-gutter-x: 0;
}

.elb1-g-0,
.elb1-gy-0 {
    --elb1-bs-gutter-y: 0;
}

.elb1-px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/* ==============================================================
   3. تنسيقات بطاقة العقار (Property Featured)
   ============================================================== */
.elb1-property-featured {
    background-color: #fff;
}

.elb1-property-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.elb1-property-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.elb1-property-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
}

.elb1-property-title {
    color: #FFF;
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 5px;
}

span.elb1-property-price {
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
    display: block;
}

.elb1-property-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.elb1-enquiry-btn {
    border: none;
    padding: 12px 30px;
    text-transform: uppercase;
    transition: var(--elb1-transition);
    border-radius: 7.5px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #FFF;
    text-align: center;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
}

.elb1-enquiry-btn:hover {
    background-color: var(--elb1-gold-color);
    color: #fff;
}

/* ==============================================================
   4. التجاوب مع الشاشات (Media Queries)
   ============================================================== */

/* شاشات التابلت (أقل من 1024 بكسل) */
@media (max-width: 1024px) {
    .elb1-property-image-wrapper {
        width: 100%;
        max-width: 100%;
        /* لملء الشاشة بالكامل والقضاء على الهوامش البيضاء */
        height: 602px;
        margin: 0;
    }

    .elb1-property-image {
        width: 100%;
        height: 602px;
        object-fit: cover;
        object-position: center;
    }
}

/* الشاشات المتوسطة (أقل من 991 بكسل) */
@media (max-width: 991px) {
    .elb1-property-title {
        font-size: 1.5rem;
    }

    .elb1-property-content {
        bottom: 20px;
        left: 0px;
        padding: 20px 30px;
    }
}

/* شاشات الموبايل (أقل من 767 بكسل لعدم التداخل مع التابلت) */
@media (max-width: 767px) {
    .elb1-property-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 10px;
        gap: 15px;
        width: 100%;
        bottom: 20px;
        /* تم إصلاحه ليلتصق النص والمربع بالأسفل بشكل طبيعي */
    }

    .elb1-pro-details {
        text-align: right;
        width: 100%;
    }

    .elb1-property-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    span.elb1-property-price {
        font-size: 16px;
    }

    .elb1-property-actions {
        width: auto;
        display: flex;
    }

    .elb1-enquiry-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .elb1-property-image-wrapper {
        height: 400px;
        /* ارتفاع أنسب للموبايلات */
        width: 100%;
        max-width: 100%;
        /* إزالة الـ 620 بكسل التي سببت الخلل */
        margin: 0;
        overflow: hidden;
    }

    .elb1-property-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center;
    }
}

/* تخصيص إضافي للشاشات الصغيرة جداً */
@media (max-width: 400px) {
    .elb1-property-title {
        font-size: 20px;
    }

    span.elb1-property-price {
        font-size: 14px;
    }

    .elb1-enquiry-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* ==============================================================
   5. الأقسام التجريبية (Test Sections)
   ============================================================== */
.elb1-sections {
    padding: 100px 15px;
    text-align: center;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.elb1-dark {
    background-color: var(--elb1-dark-bg);
}

.elb1-dark .elb1-title-2,
.elb1-dark .elb1-text {
    color: var(--elb1-light-text);
}

.elb1-gradient-text {
    background: linear-gradient(45deg, var(--elb1-gold-color), #f3d088);
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ==============================================================
   6. حركات الظهور والاختفاء المستمر (Animations)
   ============================================================== */
.elb1-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.elb1-reveal.elb1-is-visible {
    opacity: 1;
    transform: translateY(0);
}


/*end  section 2 in page Alpha  */










/*start  section 3 in page Alpha  */





.features-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

/* =========================================================================
   الصورة الخلفية
   ========================================================================= */
.fs-bg-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fs-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* =========================================================================
   حاوية المربع الزجاجي
   ========================================================================= */
.fs-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; /* لمحاذاة المربع جهة اليسار في نظام RTL */
}

/* المربع الزجاجي بتأثير الـ Glassmorphism مطابق للصورة */
.fs-glass-box {
    background: rgba(241, 238, 219, 0.85); /* لون الهوية الكريمي مع شفافية */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 60px 80px;
    width: 100%;
    max-width: 450px;
    
    /* زوايا دائرية من اليمين فقط ليلتصق بحافة الشاشة اليسرى */
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* =========================================================================
   النصوص والقوائم
   ========================================================================= */
.fs-title {
    color: var(--brand-brown); /* اللون البني من الهوية */
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    margin: 0 0 40px 0;
    text-align: right;
}

.fs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px; /* المسافة بين العناصر */
}

.fs-list li {
    position: relative;
    font-size: clamp(16px, 1.5vw, 18px);
    color: #333333;
    font-weight: 600;
    padding-right: 20px; /* مسافة للمربع الصغير */
    display: flex;
    align-items: center;
}

/* تصميم المربع الصغير (البوليت) جنب كل كلمة زي الصورة */
.fs-list li::before {
    content: "";
    position: absolute;
    right: 0;
    width: 6px;
    height: 6px;
    background-color: var(--brand-brown); /* المربع بلون الهوية */
    border-radius: 1px;
}

/* =========================================================================
   Responsive للشاشات الصغيرة
   ========================================================================= */
@media (max-width: 768px) {
    .features-section {
        align-items: flex-end; /* في الموبايل المربع ينزل لتحت */
    }
    .fs-container {
        justify-content: center;
        padding: 0;
    }
    .fs-glass-box {
        max-width: 100%;
        border-radius: 30px 30px 0 0; /* الحواف الدائرية من فوق فقط */
        padding: 40px 30px;
        background: rgba(241, 238, 219, 0.95); /* تقليل الشفافية في الموبايل لسهولة القراءة */
    }
}







/*end  section 3 in page Alpha  */



/*start  section 4 in page Alpha  */


.elb4-title-2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

@media (min-width: 1200px) {
    .elb4-title-2 {
        font-size: 2rem;
    }
}

.elb4-text {
    margin-top: 0;
    margin-bottom: 1rem;
}

.elb4-link {
    color: rgba(13, 110, 253, 1);
    text-decoration: underline;
}

.elb4-link:hover {
    color: rgba(10, 88, 202, 1);
}

.elb4-image {
    vertical-align: middle;
}

/* ==============================================================
   2. التخطيط والشبكة (Bootstrap Grid Layout)
   ============================================================== */
.elb4-container,
.elb4-container-fluid {
    --elb4-bs-gutter-x: 1.5rem;
    --elb4-bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--elb4-bs-gutter-x) * 0.5);
    padding-left: calc(var(--elb4-bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

.elb4-container-fluid {
    padding: 0 50px;
}

@media (max-width: 768px) {
    .elb4-container-fluid {
        padding: 0 15px;
    }
}

@media (min-width: 576px) {
    .elb4-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .elb4-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .elb4-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .elb4-container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .elb4-container {
        max-width: 1320px;
    }
}

.elb4-row {
    --elb4-bs-gutter-x: 1.5rem;
    --elb4-bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--elb4-bs-gutter-y));
    margin-right: calc(-0.5 * var(--elb4-bs-gutter-x));
    margin-left: calc(-0.5 * var(--elb4-bs-gutter-x));
}

.elb4-row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--elb4-bs-gutter-x) * 0.5);
    padding-left: calc(var(--elb4-bs-gutter-x) * 0.5);
    margin-top: var(--elb4-bs-gutter-y);
}

.elb4-g-0,
.elb4-gx-0 {
    --elb4-bs-gutter-x: 0;
}

.elb4-g-0,
.elb4-gy-0 {
    --elb4-bs-gutter-y: 0;
}

.elb4-px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/* ==============================================================
   3. تنسيقات بطاقة العقار (Property Featured)
   ============================================================== */
.elb4-property-featured {
    background-color: #fff;
}

.elb4-property-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.elb4-property-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.elb4-property-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
}

.elb4-property-title {
    color: #FFF;
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 5px;
}

span.elb4-property-price {
    color: #FFF;
    font-size: 20px;
    font-weight: 300;
    display: block;
}

.elb4-property-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.elb4-enquiry-btn {
    border: none;
    padding: 12px 30px;
    text-transform: uppercase;
    transition: var(--elb4-transition);
    border-radius: 7.5px;
    background: rgba(255, 255, 255, 0.2);
    color: #FFF;
    text-align: center;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
}

.elb4-enquiry-btn:hover {
    background-color: var(--elb4-gold-color);
    color: #fff;
}

/* ==============================================================
   4. قسم المعرض السلايدر (Gallery Swiper) - مدمج حديثاً
   ============================================================== */
.elb4-gallery-section {
    background-color: #fff;
    position: relative;
    width: 100%;
}

.elb4-gallery-slider-wrapper {
    width: 100%;
    height: 700px;
    position: relative;
}

.elb4-gallerySwiper {
    width: 100%;
    height: 100%;
}

.elb4-gallerySwiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.elb4-gallery-full-card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.elb4-gallery-full-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.elb4-gallery-full-card:hover img {
    transform: scale(1.05);
}

.elb4-gallery-full-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    z-index: 2;
}

.elb4-gallery-full-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0;
}

/* تعديلات أزرار Swiper */
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--elb4-gold-color);
    /* تم ربطه بمتغير اللون الذهبي الأساسي */
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}

/* ==============================================================
   5. التجاوب مع الشاشات (Media Queries)
   ============================================================== */

@media (max-width: 1024px) {
    .elb4-property-image-wrapper {
        width: 100%;
        max-width: 100%;
        height: 602px;
        margin: 0;
    }

    .elb4-property-image {
        width: 100%;
        height: 602px;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 991px) {
    .elb4-property-title {
        font-size: 1.5rem;
    }

    .elb4-property-content {
        bottom: 20px;
        left: 0px;
        padding: 20px 30px;
    }
}

@media (max-width: 767px) {
    .elb4-property-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 10px;
        gap: 15px;
        width: 100%;
        bottom: 20px;
    }

    .elb4-pro-details {
        text-align: right;
        width: 100%;
    }

    .elb4-property-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    span.elb4-property-price {
        font-size: 16px;
    }

    .elb4-property-actions {
        width: auto;
        display: flex;
    }

    .elb4-enquiry-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .elb4-property-image-wrapper {
        height: 400px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        overflow: hidden;
    }

    .elb4-property-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center;
    }

    /* تصغير ارتفاع المعرض في الجوال */
    .elb4-gallery-slider-wrapper {
        height: 400px;
    }
}

@media (max-width: 400px) {
    .elb4-property-title {
        font-size: 20px;
    }

    span.elb4-property-price {
        font-size: 14px;
    }

    .elb4-enquiry-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}

/* ==============================================================
   6. الأقسام التجريبية والأنيميشن (Test Sections & Animations)
   ============================================================== */
.elb4-sections {
    padding: 100px 15px;
    text-align: center;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.elb4-dark {
    background-color: var(--elb4-dark-bg);
}

.elb4-dark .elb4-title-2,
.elb4-dark .elb4-text {
    color: var(--elb4-light-text);
}

.elb4-gradient-text {
    background: linear-gradient(45deg, var(--elb4-gold-color), #f3d088);
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.elb4-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.elb4-reveal.elb4-is-visible {
    opacity: 1;
    transform: translateY(0);
}





/*end  section 4 in page Alpha  */
/*start  section 5 in page Alpha  */

.location-section {
    position: relative;
    width: 100%;
    /* خلفية السكشن باللون الكريمي الفاتح ليتماشى مع الهوية */
    background-color: var(--brand-cream); 
    padding-top: 80px; /* مسافة من فوق للعنوان */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================================================================
   عنوان السكشن
   ========================================================================= */
.loc-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.loc-title {
    color: var(--brand-dark-brown);
    font-size: clamp(32px, 4vw, 45px);
    font-weight: 700;
    margin: 0 0 15px 0;
}

.loc-divider {
    width: 60px;
    height: 3px;
    background-color: var(--brand-bronze);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.loc-desc {
    color: var(--brand-olive);
    font-size: clamp(16px, 2vw, 20px);
    margin: 0;
}

/* =========================================================================
   حاوية الخريطة (Edge to Edge)
   ========================================================================= */
.loc-map-wrapper {
    width: 100%;
    height: 60vh; /* ارتفاع الخريطة، تقدر تزوده أو تقلله حسب الرغبة */
    min-height: 450px;
    border-top: 5px solid var(--brand-bronze); /* خط ديكوري فخم فوق الخريطة */
    
    /* تأثير خفيف لتقليل سطوع الخريطة عشان تبقى فخمة وتمشي مع الألوان */
    filter: contrast(1.05) opacity(0.9);
    transition: filter 0.4s ease;
}

/* الخريطة تنور وترجع لطبيعتها لما الماوس ييجي عليها */
.loc-map-wrapper:hover {
    filter: contrast(1) opacity(1);
}

.loc-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}





/*end  section 5 in page Alpha  */





/*start  section 6 in page Alpha  */




/* =========================================================================
   تنسيقات Registration Form Section
   ========================================================================= */
:root {
    --brand-dark-brown: #5F483C;
    --brand-bronze: #A19574;
    --brand-cream: #F1EEDB;
}

.register-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow-x: hidden; 
}

.reg-bg-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.reg-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    z-index: 2;
}

.reg-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    padding: 40px 20px;
}

/* الصندوق الزجاجي */
.reg-glass-box {
    position: relative; 
    width: 100%;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.reg-title {
    color: #ffffff;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    text-align: center;
    margin: 0 0 40px 0;
}

/* =========================================================================
   حقول الإدخال الزجاجية
   ========================================================================= */
.reg-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reg-row {
    display: flex;
    gap: 15px;
}

.reg-row .reg-group {
    flex: 1;
}

.reg-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(161, 149, 116, 0.5); 
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 16px;
    color: #ffffff; 
    outline: none;
    transition: all 0.3s ease;
}

.reg-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.reg-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--brand-bronze); 
    box-shadow: 0 0 15px rgba(161, 149, 116, 0.3);
}

.reg-textarea {
    resize: vertical;
    min-height: 120px;
}

/* =========================================================================
   تنسيقات مكتبة الأعلام (تتمدد لجوه ومقروءة جداً)
   ========================================================================= */
.phone-group-glass { width: 100%; }
.iti { width: 100%; display: block; }

.iti__selected-flag {
    border-radius: 12px 0 0 12px;
    padding: 0 8px !important; 
    background: transparent !important;
}

.iti--allow-dropdown input, 
.iti--allow-dropdown input[type=text], 
.iti--allow-dropdown input[type=tel] {
    padding-left: 75px !important; 
}

.iti__selected-dial-code { 
    color: #fff; 
    margin-left: 4px !important; 
    font-size: 14px; 
}

/* القائمة المنسدلة: متثبتة يمين وتتمدد يساراً (للداخل) */
.iti__country-list {
    width: max-content !important; 
    min-width: 100% !important; 
    max-width: 350px !important; 
    
    right: 0 !important; 
    left: auto !important; 
    
    margin-top: 5px !important; 
    z-index: 999999 !important; 
    background: rgba(35, 47, 38, 0.98) !important; 
    border: 1px solid var(--brand-bronze) !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6) !important;
    
    white-space: normal; 
    direction: ltr; 
    text-align: left; 
    overflow-x: hidden !important; 
    padding-right: 5px !important; 
}

.iti__country-list .iti__country-name, 
.iti__country-list .iti__dial-code {
    color: #ffffff !important;
    font-size: 14px; 
}

.iti__country:hover, .iti__country.iti__highlight {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

/* =========================================================================
   زر الإرسال
   ========================================================================= */
.reg-submit-btn {
    width: 100%;
    background: var(--brand-dark-brown);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    padding: 18px;
    border: 1px solid var(--brand-dark-brown);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.reg-submit-btn:hover {
    background: var(--brand-bronze); 
    border-color: var(--brand-bronze);
    color: #ffffff;
    transform: translateY(-4px); 
    box-shadow: 0 10px 20px rgba(161, 149, 116, 0.4); 
}

/* Responsive للموبايل */
@media (max-width: 768px) {
    .reg-container { justify-content: center; padding: 60px 20px; }
    .reg-row { flex-direction: column; }
    .reg-glass-box { padding: 40px 25px; background: rgba(255, 255, 255, 0.15); }
    .iti__country-list { max-width: 90vw !important; }
}
/*end  section 6 in page Alpha  */


