  :root {
  --header-bg: #ffffff;
        --header-link: #334155;
        --header-link-hover: #2563eb;
        --btn-primary-bg: #2563eb;
        --btn-secondary-text: #ffffff;
        --btn-secondary-bg: #2563eb;
        --btn-secondary-hover: #1d4ed8;
        --btn-primary-hover: #1d4ed8;
        --metallic-copper: #b86b3b;
  /* =====================================================
     Brand Identity
  ====================================================== */

  --primary: #113553;
  --primary-light: #285977;
  --primary-dark: #071425;

  --secondary: #B57251;
  --secondary-light: #C98A67;
  --secondary-dark: #87543B;

  --gradient-primary: linear-gradient(
      135deg,
      #113553 0%,
      #285977 55%,
      #B57251 100%
  );



  /* =====================================================
     Body
  ====================================================== */

  --body-bg: #ffffff;
  --body-color: #2F3B46;



  /* =====================================================
     Header
  ====================================================== */

  --header-bg: #ffffff;
  --header-text: #113553;
  --header-link: #113553;
  --header-link-hover: #B57251;
  --header-border: #E6EAEE;
  --header-shadow: rgba(17,53,83,.08);



  /* =====================================================
     Hero Section
  ====================================================== */

  --hero-bg: #F7F9FB;
  --hero-title: #113553;
  --hero-text: #4B5563;
  --hero-overlay: rgba(7,20,37,.55);



  /* =====================================================
     Sections
  ====================================================== */

  --section-bg: #ffffff;
  --section-alt-bg: #F7F9FB;

  --section-title: #113553;
  --section-text: #4B5563;



  /* =====================================================
     Cards
  ====================================================== */

  --card-bg: #ffffff;
  --card-title: #113553;
  --card-text: #5F6C78;
  --card-border: #E6EAEE;
  --card-shadow: rgba(17,53,83,.08);



  /* =====================================================
     Buttons
  ====================================================== */

  --btn-primary-bg: #113553;
  --btn-primary-hover: #285977;
  --btn-primary-text: #ffffff;

  --btn-secondary-bg: #B57251;
  --btn-secondary-hover: #87543B;
  --btn-secondary-text: #ffffff;



  /* =====================================================
     Links
  ====================================================== */

  --link-color: #113553;
  --link-hover: #B57251;



  /* =====================================================
     Forms
  ====================================================== */

  --input-bg: #ffffff;
  --input-text: #2F3B46;
  --input-border: #D8DEE5;
  --input-focus: #113553;
  --input-placeholder: #9AA4AF;



  /* =====================================================
     Footer
  ====================================================== */

  --footer-bg: #071425;
  --footer-title: #ffffff;
  --footer-text: #D7DEE5;
  --footer-link: #ffffff;
  --footer-link-hover: #B57251;
  --footer-border: rgba(255,255,255,.08);



  /* =====================================================
     Text
  ====================================================== */

  --heading-color: #113553;
  --text-color: #2F3B46;
  --text-light: #737B86;
  --text-white: #ffffff;



  /* =====================================================
     Borders
  ====================================================== */

  --border-color: #E6EAEE;



  /* =====================================================
     Status Colors
  ====================================================== */

  --success: #2E8B57;
  --warning: #E8A317;
  --danger: #C0392B;
  --info: #285977;



  /* =====================================================
     Shadows
  ====================================================== */

  --shadow-sm: 0 2px 8px rgba(17,53,83,.08);
  --shadow-md: 0 8px 20px rgba(17,53,83,.12);
  --shadow-lg: 0 15px 35px rgba(17,53,83,.18);

}
  body{

    margin: 0;
    padding: 0;
    /* background: var(--btn-secondary-hover); */
  }
  
 
 
  .site-header {
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            height: 110px;
background: color-mix(in srgb, var(--header-bg) 80%, transparent);            /* backdrop-filter: blur(10px); */
            box-shadow: 0 4px 20px rgba(27, 40, 56, 0.04);
            z-index: 1000;
            display: flex;
            align-items: center;
        }

        .header-container {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            padding: 0 20px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            text-decoration: none;
            height: 180px;
        }

        .logo-area img {
            height: 100%;
            width: 300px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .logo-area:hover img {
            transform: scale(1.03);
        }

        /* محاذاة الروابط وزر اطلب الآن معاً */
        /* محاذاة الروابط وزر اطلب الآن معاً */
        .nav-container {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--header-link);
     
            font-size: 14px;
            position: relative;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background-color:#0b59c1;
            transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .nav-links a:hover {
            color: var(--header-link-hover);
        }

        .nav-links a:hover::after {
            width: 100%;
        }
        /* ستايل زر اطلب الآن بجانب أزرار التنقل */
        .header-btn {
            display: inline-block;
            background-color: var(--btn-primary-bg);
            color: var(--btn-secondary-text);
            border: 2px solid var(--btn-secondary-bg);
            text-decoration: none;

            font-size: 13px;
            padding: 6px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .header-btn:hover {
            background-color: var(--btn-secondary-hover);
            border-color: var(--btn-primary-hover);
            color: #ffffff;
            box-shadow: 0 5px 15px rgba(184, 107, 59, 0.2);
        }
.navbar-toggler{



display: none;
background: none;
cursor: pointer;
transition: 0.3s;
padding:4px 10px;
border:2px solid var(--metallic-copper);

} .navbar-toggler .toggler-icon{
background: #0b59c1;
width: 30px;
margin: 5px 0;
display: block;
height: 3px;
}.navbar-toggler.active .toggler-icon:nth-child(1){

transform: rotate(45deg) translate(5px, 5px);

}
.navbar-toggler.active .toggler-icon:nth-child(2){

opacity: 0;

}
.navbar-toggler.active .toggler-icon:nth-child(3){

transform: rotate(-45deg) translate(5px, -5px);

}.navnar-collaps{

  display: none;
}
.navnar-collaps{

  display: none;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding:20px;
  position: absolute;
top: 100%;
left: 0;
right: 0 ;
  border-radius:0 0 8px 8px;
  z-index: 999;
}.navnar-collaps.show{

  display: block;
  animation:slideDown 0.3s ease;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}.links-mobile {

  list-style: none;
  background-color:var(--header-bg);
  padding: 10px;

}
.links-mobile li {
  margin: 10px 0;
}.links-mobile a {
  text-decoration: none;
  color: var(--header-text);
 
  font-size: 14px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}.links-mobile a:hover {
  color: var(--header-link-hover);
}
.header-hero{
position: relative;


}
.hero {
   
   min-height:100vh;
    /* overflow: hidden; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
   
    /* margin-top: 35px; */
}

/* الفيديو */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}


/* طبقة شفافة فوق الفيديو */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}


