* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Outfit", sans-serif;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.preloader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #111111; 
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999; 
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader {
  position: relative;
  width: 120px;
  height: 90px;
  margin: 0 auto;
}

.loader:before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #ed6902; 
  animation: loading-bounce 0.5s ease-in-out infinite alternate;
}

.loader:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 7px;
  width: 45px;
  border-radius: 4px;
  box-shadow: 0 5px 0 #ffffff, -35px 50px 0 #ffffff, -70px 95px 0 #ffffff;
  animation: loading-step 1s ease-in-out infinite;
}

@keyframes loading-bounce {
  0% { transform: scale(1, 0.7); }
  40% { transform: scale(0.8, 1.2); }
  60% { transform: scale(1, 1); }
  100% { bottom: 140px; }
}

@keyframes loading-step {
  0% { box-shadow: 0 10px 0 rgba(0,0,0,0), 0 10px 0 #fff, -35px 50px 0 #fff, -70px 95px 0 #fff; }
  100% { box-shadow: 0 10px 0 #fff, -35px 50px 0 #fff, -70px 95px 0 #fff, -70px 95px 0 rgba(0,0,0,0); }
}

.preloader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}

header {
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(17, 17, 17, 0.4); 
  backdrop-filter: blur(10px); 
  -webkit-backdrop-filter: blur(10px); 
  padding: 9px 36px; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.099); 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-logo-img {
  height: 40px; 
  width: auto;
  object-fit: contain;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 15px; 
}

.lang-btn {
  background: transparent;
  color: #eeeeee;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 5px 14px; 
  border-radius: 20px;
  cursor: pointer;
  font-size: 14.5px; 
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Zain', sans-serif; 
}

.lang-btn:hover {
  background: #ed6902;
  border-color: #ed6902;
}

.mobile-lang-btn {
  display: none;
}

.desktop-lang-btn {
  margin-right: 10px;
  margin-left: 10px;
}

html[dir="rtl"] body {
  font-family: 'Zain', sans-serif;
  text-align: right;
}

html[dir="rtl"] .second {
  text-align: right;
}

.title {
  text-decoration: none;
  font-size: 21.5px; 
  color: #eeeeee;
  font-weight: 600;
}

.tabs {
  display: flex;
  align-items: center;
  flex: 1; 
  gap: 13.5px;
  justify-content: flex-end; 
  flex-wrap: wrap; 
}

.tabs a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.nav-box {
  display: flex;
  align-items: center;
  background-color: #ffffff; 
  border-radius: 50px; 
  padding: 4.5px 18px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap; 
  flex-wrap: wrap; /* أمان إضافي */
}

.nav-box a {
  color: #2f4329; 
  font-weight: 600;
  text-decoration: none;
  padding: 7px 16px; 
  font-size: 14.5px; 
  transition: all 0.3s ease-in-out;
}

.nav-box a:hover {
  color: #ed6902; 
  transform: scale(1.1); 
  display: inline-block; 
}

.explore {
  background-color: #ed6902;
  border-radius: 40px;
  padding: 7px 16px; 
  font-size: 14.5px; 
  transition: all 0.3s ease-in-out;
  display: inline-block;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.079);
  color: #eeeeee;
}

.explore:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: #2f4329;
}

.menu-toggle, .menu-social {
  display: none; 
}

.brand-logo {
  font-size: 26px;
  font-weight: 800;
  color: #eeeeee;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.brand-logo span {
  color: #ed6902;
}

.center-white-box {
  background-color: #ffffff;
  padding: 11px 36px; 
  border-radius: 50px; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
}

.center-white-box .nav-links {
  display: flex;
  gap: 31px; 
  list-style: none;
  margin: 0;
  padding: 0;
}

.center-white-box .nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 600;
  transition: color 0.3s ease;
}

.center-white-box .nav-links a:hover {
  color: #ed6902;
}

.products-btn {
  background-color: #ed6902;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.products-btn:hover {
  background-color: #d15b02;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(237, 105, 2, 0.3);
}

