
        /* تعديلات الهيدر الجديد */
         .hero-section {
            background-image: url('../img/hero2.png');
            background-size: cover;
            background-position: center;
            width: 100%;
            height: 80vh;
            position: relative;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.3);
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
        }
        
        .hero-image-container {
            width: 100%;
            position: relative;
            overflow: hidden;
            height: 350px;
            box-shadow: 0 0 25px rgba(0,0,0,0.1);
        }
        
        .hero-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 10s ease;
        }
        
        .hero-image-container:hover img {
            transform: scale(1.1);
        }
        
        .vision-mission-section {
            background: linear-gradient(to bottom, #ffffff, #f8f8f8);
            /*padding: 3rem 0;*/
        }
        
        .vision-card, .mission-card {
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .vision-card:hover, .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .card-image {
            height: 300px;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .vision-card:hover .card-image img,
        .mission-card:hover .card-image img {
            transform: scale(1.1);
        }
        
        .card-content {
            padding: 1.5rem;
        }
        
        .brand-shadow {
            box-shadow: 0 8px 32px 0 rgba(255, 180, 61, 0.16);
        }
        
        .gradient-text {
            background: linear-gradient(90deg, #FFCA0A 0%, #FF6B2D 50%, #4AC989 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .brand-btn {
            background: linear-gradient(90deg, #FFCA0A 0%, #FF6B2D 50%, #4AC989 100%);
            color: #fff;
            transition: box-shadow 0.24s;
            border-radius: 2rem;
        }
        
        .brand-btn:hover {
            box-shadow: 0 4px 24px 0 rgba(255, 180, 61, 0.16);
            opacity: .93;
        }
        
        .floating-fruit {
            position: absolute;
            opacity: 0.08;
            z-index: -1;
            filter: blur(1px);
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .fadeInUp {
            animation: fadeInUp 1.3s cubic-bezier(0.23, 1, 0.320, 1) both;
        }
        
        @keyframes fadeInUp {
            0% {
                opacity: 0; 
                transform: translateY(50px);
            }
            100% {
                opacity: 1; 
                transform: translateY(0);
            }
        }
        
        .slideInLeft {
            animation: slideInLeft 1.1s cubic-bezier(0.23, 1, 0.320, 1) both;
        }
        
        @keyframes slideInLeft {
            0% { opacity: 0; transform: translateX(80px);}
            100% { opacity: 1; transform: translateX(0);}
        }
        
        .slideInRight {
            animation: slideInRight 1.1s cubic-bezier(0.23, 1, 0.320, 1) both;
        }
        
        @keyframes slideInRight {
            0% { opacity: 0; transform: translateX(-80px);}
            100% { opacity: 1; transform: translateX(0);}
        }
        
        .pdf-friendly-shadow {
            box-shadow: 0 1px 8px #ececec;
        }
        
        .section-title {
            position: relative;
            font-size: 2.1rem;
            font-weight: 900;
            letter-spacing: -.5px;
            margin-bottom: 1rem;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #4AC989, #FFCA0A);
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem !important;
            }
            
            .hero-image-container {
                height: 200px;
            }
            
            .card-image {
                height: 180px;
            }
        }
        
        @media (max-width: 640px) {
            .section-title {
                font-size: 1.5rem !important;
            }
            
            .card-image {
                height: 160px;
            }
        }
        @media (max-width: 768px) {
            .hero-section {
                height: 100vh;
            }
        }
        
        .fadeInUp {
            animation: fadeInUp 1.3s cubic-bezier(0.23, 1, 0.320, 1) both;
        }
        
        @keyframes fadeInUp {
            0% {
                opacity: 0; 
                transform: translateY(50px);
            }
            100% {
                opacity: 1; 
                transform: translateY(0);
            }
        }


    body {
      font-family: 'Cairo', sans-serif !important;
      background: #faf9f7;
      color: #232323;
      scroll-behavior: smooth;
    }
    .brand-shadow {
      box-shadow: 0 8px 32px 0 rgba(255, 180, 61, 0.16);
    }
    .gradient-text {
      background: linear-gradient(90deg, #FFCA0A 0%, #FF6B2D 50%, #4AC989 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
    }
    .fadeInUp {
      animation: fadeInUp 1.3s cubic-bezier(0.23, 1, 0.320, 1) both;
    }
    @keyframes fadeInUp {
      0% {
        opacity: 0; 
        transform: translateY(50px);
      }
      100% {
        opacity: 1; 
        transform: translateY(0);
      }
    }
    .slideInLeft {
      animation: slideInLeft 1.1s cubic-bezier(0.23, 1, 0.320, 1) both;
    }
    @keyframes slideInLeft {
      0% { opacity:0; transform:translateX(80px);}
      100% { opacity:1; transform:translateX(0);}
    }
    .slideInRight {
      animation: slideInRight 1.1s cubic-bezier(0.23, 1, 0.320, 1) both;
    }
    @keyframes slideInRight {
      0% { opacity:0; transform:translateX(-80px);}
      100% { opacity:1; transform:translateX(0);}
    }


    .pdf-friendly-shadow {
      box-shadow: 0 1px 8px #ececec;
    }
    @media print {
      .pdf-friendly-shadow {
        box-shadow: none !important;
        border: 1px solid #ececec;
      }
      nav, .hide-on-print {
        display: none !important;
      }
    }

/* إضافة هذه القواعد لملف style.css */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem !important;
    margin-bottom: 0.5rem;
  }
  
  h1.gradient-text {
    font-size: 2.5rem !important;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem !important;
  }
  
  h1.gradient-text {
    font-size: 2rem !important;
  }
}
/* إضافة هذه التعديلات لملف style.css */
@media (max-width: 768px) {
  section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .py-9, .py-10 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  
  .p-8, .p-12, .p-14 {
    padding: 1.5rem !important;
  }
  
  .gap-6 {
    gap: 1rem !important;
  }
}


/* تعديل حجم الأيقونات في الهواتف */
@media (max-width: 480px) {
  .fa, .fas {
    font-size: 90% !important;
  }
  
  .text-3xl {
    font-size: 1.5rem !important;
  }
  
  .text-2xl {
    font-size: 1.25rem !important;
  }
}
@media (max-width: 768px) {
  .flex-wrap {
    flex-direction: column;
  }
  .text-center {
    text-align: center;
  }
}


    /* Animation Classes */
    .fadeIn {
      animation: fadeIn 0.8s ease forwards;
    }
    
    .fadeInUp {
      animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.320, 1) both;
    }
    
    .slideInLeft {
      animation: slideInLeft 1s cubic-bezier(0.23, 1, 0.320, 1) both;
    }
    
    .slideInRight {
      animation: slideInRight 1s cubic-bezier(0.23, 1, 0.320, 1) both;
    }
    
    .zoomIn {
      animation: zoomIn 0.5s ease forwards;
    }
    
    .bounce {
      animation: bounce 1s ease infinite;
    }
    
    .pulse {
      animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }
    
    /* Product Card Animation */
    .product-card {
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .product-card:hover {
      transform: translateY(-10px) scale(1.02);
      z-index: 2;
    }
    
    .product-card:hover .product-image {
      transform: scale(1.1) rotate(2deg);
    }
    
    .product-image {
      transition: transform 0.5s ease;
    }
    
    .product-badge {
      position: absolute;
      top: -10px;
      right: 10px;
      transform: rotate(5deg);
      z-index: 10;
      animation: bounce 2s ease infinite;
    }
    
    /* Filter Button Animation */
    .filter-btn {
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .filter-btn:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background: rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
      z-index: 0;
    }
    
    .filter-btn:hover:before {
      width: 100%;
    }
    
    .filter-btn.active {
      background: linear-gradient(90deg, #FFCA0A 0%, #FF6B2D 80%);
      color: white;
      box-shadow: 0 4px 12px rgba(255, 180, 61, 0.2);
    }
    
    /* Animation Keyframes */
    @keyframes fadeIn {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }
    
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(40px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes slideInLeft {
      0% { opacity: 0; transform: translateX(60px); }
      100% { opacity: 1; transform: translateX(0); }
    }
    
    @keyframes slideInRight {
      0% { opacity: 0; transform: translateX(-60px); }
      100% { opacity: 1; transform: translateX(0); }
    }
    
    @keyframes zoomIn {
      0% { opacity: 0; transform: scale(0.8); }
      100% { opacity: 1; transform: scale(1); }
    }
    
    @keyframes bounce {
      0%, 100% { transform: translateY(0) rotate(5deg); }
      50% { transform: translateY(-10px) rotate(5deg); }
    }
    
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }
    
    /* Fruit Background Floating Elements */
    .floating-fruit {
      position: absolute;
      opacity: 0.08;
      z-index: -1;
      filter: blur(1px);
      animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(5deg); }
    }
    
    /* Category Icons */
    .category-icon {
      font-size: 1.8rem;
      transition: all 0.3s ease;
    }
    
    .category-item:hover .category-icon {
      transform: scale(1.2);
    }

    /* Search Animation */
    .search-input {
      transition: all 0.3s ease;
    }
    
    .search-input:focus {
      box-shadow: 0 0 0 3px rgba(74, 201, 137, 0.3);
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .section-title {
        font-size: 1.8rem;
      }
      .product-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 640px) {
      .product-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Print optimizations */
    @media print {
      .pdf-friendly-shadow {
        box-shadow: none !important;
        border: 1px solid #ececec;
      }
      .hide-on-print, .floating-fruit {
        display: none !important;
      }
      .page-break-avoid {
        page-break-inside: avoid;
      }
      body {
        width: 100%;
        margin: 0;
        padding: 0;
      }
      .animated-bg {
        background: #f9f9f9 !important;
        animation: none !important;
      }
    }


    /* location */
    .leaflet-container {
      background: rgba(11,21,29,0.96) !important;
      border-radius: 36px;
      box-shadow: 0 8px 38px rgba(34,34,34,0.21), 0 0 0 transparent;
    }
    .custom-marker {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 2.7px solid #fff;
      font-size: 19px;
      width: 38px;
      height: 38px;
      box-shadow: 0 0 12px 2px rgba(0,0,0,0.19);
    }
    .marker-green { background: #38b000; color: #fff; }
    .marker-orange { background: #fd7e14; color: #fff; }
    .marker-yellow { background: #ffd600; color: #372900; border-color: #fff;}
    .marker-red { background: #d90429; color: #fff; }
    /* Tooltip style override for Leaflet */
    .leaflet-tooltip.custom-tooltip {
      background: rgba(28,32,39, 0.97);
      color: #fff;
      border-radius: 13px;
      border: 2px solid #37b24d;
      min-width: 180px;
      max-width: 300px;
      font-size: 1.08rem;
      direction: rtl;
      text-align: right;
      font-family: 'Cairo', 'Poppins', sans-serif;
      padding: 12px 16px 10px 13px;
      box-shadow: 0 4px 30px 2px rgba(0,0,0,0.28);
      z-index: 9001;
    }
    .leaflet-tooltip.custom-tooltip h3 {
      margin: 0 0 3px 0;
      font-size: 1.13rem;
      font-weight: bold;
      color: #fd7e14;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .leaflet-tooltip.custom-tooltip p {
      margin: 0;
      font-size: 0.99rem;
      color: #ffe7ad;
    }
    .leaflet-tooltip.custom-tooltip .keylabel {
      margin: 8px 0 0;
      font-size: 0.95em;
      color: #ffd600;
      font-weight: 700;
    }
    @media (max-width: 720px) {
      #fb-map { height: 370px !important;}
    }
    @media (max-width:520px) {
      #fb-map { height: 270px !important;}
      .leaflet-tooltip.custom-tooltip { font-size:0.93rem; }
    }
    .brand-shadow {
      box-shadow: 0 8px 32px 0 rgba(255, 180, 61, 0.16);
    }
    .gradient-text {
      background: linear-gradient(90deg, #FFCA0A 0%, #FF6B2D 50%, #4AC989 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
    }
    .fadeInUp {
      animation: fadeInUp 1.3s cubic-bezier(0.23, 1, 0.320, 1) both;
    }
    @keyframes fadeInUp {
      0% {
        opacity: 0; 
        transform: translateY(50px);
      }
      100% {
        opacity: 1; 
        transform: translateY(0);
      }
    }
    .slideInLeft {
      animation: slideInLeft 1.1s cubic-bezier(0.23, 1, 0.320, 1) both;
    }
    @keyframes slideInLeft {
      0% { opacity:0; transform:translateX(80px);}
      100% { opacity:1; transform:translateX(0);}
    }
    .slideInRight {
      animation: slideInRight 1.1s cubic-bezier(0.23, 1, 0.320, 1) both;
    }
    @keyframes slideInRight {
      0% { opacity:0; transform:translateX(-80px);}
      100% { opacity:1; transform:translateX(0);}
    }
    .brand-btn {
      background: linear-gradient(90deg,#FFCA0A 0%,#FF6B2D 50%,#4AC989 100%);
      color: #fff;
      transition: box-shadow 0.24s;
      border-radius:2rem;
    }
    .brand-btn:hover {
      box-shadow:0 4px 24px 0 rgba(255,180,61,0.16);
      opacity:.93;
    }
    .section-title {
      font-size: 2.1rem;
      font-weight: 900;
      letter-spacing: -.5px;
      margin-bottom: .6rem;
    }

    .navbar-container {
      width: 100%;
      position: relative;
      z-index: 1000;
      order: -1;
    }
    

    
    @media (max-width: 768px) {
      #fb-map {
        height: 400px;
        border-radius: 20px;
      }
      
      .custom-marker {
        width: 32px;
        height: 32px;
        font-size: 16px;
      }
      
      .leaflet-tooltip.custom-tooltip {
        max-width: 250px;
        font-size: 0.95rem;
      }
    }
    
    @media (max-width: 480px) {
      #fb-map {
        height: 300px;
        border-radius: 15px;
      }
      
      .custom-marker {
        width: 28px;
        height: 28px;
        font-size: 14px;
      }
      
      .leaflet-tooltip.custom-tooltip {
        max-width: 200px;
        font-size: 0.85rem;
        padding: 8px 10px;
      }
      
      section.mt-4.mb-6 {
        gap: 0.5rem !important;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1rem;
      }
      
      section.mt-4.mb-6 > div {
        margin-bottom: 0.5rem;
      }
    }
    
    @media (max-width: 768px) {
      section.mt-4.mb-6 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem !important;
      }
    }
    #fb-map {
      touch-action: pan-x pan-y;
      height: 470px;
      width: 100%;
      margin: auto;
      z-index: 1;
    }
    
    /* تأكد من أن الخريطة مرئية بشكل كامل */
    .leaflet-container {
      background: rgba(11,21,29,0.96) !important;
      border-radius: 36px;
      box-shadow: 0 8px 38px rgba(34,34,34,0.21);
      touch-action: manipulation;
      height: 100%;
    }
    
    /* إصلاح أزرار التكبير/التصغير على الأجهزة المحمولة */
    .leaflet-touch .leaflet-control-zoom {
      border: 2px solid rgba(74, 201, 137, 0.4);
    }
    
    .leaflet-touch .leaflet-bar a {
      width: 36px;
      height: 36px;
      line-height: 36px;
    }
    
    @media (max-width: 480px) {
      /* تكبير أزرار التحكم قليلاً لتكون أسهل في اللمس */
      .leaflet-touch .leaflet-bar a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 22px;
      }
    }
    /* end location */


    /* product start */
    .product-card {
      transition: all 0.3s ease;
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .product-image {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 2rem;
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, #4AC989, #FFCA0A);
      border-radius: 2px;
    }
    .gradient-btn {
      background: linear-gradient(90deg, #4AC989, #FFCA0A);
      transition: all 0.3s ease;
    }
    .gradient-btn:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
      .product-container {
        grid-template-columns: repeat(2, 1fr) !important;
      }
      .product-image {
        height: 150px;
      }
      .product-card .text-lg {
        font-size: 1rem;
      }
      .categories-filter {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 1rem;
      }
      .h-full{
        height: 80%;
      }
    }
    
    @media (max-width: 640px) {
      .product-container {
        grid-template-columns: repeat(1, 1fr) !important;
      }
      .hero-title {
        font-size: 1.5rem !important;
      }
      .section-title {
        font-size: 1.25rem !important;
      }
    }

    
    .product-card:hover .product-image img {
      transform: scale(1.05);
    }
    .hero-title {
      background: linear-gradient(to left, #2c7a14, #37a169);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 1.5rem;
    }
    .section-title:after {
      content: '';
      position: absolute;
      bottom: -10px;
      right: 0;
      height: 3px;
      width: 60px;
      background: linear-gradient(to left, #38b000, #4cc417);
    }
    /* Animaciones */
    .fadeInUp {
      transition: opacity 0.6s ease, transform 0.6s ease;
      transform: translateY(20px);
    }
    .slideInLeft {
      transition: opacity 0.6s ease, transform 0.6s ease;
      transform: translateX(20px);
    }
    .slideInRight {
      transition: opacity 0.6s ease, transform 0.6s ease;
      transform: translateX(-20px);
    }
    .opacity-100 {
      opacity: 1;
      transform: translate(0);
    }
/* product end */

/*navbar*/
/* تحسينات الشاشات العربية والإنجليزية */
[dir="rtl"] .space-x-reverse {
  --tw-space-x-reverse: 1;
}

/* تحسينات للقائمة المحمولة */
#mobile-menu {
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* تحسينات أزرار اللمس */
button, a {
  touch-action: manipulation;
}

/* زيادة منطقة اللمس للأزرار على الأجهزة المحمولة */
@media (max-width: 768px) {
  #mobile-menu-button, #language-button {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* تنسيق العنصر النشط في القائمة */
.active-nav-item {
  display: inline-block;
  position: relative;
  padding-bottom: 5px; /* اترك مساحة لظهور الخط */
}

.active-nav-item:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0; /* اجعله عند الحافة السفلية */
  height: 2px;
  background-color: #10B981;
  transform: scaleX(1);
  transition: transform 0.2s ease;
}

/* تحسينات للصفحة الخريطة */
#fb-map {
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
  height: 470px !important;
  width: 100% !important;
  margin: auto !important;
  z-index: 1 !important;
  border-radius: 24px !important;
}

.leaflet-container {
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
  background: rgba(11,21,29,0.96) !important;
  border-radius: 24px !important;
  box-shadow: 0 8px 38px rgba(34,34,34,0.21) !important;
  height: 100% !important;
}

/* تحسين z-index للعناصر في الخريطة */
.leaflet-control {
  z-index: 800 !important;
}

.leaflet-pane {
  z-index: 400 !important;
}

/*navbar*/