/* النص فوق الفيديو */
.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    margin-left: 350px;
}
.hero-content h1{

  margin-left: 20px;
  font-size: 20px;
  /* position: absolute; */
  /* bottom: 90%;
  right: 5%; */
}
.hero-content .ss{

  font-size: 15px;
  line-height: 1.5;
  text-align: justify;

  width: 60ch;
  margin-top: 20px;
 

}
.btn-hero{

  /* color:red ; */
  z-index: 4;
  /* margin: ; */
 
}
.btn-hero .btn-whatsapp{

  margin: 10px;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  box-shadow: 4px 4px var(--shadow-lg);
  border: var(--btn-secondary-bg) 2px solid;
  padding: 10px;
  font-size: 17px;
  border-radius: 5px;
   transition: 0.3s;
}


.btn-hero .btn-whatsapp a{

    text-decoration: none;
    color: white;
}
.btn-hero .btn-call{
margin: 10px;
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  box-shadow: 4px 4px var(--shadow-lg);
  border: var(--btn-secondary-bg) 2px solid;
  padding: 10px;
  font-size: 17px;
  border-radius: 5px;
   transition: 0.3s;

}
.btn-hero .btn-call a{

    text-decoration: none;
    color: white;
}

.btn-hero .btn-call:hover{

  background: var(--btn-secondary-hover);
  color: var(--btn-secondary-text);
}
.btn-hero .btn-whatsapp:hover{
 background: var(--btn-secondary-hover);
  color: var(--btn-secondary-text);

}.canopy-feauters{
padding: 5px;
  /* background: var(--btn-secondary-hover); */
 
}
.canopy-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    margin-top:40px;
    background: var(--btn-secondary-hover);
}
.canopy-image img{
    width:100%;
    border-radius:12px;
    object-fit:cover;
    margin-bottom: 15px;
    margin-right: 300px;
    margin-top: 10px;
}

.canopy-text{
margin: 10px;
    font-size:1.1rem;
    line-height:2;
    text-align:justify;
}

.canopy-author{

    max-width:700px;
    margin:50px auto 0;
    text-align:center;
    padding:30px;
    border-radius:15px;
    background: var(--btn-secondary-hover);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-bottom: 15px;

}

.canopy-author img{

    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;

}.whay-dammam{

    max-width:1700px;
    margin:auto;
    padding:80px 20px;
        background-color: var(--btn-secondary-hover);


}

.whay-title{

    text-align:center;
    margin-bottom:50px;


}


.whay-content{

    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    align-items:center;
    background-color: var(--btn-secondary-bg);
    padding: 30px;

}

.whay-image img{

    width:100%;
    border-radius:15px;

}

.whay-text{

    font-size:18px;
    line-height:2;
    text-align:justify;

}

.whay-call{

    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:20px;
}

/* --- تنسيق قسم التغطية الجغرافية ومظلات الدمام --- */