.mobile-only { display: none; }
.desktop-only { display: inline-block; }

.home {
  color: #eeeeee;
  height: 100vh; 
  width: 100%;
  overflow: hidden; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 100px; 
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2; 
}

.first { 
  font-size: 40px; 
  font-weight: 600; 
  display: block;
  margin-bottom: 20px;
}

.second { 
  font-size: 24px; 
  text-align: left; 
  font-weight: 500; 
  color: #d7b08c; 
  display: block;
  margin-bottom: 30px;
}

.btn {
  text-decoration: none;
  color: #eeeeee;
  background-color: #ed6902;
  border-radius: 40px;
  padding: 16px 24px;
  font-size: 24px;
  font-weight: 500;
  margin-top: 24px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  width: 250px;
  text-align: center;
}

.btn:hover { 
  transform: scale(1.05); 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); 
  color: #2f4329; 
}

.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none; 
}

.hero-arrow {
    pointer-events: auto; 
    background-color: rgba(255, 255, 255, 0.15);
    color: #eeeeee;
    border: 1px solid rgba(255,255,255,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background-color: #ed6902;
    border-color: #ed6902;
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.hero-dots .dot.active {
    background-color: #ed6902;
    width: 35px;
    border-radius: 10px;
}

.featured-section {
  padding: 10px;
  text-align: center;
  color: #2f4329;
  margin-top: 120px;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60 Q50 50 100 60 T200 60' fill='none' stroke='%23e0e0e0' stroke-width='4'/%3E%3C/svg%3E");
  margin-bottom: 100px;
}

.featured-section h2 { 
  font-size: 48px; 
  margin-bottom: 30px; 
  font-weight: 550; 
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  width: 100%; 
  padding: 0 20px; 
  height: auto;
  margin: 0 auto;
}

.card {
  position: relative; 
  border-radius: 16px; 
  text-decoration: none;
  overflow: hidden;
  height: 250px; 
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

.card img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: all 0.4s ease-in-out; 
}

.card span { 
  position: absolute; 
  bottom: 20px; 
  left: 20px; 
  color: white; 
  font-size: 24px; 
  font-weight: 700; 
  z-index: 2; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

html[dir="rtl"] .card span {
  left: auto;
  right: 20px;
}

.card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); 
}

.card:hover img { 
  transform: scale(1.1); 
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.7); 
  border-radius: 16px; 
  pointer-events: none; 
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.card:hover::after {
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.9);
}

.about {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2f4329;
  padding: 60px 100px;
  margin-top: 150px;
  padding-bottom: 220px;
}

.about-container { 
  display: flex; 
  align-items: center; 
  max-width: 1200px; 
  gap: 40px; 
}

.icon { 
  font-size: 150px; 
  flex-shrink: 0; 
  color: #eeeeee; 
}

.about-text { 
  display: flex; 
  flex-direction: column; 
  gap: 40px; 
}

.first-about { 
  font-size: 48px; 
  font-weight: 600; 
}

.second-about { 
  font-size: 18px; 
  line-height: 1.6; 
  font-weight: 400; 
  max-width: 800px; 
  text-align: justify; 
}

.certifications-section { 
  padding: 60px 20px; 
  background-color: #2f4329; 
  overflow: hidden; 
}

.section-title { 
  text-align: center; 
  margin-bottom: 80px; 
}

.section-title h2 { 
  color: #eeeeee; 
  font-size: 32px; 
}

.section-title p { 
  color: #ed6902; 
  font-size: 16px; 
}

.carousel-container { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 30px; 
  perspective: 1000px; 
  height: 450px; 
}

.cert-track { 
  position: relative; 
  width: 700px; 
  height: 300px; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  transform-style: preserve-3d; 
}

.cert-card { 
  position: absolute; 
  width: 370px; 
  height: 450px; 
  background: white; 
  border-radius: 12px; 
  padding: 10px; 
  box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
  transition: all 0.5s ease; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
}

.cert-card img { 
  max-width: 100%; 
  max-height: 100%; 
  object-fit: contain;
}

