</style>

.sticky-button {
  display: flex !important;
}

  .sticky-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background-color: #00a93a; 
    color: white;
    padding: 25px 0;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    z-index: 999;
    border-radius: 8px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  }

  .sticky-button:hover {
    background-color: #04a93a;
  }

  .whatsapp-icon svg {
    display: inline-block;
    vertical-align: middle;
    font-size: 35px;
  }

  footer {
    padding-bottom: 80px;
  }

.slider {
  width: 100%;
  height: 100vh; /* نخليوها 100% من ارتفاع الشاشة */
  /* max-height: 600px; <--- هادي غانحيدوها */
  position: relative;
  overflow: hidden;
  padding-top:10px;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .slider {
    height: auto;
    max-height: none;
  }

  .slider img {
    height: auto;
    object-fit: contain;
  }
}




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

  
 article h1, section h1, nav h1, aside h1 {
  font-size: 2rem;
}
    article h2, section h2, nav h2, aside h2 {
  font-size: 2rem;
}
       article h3, section h2, nav h2, aside h2 {
  font-size: 2rem;
}    

           /* Reset */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  background-color: #fff;
  padding: 0px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 999;
}

/* Logo */
.navbar img {
  height: 65px;
  border-radius: 10%;
  
  align-items: center;
  margin-top: 10px; /* مسافة من الفوق */
    margin-left: 10px; /* مسافة من الجنب */
}

/* Links */
.navbar a {
  background-color: #06c148;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.navbar a:hover {
  background-color: #06c16a;
}

/* Responsive desktop only */
.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

/* Dropdown button */
.dropbtn {
  background-color: #06c148;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin-right: 10px;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 9999;
}

/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #06c148;
  min-width: 180px;
  border-radius: 5px;
  padding: 10px 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  overflow: visible;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  white-space: nowrap;
  padding: 10px 15px;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: normal;
  font-size: 16px;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: black;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

/* SUB-DROPDOWN (Pages menu) */
.sub-dropdown {
  position: relative;
}

.sub-dropdown-content {
  display: none;
  position: absolute;
  top: 0;
  right: 100%;
  background-color: #06c148;
  min-width: 200px;
  padding: 10px 5px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1001;
}

.sub-dropdown:hover .sub-dropdown-content {
  display: block;
}


.sub-dropdown-content a {
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  font-size: 16px;
  display: block;
}

.sub-dropdown-content a:hover {
  background-color: #f1f1f1;
  color: black;
}

	




      
    .stories-wrapper {
      display: flex;
      overflow-x: auto;
      gap: 12px;
      padding: 15px;
      
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .story-box {
      position: relative;
      flex: 0 0 auto;
      width: 110px;
      height: 180px;
      overflow: hidden;
      border-radius: 12px;
      cursor: pointer;
      scroll-snap-align: start;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .story-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .story-text {
      position: absolute;
      bottom: 10px;
      left: 0;
      width: 100%;
      text-align: center;
      font-size: 13px;
      color: white;
      font-weight: bold;
      z-index: 2;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    }

  
	
	
	.delivery-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
}

.delivery-image,
.delivery-text {
  width: 50%;
  min-width: 300px;
}

.delivery-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.delivery-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
}

.delivery-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .delivery-image,
  .delivery-text {
    width: 100%;
  }

  .delivery-text h2,
  .delivery-text p {
    text-align: center;
  }

  .delivery-text h2 {
    font-size: 20px;
  }

  .delivery-text p {
    font-size: 15px;
  }
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 5px;
  padding-bottom: 10px;
  justify-items: stretch; /* خلي العناصر يتفردو على طول العمود */
}

.card-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive: وحدة تحت وحدة فـ الهاتف */
@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }
}



.map-container {
  width: 100%;
  height: 400px;
  margin: 0px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}








.site-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 20px;
  background-color: #fff;
  color: #000;
  border-top: 1px solid #ccc;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
 
}

.footer-logo {
  max-width: 100px;
  margin-bottom: 10px;
}

.footer-section a {
  color: #036726;
  text-decoration: none;
  font-weight: bold;
}

.footer-section h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-family: 'Oswald', sans-serif;
}

.social-icons {
  display: flex;
  align-items: right;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 65px;
  height: 65px;
}

/* Responsive mobile */
@media (max-width: 768px) {
  
  
  
  .site-footer {
    flex-direction: column;
  margin: 3px 1px;
  }

  .footer-section {
    
  }

  
}


 .service-img {
    width: 30%;
  }

  @media (max-width: 768px) {
    .service-img {
      width: 90%;
    }
  }
  
  
  
  
  
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .article-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .article-card:hover {
      transform: translateY(-5px);
    }

    .article-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .article-title {
      padding: 15px;
      font-size: 18px;
      font-weight: bold;
      color: #333;
    }

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

      .article-card img {
        height: 180px;
      }
    }
    
     .scroll-bar {
      width: 100%;
      background: #222;
      color: #fff;
      overflow: hidden;
      white-space: nowrap;
      box-sizing: border-box;
      padding: 12px 0;
    }

  

.scroll-text {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}

    @keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }


    .scroll-bar h3 {
      margin: 0;
      font-size: 18px;
      font-weight: bold;
    }

    .scroll-bar p {
      display: inline;
      margin: 0;
      font-size: 16px;
    }
    
    
  .hidden-seo {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}


.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

    
    
    
    
    
    
    
    
    
    
    
    
 /* --- تحسينات عامة للمحتوى الثابت --- */
.static-content-section {
    padding: 20px;
    background-color: #fff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px; /* تأكد من وجود حشو (padding) على الجوانب */
}

/* نمط عناوين الأقسام الكبيرة (H2) */
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    margin-top: 15px;
    text-align: left;
}

/* نمط الفقرات العادية (P) */
/* نمط الفقرات العادية (P) */
.paragraph-style {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    
    /* === الإعداد النهائي للغة الفرنسية === */
    text-align: left; /* المحاذاة لليسار (الطبيعية للغات اللاتينية) */
    direction: ltr;   /* اتجاه اليسار لليمين */
    /* ==================================== */
}

/* --- نمط FAQ (نفس النمط السابق مع تغيير طفيف) --- */
.faq-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    background-color: #eee;
    padding: 15px;
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    color: #047c2e; /* تغيير اللون ليتماشى مع علامتك التجارية */
}

.faq-item p {
    padding: 15px;
    font-size: 16px;
    line-height: 1.7;
}
 
    

</style>