/* الحاوية الرئيسية للقسم بالكامل */
.coverage {
    background-color: #000000; /* الخلفية سوداء تماماً لتطابق خلفية الصور */
    color: #ffffff; /* النص أبيض بالكامل */
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

/* العنوان الرئيسي العلوي للقسم */
.coverage > h2 {
    text-align: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
    
}

/* خط زخرفي تحت العنوان الرئيسي */
.coverage > h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #2196F3; /* لون أزرق متناسق مع السهم */
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

/* الحاوية التي تجمع الخريطة والنصوص جنبًا إلى جنب */
.coverage-content {
    display: flex; /* لترتيب الخريطة والنص متجاورين */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
    direction: rtl; /* لتبدأ الخريطة في جهة والنص في جهة متناسقة */
}

/* عمود الخريطة كما هو في الـ HTML الخاص بك */
.coverage-map {
    flex: 1;
    width: 45%;
    position: relative;
    padding-left: 40px;
}

/* تنسيق صورة الخريطة الأولى وتأثير دمجها */
.coverage-map img {
    width: 100%;
    height: auto;
    display: block;
    /* لجعل أطراف الخريطة تتداخل مع الخلفية السوداء والنصوص بنعومة */
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    opacity: 0.9;
}

/* عمود النصوص */
.coverage-text {
    flex: 1.2;
    width: 55%;
    text-align: right;
}

/* العناوين الداخلية وسط النصوص */
.coverage-text h2 {
    font-size: 2rem;
    color: #2196F3;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.4;

}

.coverage-text h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 25px;
    border-right: 5px solid #2196F3;
    padding-right: 20px;

}

/* الفقرات النصية */
.coverage-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #e0e0e0;
    margin-bottom: 25px;
}

/* تمييز الكلمات القوية */
.coverage-text p strong {
    color: #ffffff;

    /* background: linear-gradient(transparent 65%, rgba(33, 150, 243, 0.15) 35%); */
    /* padding: 0 5px; */
    /* border-radius: 3px; */
}

/* تنسيق الصورة الثانية مباشرة في أسفل القسم (صورة المظلة) */
.coverage > img {
    display: block;
    width: 100%;
    max-width: 750px; /* حجم مناسب لعرض تفاصيل المظلة */
    margin: 80px auto 0 auto;
    border-radius: 12px; /* حواف دائرية ناعمة تليق بصورة المظلة */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(33, 150, 243, 0.2); /* ظل فخم يعزلها عن الخلفية السوداء */
    border: 1px solid rgba(255, 255, 255, 0.1); /* إطار رقيق جداً يحدد معالمها */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* تأثير عند تمرير الماوس فوق صورة المظلة */
.coverage > img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(33, 150, 243, 0.4);
}

/* --- دعم شاشات الهواتف والأجهزة اللوحية (Responsive) --- */


/* استيراد خط تجاري مريح وعصري */

.services-section {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    background-color: #fdfbf7; /* خلفية بيج ناعمة جداً ومريحة للعين */
    color: #2c3e35; /* لون نص بترولي داكن ومريح للقراءة */
}

/* عنوان القسم الرئيسي */
.services-section h2 {
    text-align: center;
    font-size: 1.2rem;

    color: #1a3026; /* بترولي عميق */
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

/* خط ديكوري أسفل العنوان الرئيسي باللون الذهبي الهادئ */
.services-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c5a880, #e4d5b7);
    border-radius: 2px;
}

/* صف الخدمة - الهيكل المرن */
.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

/* التبديل التلقائي للصفوف التي تحتوي على كلاس reverse */
.service-row.reverse {
    flex-direction: row-reverse;
}

/* قسم المحتوى النصي */
.service-content {
    flex: 1;
}

/* روابط العناوين الداخلية للخدمات */
.service-content a {
    font-size: 1.5rem;
    color: #1a3026;
    text-decoration: none;

    display: inline-block;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-content a:hover {
    color: #c5a880; /* تأثير ذهبي عند التحويم */
}

/* تنسيق الفقرات النصية */
.service-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5f54; /* لون رمادي بترولي ناعم يمنع إجهاد العين */
    margin-bottom: 15px;
    text-align: justify;
}

/* تمييز الكلمات الدلالية والقوية */
.service-content strong {
    color: #1a3026;
  
    /* background: linear-gradient(to top, rgba(197, 168, 128, 0.15) 40%, transparent 40%);
    padding: 0 4px; */
}

/* قسم الصورة وعاء العرض */
.service-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* إزالة الهوامش الافتراضية للوسوم المحيطة بالصور */
.service-image p {
    margin: 0;
    width: 100%;
}

/* تأثيرات واحترافية الصورة الحاضنة */
.service-image img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 16px; /* زوايا دائرية ناعمة */
    box-shadow: 0 15px 35px rgba(26, 48, 38, 0.08); /* ظل ناعم للغاية */
    border: 1px solid rgba(197, 168, 128, 0.2); /* إطار ذهبي شفاف خفيف جداً */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* تأثير تفاعلي راقٍ عند تحويم الماوس فوق الصورة */
.service-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 48, 38, 0.12);
}

/* تأثير حركة ظهور العناصر */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* استيراد الخط والتنسيق الأساسي للقسم */

.hangars-section {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    max-width: 1140px;
    margin: 50px auto;
    padding: 0 20px;
    background-color: #fdfbf7; /* خلفية بيج ناعمة ومريحة للعين */
    color: #2c3e35;
}

/* --- الجزء الأول: الهناجر (تخطيط مرن متجاوب) --- */
.hangars-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 48, 38, 0.04);
    border: 1px solid rgba(197, 168, 128, 0.1);
}

.hangars-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hangars-image img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 12px 25px rgba(26, 48, 38, 0.08);
    transition: transform 0.3s ease;
}

.hangars-image img:hover {
    transform: scale(1.02);
}