.center-card { 
  transform: translateX(0) scale(1) rotateY(0deg); 
  z-index: 3; 
  opacity: 1; 
  border: 2px solid #ed6902; 
  box-shadow: 0 15px 35px rgba(0,0,0,0.2); 
}

.left-card { 
  transform: translateX(-180px) scale(0.85) rotateY(40deg); 
  z-index: 2; 
  opacity: 0.6; 
}

.right-card { 
  transform: translateX(180px) scale(0.85) rotateY(-40deg); 
  z-index: 2; 
  opacity: 0.6; 
}

.cert-nav-btn { 
  background-color: #eeeeee; 
  color: #2f4329; 
  border: none; 
  width: 45px; 
  height: 45px; 
  border-radius: 50%; 
  cursor: pointer; 
  font-size: 18px; 
  z-index: 5; 
  transition: all 0.3s ease; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); 
}

.cert-nav-btn:hover { 
  background-color: #ed6902; 
  transform: scale(1.1); 
}

.fade-up-element { 
  opacity: 0; 
  transform: translateY(40px); 
}

.fade-up-element.show { 
  animation: fadeUp 1.2s ease-out forwards; 
}

@keyframes fadeUp { 
  from { opacity: 0; transform: translateY(40px); } 
  to { opacity: 1; transform: translateY(0); } 
}

.contact { 
  padding: 80px 20px 40px;
  text-align: center; 
  color: #eeeeee; 
  background-color: #2f4329; 
}

.contact h2 {
  font-size: 36px; 
  margin-bottom: 20px; 
}

.contact p {
  font-size: 18px; 
  margin-bottom: 10px; 
  color: #eeeeee; 
}

.contact .email { 
  font-size: 18px; 
  color: #ed6902; 
  text-decoration: none; 
  font-weight: 500; 
  transition: color 0.3s ease; 
}

.contact .email:hover { 
  color: #eeeeee; 
  transform: scale(1.1); 
}

.social-buttons { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  gap: 25px; 
  margin-top: 40px; 
}

.social-btn { 
  display: flex; 
  align-items: center; 
  justify-content: flex-start; 
  width: 45px; 
  height: 45px; 
  border-radius: 50%; 
  cursor: pointer; 
  position: relative; 
  overflow: hidden; 
  transition-duration: 0.3s; 
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2); 
  text-decoration: none; 
}

