    /* إعادة ضبط القيم الافتراضية */
    * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
      }
      html {
        scroll-behavior: smooth;
      }
      .cc {
        text-decoration: none;
        color: inherit;
      }
      /* تعريف الألوان */
      :root {
        --bg-color: #f6f5e8;
        --primary: #efbb40;
        --secondary:  #84643c;
        --accent: #626b59;
        --light: #31ba6e;
        --dark: #1e1e1e;
      }
      /* تنسيق الهيدر */
      header {
        background: var(--secondary);
        color: white;
        padding: 10px 20px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .container {
        width: 90%;
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .logo img {
        width: 150px;
        cursor: pointer;
      }
      /* ترجمة */
      
      /* القائمة الرئيسية */
      nav.desktop-menu ul {
        list-style: none;
        display: flex;
        gap: 20px;
      }
      nav.desktop-menu ul li a {
        text-decoration: none;
        font-size: 18px;
        color: #000;
        transition: color 0.3s ease;
      }
      nav.desktop-menu ul li a:hover {
        color: var(--primary);
      }
      /* القائمة المتجاوبة */
      .mobile-menu {
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: var(--bg-color);
        border-radius: 10px;
        padding: 10px;
        box-shadow: 2px 6px 15px rgba(0, 0, 0, 0.1);
        width: 200px;
        z-index: 10;
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        transform: translateY(-10px);
      }
      .mobile-menu.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
      }
      .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .mobile-menu ul li {
        margin: 10px 0;
      }
      .mobile-menu ul li a {
        text-decoration: none;
        color: #000;
        font-size: 18px;
        display: block;
        padding: 5px;
        transition: background 0.3s;
      }
      .mobile-menu ul li a:hover {
        background: var(--primary);
        color: #fff;
        border-radius: 5px;
      }
      /* زر القائمة (Menu Toggle) */
      .menu-toggle {
        font-size: 30px;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 20;
        background: none;
        border: none;
        outline: none;
        display: flex;
        flex-direction: column;
        gap: 5px;
        transition: transform 0.3s ease;
      }
      .menu-toggle.active {
        transform: rotate(90deg);
      }
      .menu-toggle span {
        display: block;
        width: 30px;
        height: 3px;
        background: #ffffff;
        transition: background 0.3s ease;
      }
      /* قسم السلايدر (Hero Section) */
      #hero {
        position: relative;
        height: 800px;
        background-color: var(--bg-color);
        overflow: hidden;
      }
      .slider {
        position: relative;
        width: 100%;
        height: 100%;
      }
      .slide {
        position: absolute;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        transition: all 0.5s ease;
        opacity: 0;
      }
      .slide.active {
        left: 0;
        opacity: 1;
      }
      .hero-content {
        max-width: 50%;
      }
      .hero-content h2 {
        font-size: 2.5em;
        margin-bottom: 20px;
      }
      .hero-content h2 span {
        color: var(--primary);
      }
      .hero-content p {
        font-size: 1.2em;
        color: var(--light);
        margin-bottom: 20px;
      }
      .order {
        display: flex;
        gap: 10px;
      }
      .order a {
        padding: 10px 20px;
        background-color: var(--secondary);
        color: #fff;
        border-radius: 30px;
        transition: all 0.3s ease;
      }
      .order a:hover {
        background-color: var(--primary);
        transform: scale(1.05);
      }
      .hero-image {
        max-width: 40%;
      }
      .hero-image img {
        width: 100%;
        border-radius: 10px;
      }
      /* نقاط السلايدر */
      .slider-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
      }
      .slider-dots .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: background 0.3s;
      }
      .slider-dots .dot.active {
        background: var(--primary);
      }
      /* قسم الأدوار والقيم */
      #roles-values {
        padding: 50px 0;
        text-align: center;
        background: #f8f8f8;
      }
      #roles-values h2 {
        font-size: 2em;
        margin-bottom: 20px;
        color: #000;
      }
      .roles-values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
      }
      .role-box {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      .role-box:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
      }
      .role-box i {
        font-size: 2.5em;
        color: var(--primary);
        margin-bottom: 10px;
      }
      .role-box h3 {
        font-size: 1.4em;
        margin-bottom: 10px;
        color: #333;
      }
      .role-box p {
        font-size: 1em;
        color: #666;
      }
      /* قسم التقييمات */
      #reviews {
        text-align: center;
        padding: 40px 0;
      }
      .review {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
        margin: 10px auto;
        width: 60%;
        box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
      }
      /* الفوتر */
      footer {
        background-color: var(--dark);
        color: #fff;
        text-align: center;
        padding: 30px 0;
        margin-top: 50px;
      }
      .map-container {
        width: 80%;
        margin: auto;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 2px 6px 15px rgba(0, 0, 0, 0.2);
      }
      .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
      }
      .social-links a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 15px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 1.2em;
        color: #fff;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      .social-links a i {
        font-size: 1.5em;
      }
      .whatsapp { background: #25D366; }
      .facebook { background: #1877F2; }
      .instagram { background: #E4405F; }
      .social-links a:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      }
      /* تحسين التوافق مع الشاشات الصغيرة */
      @media (max-width: 768px) {
        .container {
          flex-direction: column;
          text-align: center;
        }
        nav.desktop-menu ul {
          display: none;
        }
        .hero-content {
          max-width: 100%;
        }
        .hero-image {
          max-width: 100%;
          margin-top: 20px;
        }
        #hero {
          height: 500px !important;
          padding: 50px 20px !important;
        }
        .slide {
          flex-direction: column !important; /* جعل العناصر تتراص عمودياً على الشاشات الصغيرة */
          text-align: center!important;
          padding: 5% 3%;
        }
        .hero-content {
          max-width: 100%;
        }
        .hero-content h2 {
          font-size: 1.8em; /* تصغير العنوان ليظهر بشكل متناسق */
        }
        .hero-content p {
          font-size: 1em;
        }
        .order {
          flex-direction: column;
        }
        .hero-image {
          max-width: 80%; /* تكبير الصورة قليلاً */
          margin-top: 20px;
        }
        .hero-image img {
          width: 100%;
        }


        .slider-dots {
          bottom: 10px;
        }
        .mobile-menu {
          right: 10px;
        }
      }
      /* تأثيرات عند التمرير (Fade-in) */
      .hidden {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
      }
      .visible {
        opacity: 1;
        transform: translateY(0);
      }