.hangars-text {
    flex: 1.2;
}

.hangars-text h2 {
    font-size: 1.8rem;

    color: #1a3026; /* بترولي داكن */
    margin-top: 0;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* خط ديكوري صغير تحت عنوان الهناجر */
.hangars-text h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #c5a880; /* ذهبي هادئ */
    margin-top: 8px;
    border-radius: 2px;
}

.hangars-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5f54;
    text-align: justify;
    margin: 0;
}

/* --- الجزء الثاني: المجالس وبيوت الشعر (بطاقة مميزة) --- */
.majlis-section {
    background: linear-gradient(145deg, #ffffff, #f9f6f0);
    padding: 35px;
    border-radius: 20px;
    border-right: 5px solid #c5a880; /* حافة ذهبية تبرز القسم */
    box-shadow: 0 10px 30px rgba(26, 48, 38, 0.04);
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    border-left: 1px solid rgba(197, 168, 128, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.majlis-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(26, 48, 38, 0.08);
}

.majlis-section h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.majlis-section h3 a {
    font-size: 1.6rem;
    color: #1a3026;
    text-decoration: none;
    transition: color 0.3s ease;
}

.majlis-section h3 a:hover {
    color: #c5a880;
}

.majlis-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5f54;
    text-align: justify;
    margin: 0;
}

/* --- التنسيقات المشتركة للنصوص القوية والروابط الداخلية --- */
.hangars-section strong {
    color: #1a3026;

    /* background: linear-gradient(to top, rgba(197, 168, 128, 0.15) 35%, transparent 35%);
    padding: 0 3px; */
}

.majlis-section p a {
    color: #c5a880;
    text-decoration: none;

    border-bottom: 1px dashed rgba(197, 168, 128, 0.5);
    transition: all 0.3s ease;
}

.majlis-section p a:hover {
    color: #1a3026;
    border-bottom-color: #1a3026;
}

/* استيراد خط تجاري مريح وعصري */

.gallery-section {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    background-color: #fdfbf7; /* خلفية بيج ناعمة ومريحة للعين */
    color: #2c3e35;
    text-align: center;
}

/* عنوان قسم معرض الأعمال */
.gallery-section h2 {
    font-size: 2.2rem;

    color: #1a3026; /* بترولي عميق */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

/* خط ديكوري أسفل العنوان الرئيسي باللون الذهبي الهادئ */
.gallery-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c5a880, #e4d5b7);
    border-radius: 2px;
}

/* المقدمة النصية للمعرض */
.gallery-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5f54; /* لون رمادي بترولي ناعم يمنع إجهاد العين */
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
}

/* تمييز الكلمات الدلالية */
.gallery-section strong {
    color: #1a3026;

    /* background: linear-gradient(to top, rgba(197, 168, 128, 0.15) 35%, transparent 35%);
    padding: 0 3px; */
}

/* --- شبكة عرض الصور الافتراضية (للكمبيوتر والشاشات الكبيرة) --- */
.gallery-grid {
    display: grid;
    /* تقسيم الشاشة لعمودين متساويين تماماً (صورتين في كل سطر) */
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; /* مسافة مريحة وفخمة بين الصور على الكمبيوتر */
    padding: 10px 0;
}

/* تنسيق وتأثيرات الصور في المعرض */
.gallery-grid img {
    width: 100%;
    height: auto; /* ارتفاع أعمق ومناسب لعرض صورتين في السطر بمظهر فخم */
    object-fit: cover;
    border-radius: 16px; /* زوايا دائرية ناعمة وسلسة */
    box-shadow: 0 10px 25px rgba(26, 48, 38, 0.05); /* ظل خفيف مريح للعين */
    border: 1px solid rgba(197, 168, 128, 0.15); /* إطار ذهبي شفاف خفيف */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s ease;
    cursor: pointer;
}

/* تأثير فخم وتفاعلي عند تحويم الماوس على الصورة */
.gallery-grid img:hover {
   
    box-shadow: 0 20px 40px rgba(26, 48, 38, 0.12);
    border-color: rgba(197, 168, 128, 0.6); /* إبراز الإطار الذهبي */
}



/* استيراد خط تجاري مريح وعصري */

.articles-section {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    background-color: #fdfbf7; /* خلفية بيج ناعمة ومريحة للعين */
    color: #2c3e35;
}

/* عنوان قسم المقالات */
.articles-section h2 {
    text-align: center;
    font-size: 2.2rem;

    color: #1a3026; /* بترولي عميق */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

/* خط ديكوري أسفل العنوان الرئيسي باللون الذهبي الهادئ */
.articles-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #c5a880, #e4d5b7);
    border-radius: 2px;
}

/* المقدمة النصية للقسم */
.articles-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5f54; /* لون رمادي بترولي ناعم يمنع إجهاد العين */
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: justify;
}

/* تمييز الكلمات الدلالية */
.articles-section strong {
    color: #1a3026;

    /* background: linear-gradient(to top, rgba(197, 168, 128, 0.15) 35%, transparent 35%);
    padding: 0 3px; */
}