.social-btn.fb { background-color: #1877F2; } 
.social-btn.wa { background-color: #25D366; }
.social-btn.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

.social-btn .sign { 
  width: 100%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition-duration: 0.3s;
}

.social-btn .sign svg { 
  width: 24px; height: 24px;
}

.social-btn .text { 
  position: absolute; 
  right: 0%; 
  width: 0%; 
  opacity: 0; 
  color: white; 
  font-size: 1.1em; 
  font-weight: 600; 
  transition-duration: 0.3s; 
  white-space: nowrap; 
}

.social-btn:hover { 
  width: 150px; 
  border-radius: 40px; 
  transition-duration: 0.3s; 
}

.social-btn:hover .sign { 
  width: 30%; 
  transition-duration: 0.3s;
  padding-left: 10px; 
}

.social-btn:hover .text { 
  opacity: 1; 
  width: 70%; 
  transition-duration: 0.3s; 
  padding-right: 10px; 
}

footer { 
  background-color: #111; 
  color: #eee; 
  padding: 40px 20px; 
  text-align: center; 
  font-size: 16px; 
  line-height: 1.6; 
}

footer .made-by { 
  font-size: 14px; 
  color: #bbbbbb; 
  margin-top: 10px; 
}

.developer-link { 
  color: #ed6902; 
  text-decoration: none; 
  font-weight: 600; 
  transition: all 0.3s ease; 
}

.developer-link:hover { 
  color: #d7b08c; 
  text-decoration: underline; 
}

section, #contact, #featured-section {
  scroll-margin-top: 110px !important; 
}

.cert-modal {
  display: none; 
  position: fixed;
  z-index: 999999; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cert-modal.show {
  display: flex;
  opacity: 1;
}

.cert-modal-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.cert-modal.show .cert-modal-content {
  transform: scale(1); 
}

.cert-modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #eeeeee;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cert-modal-close:hover {
  color: #ed6902;
}

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px; 
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp i {
  margin-top: 2px; 
}

.floating-whatsapp:hover {
  background-color: #1ebd5a;
  transform: scale(1.1) translateY(-5px);
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  animation: none;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

html[dir="rtl"] .floating-whatsapp {
  right: auto;
  left: 30px;
}

.who-we-are {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eeeeee; 
  padding: 60px 100px;
  margin-top: 150px;
  background-color: #2f4329;
}

.who-we-are-container { 
  display: flex; 
  align-items: center; 
  max-width: 1200px; 
  gap: 40px; 
}

.who-we-are-text { 
  display: flex; 
  flex-direction: column; 
  gap: 40px; 
}

.first-who { 
  font-size: 48px; 
  font-weight: 600; 
}

.second-who { 
  font-size: 18px; 
  line-height: 1.6; 
  font-weight: 400; 
  max-width: 800px; 
  text-align: justify; 
  color: #eeeeee;
}

#who-we-are {
  padding-top: 210px !important;
  padding-bottom: 210px !important;
}

.fruits-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.fruits-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.fruits-modal-box {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  position: relative;
  transform: scale(0.8) translateY(30px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.fruits-modal-overlay.active .fruits-modal-box {
  transform: scale(1) translateY(0);
}

.fruits-modal-close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  color: #777;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1;
}

html[dir="rtl"] .fruits-modal-close {
  right: auto;
  left: 25px;
}

.fruits-modal-close:hover {
  color: #e53e3e;
  transform: scale(1.1);
}

.fruits-modal-options {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.fruit-type-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 30px 20px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.fruit-type-card i {
  font-size: 50px;
}

.fresh-card {
  background-color: #f0fdf4;
  color: #166534;
  border-color: #bbf7d0;
}

.fresh-card:hover {
  background-color: #166534;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(22, 101, 52, 0.2);
}

.frozen-card {
  background-color: #f0f9ff;
  color: #0369a1;
  border-color: #bae6fd;
}

.frozen-card:hover {
  background-color: #0369a1;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(3, 105, 161, 0.2);
}

.clients-section {
  padding-top: 150px;
  padding-bottom: 150px; 
  background-color: #ffffff; 
  overflow: hidden;
}

.clients-section .section-title h2 {
  color: #2f4329; 
}

.clients-section .section-title p {
  color: #ed6902; 
  font-weight: 600;
  padding-bottom: 20px;
}

.clients-slider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.clients-slider::before,
.clients-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-slide-track {
  display: flex;
  align-items: center;
  width: calc(200px * 10); 
  animation: scrollClients 20s linear infinite;
}

.clients-slide-track:hover {
  animation-play-state: paused;
}

.client-logo {
  width: 200px; 
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  opacity: 0.5;
  transition: all 0.4s ease;
  cursor: pointer;
}

.client-logo img:hover {
  filter: grayscale(0%); 
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-200px * 5)); } 
}

html[dir="rtl"] .clients-slide-track {
  animation: scrollClientsRTL 20s linear infinite;
}

@keyframes scrollClientsRTL {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(200px * 5)); }
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  height: 38px; 
  border-radius: 25px; 
  padding: 0 13.5px;
  width: 198px; 
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  margin: 0 !important;
}

.search-form:focus-within {
  border-color: #ed6902; 
  box-shadow: 0 4px 12px rgba(237, 105, 2, 0.1);
}

.search-form input {
  flex: 1; 
  border: none !important;
  outline: none !important;
  background: transparent !important;
  height: 100%;
  font-size: 12.5px;
  color: #2f4329;
  padding: 0 !important;
  min-width: 0;
}

.search-form input::placeholder {
  color: #a0aec0;
}

.search-form button {
  all: unset !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #a0aec0 !important;
  font-size: 16px !important;
  cursor: pointer !important;
  padding-left: 8px !important;
  transition: color 0.3s ease !important;
}