/* --- شبكة المقالات التفاعلية --- */
.articles-grid {
    display: grid;
    /* التوزيع الافتراضي: 3 مقالات في السطر تلقائياً حسب عرض الشاشة */
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    padding: 10px 0;
}

/* --- تصميم بطاقة المقال الفاخرة --- */
.article-card {
    background-color: #ffffff; /* بطاقة بيضاء ناصعة لتبرز عن الخلفية البيج */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 48, 38, 0.04); /* ظل خفيف وناعم جداً */
    border: 1px solid rgba(197, 168, 128, 0.1); /* حافة ذهبية خفيفة الشفافية */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

/* تأثير التحويم فوق البطاقة */
.article-card:hover {
   
    box-shadow: 0 20px 40px rgba(26, 48, 38, 0.09);
}

/* صورة المقال داخل البطاقة */
.article-card img {
    width: 370px;
    height: auto;
    object-fit: cover;
    border-bottom: 2px solid rgba(197, 168, 128, 0.05);
    transition: transform 0.5s ease;
}

/* تكبير خفيف ومحكم للصورة عند تحويم الماوس فوق البطاقة */
.article-card:hover img {
    /* transform: scale(1.03); */
}

/* العناوين والفقرات الداخلية للبطاقة */
.article-card h3 {
    font-size: 1.25rem;

    color: #1a3026; /* بترولي عميق */
    line-height: 1.5;
    margin: 20px 20px 10px 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* حصر العنوان في سطرين كحد أقصى لمنع تشوه التصميم */
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.article-card:hover h3 {
    color: #c5a880; /* تحول العنوان للون الذهبي عند التحويم */
}

/* الوصف القصير للمقال */
.article-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #61756a; /* لون نص أخف للوصف لمنع التشتت */
    margin: 0 20px 25px 20px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* حصر الوصف في 3 أسطر كحد أقصى للحفاظ على تناسق الارتفاع */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* تنسيق قسم الأسئلة الشائعة */
.faq-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl; /* يدعم القراءة من اليمين لليسار */
}

.faq-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

.faq-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

/* تنسيق عنوان السؤال (الزر) */
.faq-section h3 {
    background-color: #f8f9fa;
    color: #2b2b2b;
    padding: 15px 20px;
    margin: 0 0 10px 0;
    cursor: pointer;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-size: 1.1rem;
    -webkit-user-select: none;
    user-select: none;
}

/* تأثير عند تمرير الماوس فوق السؤال */
.faq-section h3:hover {
    background-color: #e9ecef;
}

/* إضافة سهم في جهة اليسار لمعرفة حالة السؤال */
.faq-section h3::after {
    content: '▼';
    font-size: 0.8rem;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #888;
}

/* تدوير السهم وتغيير الخلفية عند فتح السؤال */
.faq-section h3.active {
    background-color: #e8f4fd;
    border-color: #bde0fe;
    color: #007bff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
}

.faq-section h3.active::after {
    transform: translateY(-50%) rotate(180deg);
    color: #007bff;
}

/* تنسيق نص الإجابة المخفي بشكل افتراضي */
.faq-section h3 + p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-top: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    margin: 0 0 10px 0;
    padding: 0 20px; /* الـ padding الرأسي صفر حتى يفتح بالـ JS */
    color: #4a4a4a;
    line-height: 1.6;
}

/* تنسيق زر الاتصال في الأسفل */
.faq-section a[href^="tel:"] {
    display: block;
    text-align: center;
    margin-top: 30px;
    padding: 12px 25px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;

    transition: background-color 0.2s ease;
}

.faq-section a[href^="tel:"]:hover {
    background-color: #218838;
}
/* --- تنسيق قسم الاتصال العام --- */
.contact-cta-section {
    max-width: 850px;
    margin: 40px auto;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl; /* دعم القراءة من اليمين إلى اليسار */
    text-align: center;
}

/* --- ترويسة القسم --- */
.contact-cta-header h2 {
    color: #1a252f;
    font-size: 1.8rem;
    margin-bottom: 15px;

    line-height: 1.4;
}

.contact-cta-header p {
    color: #5a626a;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* --- محتوى القسم --- */
.contact-cta-content > p {
    color: #495057;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-cta-content h3 {
    color: #007bff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

/* خط ديكور تحت العنوان الداخلي */
.contact-cta-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #007bff;
    border-radius: 2px;
}

/* --- أزرار وطرق الاتصال --- */
.contact-methods {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.contact-methods li {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.contact-methods a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 10px;
    text-decoration: none;

    font-size: 0.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* تخصيص زر الاتصال الهاتفي */
.contact-phone a {
    background-color: #007bff;
    color: #ffffff;
    border: 1px solid #007bff;
}

.contact-phone a:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

/* تخصيص زر الواتساب */
.contact-whatsapp a {
    background-color: #25d366;
    color: #ffffff;
    border: 1px solid #25d366;
}

.contact-whatsapp a:hover {
    background-color: #20ba5a;
    border-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* نصوص التوضيح بجانب الأزرار (إذا رغبت بوضعها فوق الزر بدلاً من داخله) */
.contact-methods strong {
    display: block;
    margin-bottom: 8px;
    color: #343a40;
    font-size: 0.95rem;
}

/* --- تذييل القسم --- */
.contact-cta-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #dee2e6;
}

.contact-cta-footer p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

/* الكلمات العريضة المظللة */
.contact-cta-section strong {
    color: #1a252f;
}


/* --- تنسيق تذييل الموقع (Footer) --- */
.site-footer {
    background-color: #1a252f; /* لون داكن فخم يعطي هيبة للموقع */
    color: #ecf0f1; /* لون نص فاتح ومريح للعين */
    padding: 25px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 3px solid #007bff; /* خط علوي ملون بلون الهوية للمسة جمالية */
    direction: rtl; /* دعم القراءة من اليمين إلى اليسار */
}

/* حاوية المحتوى */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* تنسيق نصوص الحقوق والمطور */
.site-footer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #adb5bd; /* لون رمادي ناعم للنصوص الثانوية */
}

/* تمييز اسم المؤسسة */
.site-footer .copyright strong {
    color: #ffffff;

}

/* تنسيق رابط المطور */
.developer-credit a {
    color: #007bff; /* لون الرابط الأساسي */
    text-decoration: none;
  
    position: relative;
    transition: color 0.3s ease;
}

/* تأثير عند تمرير الماوس فوق رابط المطور */
.developer-credit a:hover {
    color: #3395ff;
}

/* خط ديكور يظهر بسلاسة أسفل اسم المطور عند التمرير */
.developer-credit a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    right: 0;
    background-color: #3395ff;
    transition: width 0.3s ease;
}

.developer-credit a:hover::after {
    width: 100%;
}



/* 
تناسب الشاشات 
*/
/* ==========================================
   1. الشاشات المتوسطة والأجهزة اللوحية (Max 991px)
   ========================================== */
@media (max-width: 991.98px) {

  /* --- Navigation & Header --- */
  .site-header {
    height: 80px;
  }

  .header-container {
    padding: 0 15px;
  }

  .logo-area {
    height: 90px;
  }

  .logo-area img {
    width: 180px;
    max-width: 100%;
    height: auto;
  }

  .nav-container {
    display: none;
  }

  .navbar-toggler {
    display: block;
  }

  .navnar-collaps {
    display: none;
  }

  .navnar-collaps.show {
    display: block;
  }

  .navnar-collaps .nav-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .navnar-collaps .nav-links li {
    width: 100%;
  }

  .navnar-collaps .nav-links a {
    display: block;
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
  }

  .navnar-collaps .header-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }

  /* --- Hero Section --- */
  .hero {
    min-height: 100vh;
    padding: 90px 20px 40px;
    justify-content: center;
    align-items: center;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-content {
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    text-align: center;
  }

  .hero-content h1 {
    margin: 0 0 15px;
    font-size: 2rem;
    line-height: 1.4;
  }

  .hero-content .ss {
    width: 100%;
    font-size: 1rem;
    line-height: 1.9;
    text-align: center;
    margin: 0 auto 25px;
  }

  .btn-hero {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .btn-hero .btn-call,
  .btn-hero .btn-whatsapp {
    width: 100%;
    max-width: 320px;
    margin: 0;
    padding: 15px;
    font-size: 1rem;
    text-align: center;
  }

  /* --- Canopy & Why Us Sections --- */
  .canopy-content,
  .whay-content {
    grid-template-columns: 1fr;
  }

  .canopy-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 15px;
    margin-right: 0; /* تم إزالة الهامش الثابت لمنع خروج الصورة عن الشاشة */
  }

  .whay-image {
    order: -1;
  }

  .whay-call {
    flex-direction: column;
    align-items: center;
  }

  .whay-title h2 {
    margin-top: 15px;
    font-size: 1.18rem;
  }

  /* --- Coverage Section --- */
  .coverage-content {
    flex-direction: column;
    align-items: center;
  }

  .coverage-map,
  .coverage-text {
    width: 100%;
    padding: 0;
  }

  .coverage-map {
    margin-bottom: 40px;
    max-width: 500px;
  }

  .coverage-map img {
    width: 100%;
    height: auto;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
  }

  .coverage-text {
    padding: 0 10px;
    text-align: center;
  }

  .coverage-text h2 {
    font-size: 1.7rem;
  }

  .coverage-text h3 {
    border-right: none;
    border-bottom: 3px solid #2196F3;
    padding-right: 0;
    padding-bottom: 10px;
    display: inline-block;
  }

  .coverage > h2 {
    font-size: 2rem;
  }

  .coverage > img {
    max-width: 95%;
    height: auto;
    margin-top: 50px;
  }

  /* --- Services Section --- */
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }

  .services-section h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .service-image img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
  }
}

/* ==========================================
   2. الهواتف الذكية والعرض المتوسط (Max 768px)
   ========================================== */