.search-form button:hover {
  color: #ed6902 !important;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 10px); 
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  max-height: 350px;
  overflow-y: auto;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  border: 1px solid #e2e8f0;
}

.suggestion-item {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background: #f9fbf9;
}

.suggestion-img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #eee;
}

.suggestion-text {
  display: flex;
  flex-direction: column;
  text-align: start;
}

.suggestion-title {
  font-size: 14px;
  font-weight: 600;
  color: #2f4329;
}

.suggestion-cat {
  font-size: 11px;
  color: #888;
  text-transform: capitalize;
  margin-top: 2px;
}

.hidden-card { 
  transform: scale(0.5); 
  opacity: 0; 
  z-index: 1; 
  pointer-events: none; 
}

@media (min-width: 769px) and (max-width: 1150px) {
  header { padding: 10px 15px; }
  .header-logo-img { height: 28px; }
  .title { font-size: 16px; gap: 5px; }
  .tabs .nav-box { padding: 3px 8px; }
  .nav-box a { padding: 4px 6px; font-size: 13px; }
  .tabs { gap: 8px; }
  .search-form { width: 130px; height: 32px; }
  .search-form input { font-size: 11px; }
  .lang-btn, .explore { padding: 5px 12px; font-size: 13px; }
  .desktop-lang-btn { margin: 0; }
}

@media (max-width: 991px) {
  .search-form { width: 100%; margin: 15px 0 !important; }
}

@media (max-width: 768px) {
  .header-logo-img { height: 35px; }
  .desktop-lang-btn { display: none; }
  .mobile-lang-btn { display: block; padding: 4px 10px; font-size: 14px; margin: 0; }
  section, #contact, #featured-section { scroll-margin-top: 140px !important; padding-left: 15px !important; padding-right: 15px !important; width: 100%; overflow-x: hidden; }
  header { flex-direction: row; justify-content: space-between; align-items: center; position: fixed; top: 15px; left: 5%; width: 90%; height: 60px; padding: 0 20px; background-color: rgba(17, 17, 17, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 100px; border: 1px solid rgba(255, 255, 255, 0.08); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); }
  header .title { font-size: 18px; font-weight: 700; letter-spacing: 0.3px; }
  .menu-toggle { display: block; background: none; border: none; color: #eeeeee; font-size: 22px; cursor: pointer; z-index: 999; transition: color 0.3s ease; }
  .menu-toggle:hover { color: #ed6902; }
  .tabs { display: flex; flex-direction: column; justify-content: center; align-items: center; position: fixed; top: -15px; left: calc(-5% - 1px); width: 100vw; height: 100vh; background-color: rgba(17, 17, 17, 0.98); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); padding: 40px; gap: 30px; z-index: 998; transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 0; }
  .tabs.active { transform: translateY(0); }
  .tabs .nav-box a, .tabs .explore, .menu-social a { opacity: 0; transform: translateY(25px); transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
  .tabs.active .nav-box a:nth-child(1) { transition-delay: 0.2s; }
  .tabs.active .nav-box a:nth-child(2) { transition-delay: 0.3s; }
  .tabs.active .nav-box a:nth-child(3) { transition-delay: 0.4s; }
  .tabs.active .nav-box a:nth-child(4) { transition-delay: 0.5s; }
  .tabs.active .explore { transition-delay: 0.6s; }
  .tabs.active .menu-social a { transition-delay: 0.7s; }
  .tabs.active .nav-box a, .tabs.active .explore, .tabs.active .menu-social a { opacity: 1; transform: translateY(0); }
  .nav-box { display: flex; align-items: center; justify-content: center; position: static; transform: none; white-space: normal; flex-direction: column; background-color: transparent; box-shadow: none; padding: 0; width: 100%; gap: 20px; }
  .nav-box a { display: block; color: #eeeeee; width: auto; text-align: center; padding: 10px 20px; font-size: 20px; font-weight: 500; }
  .nav-box a:hover { color: #ed6902; }
  .explore { width: auto; min-width: 200px; text-align: center; padding: 14px 28px; font-size: 18px; }
  .menu-social { display: flex !important; gap: 25px; margin-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 30px; width: 80%; justify-content: center; }
  .menu-social a { color: #bbbbbb; font-size: 22px; transition: color 0.3s ease, transform 0.3s ease !important; }
  .menu-social a:hover { color: #ed6902; transform: scale(1.1); }
  .desktop-only { display: none; }
  .center-white-box { position: absolute; top: 70px; left: 0; width: 100%; flex-direction: column; padding: 25px 20px; border-radius: 15px; gap: 20px; opacity: 0; visibility: hidden; transform: translateY(-15px); transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
  .center-white-box.active { opacity: 1; visibility: visible; transform: translateY(0); }
  .center-white-box .nav-links { flex-direction: column; text-align: center; gap: 20px; width: 100%; }
  .mobile-only { display: block; text-align: center; width: 100%; }
  .home { padding: 80px 20px 60px; text-align: center; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(images/bg.avif); background-position: 80% center; overflow: hidden; }
  .hero-content { align-items: center; width: 100%; }
  .first { font-size: 34px; padding-top: 0; line-height: 1.2; }
  .second { font-size: 18px; text-align: center; margin-top: 15px; }
  .btn { width: auto; padding: 14px 35px; font-size: 18px; margin: 35px auto 0; }
  .home .btn { position: relative !important; bottom: auto !important; left: auto !important; right: auto !important; transform: translateY(20vh) !important; z-index: 20; }
  .hero-nav { padding: 0 15px; }
  .hero-arrow { width: 40px; height: 40px; font-size: 16px; }
  .hero-dots { bottom: 25px; gap: 8px; }
  .hero-dots .dot { width: 10px; height: 10px; }
  .hero-dots .dot.active { width: 25px; }
  .featured-grid { grid-template-columns: 1fr; width: 100%; height: auto; }
  .featured-section h2 { font-size: 36px; }
  .about { padding: 60px 20px; padding-bottom: 220px; }
  .about-container { flex-direction: column; text-align: center; }
  .icon { padding: 0; margin-bottom: 20px; font-size: 100px; }
  .first-about { font-size: 36px; }
  .second-about { text-align: center; font-size: 16px; }
  .carousel-container { width: 100%; max-width: 100vw; overflow: hidden; padding: 20px 0; }
  .cert-track { width: 100%; }
  .cert-card { width: 75%; max-width: 300px; height: auto; aspect-ratio: 1 / 1.414; }
  .cert-card img { width: 100%; height: 100%; object-fit: contain !important; }
  .left-card { transform: translateX(-65%) scale(0.75) rotateY(35deg); opacity: 0.5; }
  .right-card { transform: translateX(65%) scale(0.75) rotateY(-35deg); opacity: 0.5; }
  .social-buttons { flex-wrap: wrap; }
  .cert-modal-close { top: 15px; right: 20px; font-size: 35px; }
  .floating-whatsapp { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 30px; }
  html[dir="rtl"] .floating-whatsapp { left: 20px; right: auto; }
  .who-we-are { padding: 60px 20px; margin-top: 10px; }
  .who-we-are-container { flex-direction: column; text-align: center; }
  .first-who { font-size: 36px; }
  .second-who { text-align: center; font-size: 16px; }
  #who-we-are { padding-top: 180px !important; padding-bottom: 180px !important; }
  .fruits-modal-options { flex-direction: column; }
  .fruit-type-card { padding: 20px; font-size: 20px; }
  .fruit-type-card i { font-size: 40px; }
  .clients-slider::before, .clients-slider::after { width: 60px; }
  .client-logo { width: 150px; padding: 0 15px; }
  .clients-slide-track { width: calc(150px * 10); }

  @keyframes scrollClients { 100% { transform: translateX(calc(-150px * 5)); } }
  @keyframes scrollClientsRTL { 100% { transform: translateX(calc(150px * 5)); } }
}