@media (max-width: 768px) {

  /* --- Hangars Section --- */
  .hangars-content {
    flex-direction: column;
    padding: 20px;
    gap: 25px;
  }

  .hangars-image,
  .hangars-text {
    width: 100%;
  }

  .hangars-image img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
  }

  .hangars-text h2 {
    font-size: 1.6rem;
  }

  /* --- Majlis & Footer --- */
  .majlis-section {
    padding: 25px;
  }

  .majlis-section h3 a {
    font-size: 1.4rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* --- Articles Section --- */
  .articles-section h2 {
    font-size: 1.8rem;
  }

  .articles-section p {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%; /* تم تصحيحها من 400px إلى 100% لتناسب الشاشات الأصغر */
  }

  .article-card img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
  }

  /* --- Gallery Section --- */
  .gallery-section {
    margin: 40px auto;
    padding: 0 15px;
  }

  .gallery-section h2 {
    font-size: 1.8rem;
  }

  .gallery-section p {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid img {
    width: 100%; /* تم التعديل لتناسب الشاشة ديناميكياً */
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 0;
    margin-right: 0;
  }
}

/* ==========================================
   3. الشاشات الصغيرة جداً والهواتف (Max 576px)
   ========================================== */
@media (max-width: 576px) {

  /* --- Header Adjustments --- */
  .site-header {
    height: 70px;
  }

  .header-container {
    padding: 0 12px;
  }

  .logo-area {
    height: 75px;
  }

  .logo-area img {
    width: 145px;
  }

  .navbar-toggler {
    padding: 5px 8px;
  }

  .navbar-toggler .toggler-icon {
    width: 25px;
    height: 2px;
  }

  .navnar-collaps {
    padding: 15px;
  }

  .navnar-collaps .nav-links a {
    font-size: 15px;
  }

  /* --- Hero Adjustments --- */
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content .ss {
    font-size: 0.95rem;
  }

  .btn-hero .btn-call,
  .btn-hero .btn-whatsapp {
    padding: 14px;
    font-size: 0.95rem;
  }

  /* --- Contact CTA --- */
  .contact-cta-section {
    padding: 30px 15px;
    margin: 20px 10px;
  }

  .contact-cta-header h2 {
    font-size: 1.5rem;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .contact-methods li {
    width: 100%;
  }
}

/* ==========================================
   تنسيق الشاشات الصغرى جداً (أقل من 320px إلى 576px)
   ========================================== */
@media (max-width: 576px) {

  /* 1. حماية كاملة للصفحة من الخروج عن حدود الشاشة */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
  }

  * {
    box-sizing: border-box !important;
  }

  /* 2. ضبط الهيدر واللوجو */
  .site-header {
    height: auto !important;
    padding: 10px 5px !important;
  }

  .header-container {
    padding: 0 8px !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo-area {
    height: auto !important;
    max-width: 60% !important;
  }

  .logo-area img {
    width: 100% !important;
    max-width: 120px !important; /* تصغير اللوجو لكي لا يختفي */
    height: auto !important;
  }

  /* 3. الهيرو والنصوص (Hero Section) */
  .hero-content h1 {
    font-size: 1.2rem !important; /* تقليل حجم الخط يناسب 260px */
    line-height: 1.3 !important;
  }

  .hero-content .ss {
    font-size: 0.85rem !important;
    padding: 0 5px !important;
  }

  .btn-hero .btn-call,
  .btn-hero .btn-whatsapp {
    padding: 10px !important;
    font-size: 0.85rem !important;
    width: 100% !important;
  }

  /* 4. قسم الأسئلة الشائعة والأكورديون (FAQ / Accordion) */
  /* هذا هو الجزء الظاهر في صورتك وتم حل مشكلة الاقتصاص فيه */
  .faq-section, .accordion-container, .faq-item {
    width: 100% !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .accordion-button, 
  .faq-item button,
  .accordion-header {
    font-size: 0.85rem !important; /* تصغير خط الأسئلة لتظهر كاملة */
    padding: 10px 8px !important;
    white-space: normal !important; /* السماح للنص بالنزول للسطر الثاني */
    word-break: break-word !important;
    text-align: right !important;
  }

  /* 5. الأزرار العامة (مثل زر اتصل الآن) */
  .btn, button, .contact-btn, a.button {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 0.85rem !important;
    padding: 10px 5px !important;
    white-space: normal !important; /* لمنع خروج النص خارج الزر */
    box-sizing: border-box !important;
  }

  /* 6. الشبكات والصور (Grids & Images) */
  .articles-grid, 
  .gallery-grid, 
  .canopy-content, 
  .whay-content, 
  .coverage-content {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    padding: 0 5px !important;
  }.canopy-text{

width: 35ch;
  }.canopy-image img{

   width: 320px !important;
   margin-right: 15px;

  }

 

.service-media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

   /* .services-slider { /* ضع اسم الكلاس الخاص بالحاوية هنا */
    /* display: grid;
    grid-template-columns: 1fr !important; /* بطاقة واحدة فقط في السطر */
    /* gap: 20px;
    width: 100% !important; */ 
  /* } */
  .gallery-grid img, 
  .coverage-map img, 
  .service-image img,
  .service-media img,
  .article-card img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
.articles-grid img{
 width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-right: 0 !important;
    margin-left: 0 !important;

}
  /* 7. الفوتر (Footer) */
  .footer-content, footer {
    padding: 15px 8px !important;
    text-align: center !important;
    width: 100% !important;
  }

  .footer-content p, 
  footer p, 
  footer div {
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
  }
}


/* حاوية السلايدر الخارجية */
.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* حاوية العناصر الأفقية */
.services-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory; /* لجعل التمرير يتوقف بدقة عند كل بطاقة */
    gap: 0; /* إلغاء الفجوات للالتزام ببطاقة واحدة في الشاشة */
    padding: 10px 0;
    scrollbar-width: none; /* إخفاء شريط التمرير لأجهزة فايرفوكس */
}

/* إخفاء شريط التمرير لمتصفحات كروم وسفاري */
.services-slider::-webkit-scrollbar {
    display: none;
}

/* العنصر المحتوي للبطاقة (يتكيف ليأخذ 100% من عرض الشاشة) */
.service-item {
    flex: 0 0 100%; /* تجعل كل عنصر يغطي 100% من عرض الحاوية (بطاقة واحدة فقط) */
    max-width: 100%;
    scroll-snap-align: center; /* تثبيت البطاقة في منتصف الشاشة عند التمرير */
    box-sizing: border-box;
    padding: 0 10px; /* مسافة بسيطة من الأطراف */

}

/* تنسيق بطاقات الخدمات داخل السلايدر */
.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.service-media img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.service-body {
    padding: 15px;
}

/* تنسيق أزرار التنقل */
.slider-btn {
    position: absolute;
    top: 95%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 20px !important;
    height: 20px;
    border-radius: 10%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s ease;
    margin-bottom: 20px;
}

.slider-btn:hover {
    background: #2196F3;
}

.prev-btn {
    right: 10px; /* زر السابق لجهة اليمين ليدعم العربية RTL */
}

.next-btn {
    left: 10px; /* زر التالي لجهة اليسار ليدعم العربية RTL */
}

/* ff */


.prose-custom {
        font-size: 18px; line-height: 2.0; color: #334155;
    }
    .prose-custom > p, .prose-custom > section > p {
        max-width: 800px; margin: 0 0 28px 0; text-align: right;
        color: #475569;
    }
    .prose-custom h1, .prose-custom h2, .prose-custom h3, .prose-custom h4 {
        color: #0f172a;  line-height: 1.4;
    }
    .prose-custom h1 { font-size: 32px; margin-bottom: 24px; }
    .prose-custom h2 {
        font-size: 19px; margin-top: 56px; margin-bottom: 24px;
        padding-bottom: 12px; border-bottom: 1px solid #e2e8f0;
    }
    .prose-custom h3 {
        font-size: 17px; margin-top: 36px; margin-bottom: 16px; color: #1e293b;
    }
    .prose-custom ul, .prose-custom ol {
        font-size: 18px; line-height: 2; margin-bottom: 32px; padding-right: 28px;
        color: #475569;
    }
    .prose-custom li { margin-bottom: 12px; }
    .prose-custom strong {
        color: #0f172a; 
        /* background-color: rgba(37, 99, 235, 0.06);
        padding: 2px 6px; border-radius: 4px; */
    }
    .prose-custom a.link-style {
        color: #2563eb; text-decoration: none; ;
        border-bottom: 1px dashed #2563eb; transition: all 0.3s ease;
    }
    .prose-custom a.link-style:hover {
        color: #1d4ed8; border-bottom-style: solid;
        background-color: rgba(37, 99, 235, 0.05);
    }
    .prose-custom table {
        font-size: 16px; line-height: 1.8; width: 100%;
        border-collapse: collapse; margin-bottom: 32px;
    }
    .prose-custom th {
        background-color: #f8fafc;  color: #0f172a; text-align: right;
    }
    .prose-custom td, .prose-custom th {
        vertical-align: middle; padding: 16px; border-bottom: 1px solid #e2e8f0;
    }
    .prose-custom tr:hover td { background-color: #f8fafc; }

    @media(max-width: 768px) {
        .prose-custom { font-size: 16px; line-height: 1.9; }
        .prose-custom > p, .prose-custom > section > p {
            font-size: 16px; margin-bottom: 24px;
        }
        .prose-custom h1 { font-size: 19px; }
        .prose-custom h2 { font-size: 18px; margin-top: 40px; margin-bottom: 20px; }
        .prose-custom h3 { font-size: 17px; margin-top: 28px; margin-bottom: 16px; }
        .prose-custom ul, .prose-custom ol { font-size: 14px; padding-right: 20px; }
        .prose-custom td, .prose-custom th { padding: 12px; font-size: 14px; }
    }
     #contact h3{
color
:white;

     }
      #contact p{
        color:white;
      }
      
 .social-icons {
            position: fixed;
            left: 20px;
            top: 70%;
            transform: translateY(-50%);

            display: block;
            flex-direction: column;
            gap: 12px;

            z-index: 9999;
        }

        .social-icon {
            width: 48px;
            height: 48px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;
            background: #fff;

            color: #222;
            font-size: 21px;

            text-decoration: none;

            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);

            transition: all 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-5px) scale(1.08);
        }

        .phone {
            color: #16a34a;
        }

        .whatsapp {
            color: #25D366;
        }

        .tiktok {
            color: #000;
        }

        .instagram {
            color: #E4405F;
        }
 .my-6 img{

    height: auto;
}
 .bg-white img{

    height: auto;
 }   