:root {
  --color-white: #ffffff;
  --color-blue: #275e33c5;
  --color-blue-alt: #275e3375;
  /* --color-blue-alt: #cde1f8; */
  --color-black: #1e1e1e;
  --color-gray: #4e4e4e;
  --color-tometo: #f7af29;
  --color-green: #275e33c5;
  --text-color-main: #748182;
  --color-Secondary: #fff;
  --color-gray: #ffffff;

  --bg-body: #f5f5f5;
  --bg-footer: #275e33c5;

  --transition-03: 0.3s;
  --transition-04: 0.4s;
  --transition-05: 0.5s;
  --transition-1: 1s;

  --des-letter: 3;
  --dev-letter: 9;
  --fre-letter: 11;
  /* --pho-letter: 8; */
  --letters-typing-px: 24px;

  --dark-color-main: #1c1c1c;
  --dark-color-main-alt: #111;
  --light-color-main: #ffffff;
  --light-color-main-alt: #eee;

  --text-color-main: #748182;
  --color-Secondary: #fff;
  --color-gray: #ffffff;

  --heading-color-main: #343434;

  /*--bg-gray: #f7f7f7;*/

  --letter-daniels: 13;
  --letter-developer: 9;
  --letter-designer: 8;
  --letter-size: 2.1rem;
  --font-main: "Poppins", sans-serif;
  --font-Secondary: "Montserrat", sans-serif;
}

/* ?========= GLOBAL STYLES (All Pages) ========= */
/*?----------------- General --------------------------*/
body {
  background-color: white;
  color: var(--color-gray);
  /* font-family: cursive !important; */
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-black);
}
p {
  line-height: 1.6;
  font-family: var(--font-Secondary);
}
html {
  scroll-behavior: smooth;
}

.bg__image {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 1024px) {
  .bg__image {
    background-attachment: scroll;
  }
}
/* ---section overlay--- */
.overlay {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  opacity: 0.7;
}
/* ---section card icon--- */
.card__icon {
  height: 100px;
  width: 100px;
  font-size: 2rem;
  transition: all var(--transition-05) ease;
  -webkit-transition: all var(--transition-05) ease;
  -moz-transition: all var(--transition-05) ease;
  -ms-transition: all var(--transition-05) ease;
  -o-transition: all var(--transition-05) ease;
}
/* ---section title--- */
.section__title h2 {
  font-size: 3rem;
}
/* section title */
.section__title {
  margin-bottom: 80px;
}
.section__title h3 {
  font-weight: 900;
  font-size: 2.5rem;
  z-index: 4;
}
.section__title h3::after {
  position: absolute;
  content: "";
  /*background-image: url("../images/dots.webp");*/
  width: 100%;
  height: 30px;
  background-repeat: repeat;
  bottom: -10px;
  left: 0px;
  z-index: -1;
}

/* ---section subtitle--- */


.lead {
  font-weight: 300;
}
/* ^==================  START BUTTON TOP =============== */

/* ?========= BACK TO TOP BUTTON ========= */
.btn__top {
  opacity: 0;
  position: fixed;
  right: -50px;
  bottom: 3%;
  width: 35px;
  height: 35px;
  background-color: var(--color-green);
  z-index: 99;
  transition: opacity var(--transition-04), right var(--transition-03), transform var(--transition-04) ease-in-out;
  -webkit-transition: opacity var(--transition-04), right var(--transition-03), transform var(--transition-04) ease-in-out;
  -moz-transition: opacity var(--transition-04), right var(--transition-03), transform var(--transition-04) ease-in-out;
  -ms-transition: opacity var(--transition-04), right var(--transition-03), transform var(--transition-04) ease-in-out;
  -o-transition: opacity var(--transition-04), right var(--transition-03), transform var(--transition-04) ease-in-out;
}


/* ?========= BACK TO TOP BUTTON ========= */
.btn__top.show {
  opacity: 1;
  right: 2%;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: var(--bs-btn-active-color);
  background-color: #df940ad8;
  border-color: #ddd;
}

/* ?==================  START NAVBAR =============== */
nav
/* ?========= NAVBAR (All Pages) ========= */
.navbar {
  padding: 20px 0;
  transition: var(--transition-03);
  -webkit-transition: var(--transition-03);
  -moz-transition: var(--transition-03);
  -ms-transition: var(--transition-03);
  -o-transition: var(--transition-03);
}

nav.nav-scrolled {
  /*background: rgba(0, 0, 0, 0.9);*/
  background:#3A986C;
  padding: 12px 0;
}

nav .nav-item {
  padding: 10px 0 10px 30px;
}

nav .nav-link {
  color: var(--color-black);
  position: relative;
  font-weight: 600;
  text-wrap: nowrap;
}

nav .nav-link:hover,

/* ?========= NAVBAR (All Pages) ========= */
.navbar-nav .nav-link.active,

/* ?========= NAVBAR (All Pages) ========= */
.navbar-nav .nav-link.show {
  color: var(--color-green);
  /* background-color: #fff; */
}

nav .nav-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--color-white);
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.nav-icon {
  color: var(--color-white);
  font-size: 22px;
}

/*  navbar button toggler */

/* ?========= NAVBAR (All Pages) ========= */
.navbar 
/* ?========= NAVBAR (All Pages) ========= */
/*.navbar-toggler {
  border: none;
  position: relative;
  padding: 20px;
}*/
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 15px;
  position: relative;
  z-index: 1001;
}
.btn__menu__open,
.btn__menu__close {
  font-size: 30px;
  color: var(--color-white);
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.btn__menu__open:hover,
.btn__menu__close:hover {
  transform: scale(1.15);
}

/* ?========= NAVBAR (All Pages) ========= */
.navbar-toggler:focus {
  box-shadow: none;
}
.btn__menu__open,
.btn__menu__close {
  color: var(--color-white);
  transition: var(--transition-05);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: var(--transition-05);
  -moz-transition: var(--transition-05);
  -ms-transition: var(--transition-05);
  -o-transition: var(--transition-05);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

button[aria-expanded="false"] .btn__menu__open {
  visibility: visible;
  opacity: 1;
}
button[aria-expanded="false"] .btn__menu__close {
  visibility: hidden;
  opacity: 0;
}

button[aria-expanded="true"] .btn__menu__open {
  visibility: hidden;
  opacity: 0;
}
button[aria-expanded="true"] .btn__menu__close {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 992px) {
  nav .nav-link:hover::before,
  nav .nav-link:focus,
  
/* ?========= NAVBAR (All Pages) ========= */
.navbar .active:before {
    visibility: visible;
    width: 80%;
  }

  nav .nav-link {
    color: var(--color-white);
  }

  nav .nav-link:hover,
  
/* ?========= NAVBAR (All Pages) ========= */
.navbar-nav .nav-link.active,
  
/* ?========= NAVBAR (All Pages) ========= */
.navbar-nav .nav-link.show {
    color: var(--color-white);
  }
}

@media screen and (max-width: 992px) {
  nav:has(
/* ?========= NAVBAR (All Pages) ========= */
.navbar-collapse.show) {
    background: #4e4e4ee6;
    height: 100vh;
    display: flex;
    align-items: flex-start;
  }
  nav 
/* ?========= NAVBAR (All Pages) ========= */
.navbar-collapse {
    background-color: var(--color-white);
  }
}
/* تحكّم في ارتفاع النافبار */
.navbar {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  min-height: 40px; /* تمنع التمدد المبالغ فيه */
}

/* نمنع تمدد اللوجو داخليًا */
.navbar-brand img {
  max-height: 70px;
  height: auto;
  display: block;
  padding: 0;
  margin: 0;
}
.nav-pills .nav-link {
  background-color: #3A986C;
  color: #fff;
  margin: 0 5px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.nav-pills .nav-link.active {
  background-color: #2e7c56 !important;
}
.nav-pills .nav-link.active {
  background-color: #3A986C;
  /*لونكالليقولتعليه*/color: white;
  font-weight: bold;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
/* شكل الصورة البيضاوي */
.leaf-shape {
  width: 300px;
  height: 250px;
  border-radius: 0% 59% 22% 63% / 26% 100% 0% 73%;
  border: 0.5px solid #3A986C;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  -webkit-border-radius: 0% 59% 22% 63% / 26% 100% 0% 73%;
  -moz-border-radius: 0% 59% 22% 63% / 26% 100% 0% 73%;
  -ms-border-radius: 0% 59% 22% 63% / 26% 100% 0% 73%;
  -o-border-radius: 0% 59% 22% 63% / 26% 100% 0% 73%;
}
.leaf-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}
.leaf-shape:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/* تنسيق الهيدر */
.product-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

/* تنسيق العنوان */
h5.product-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0;
  white-space: nowrap;
}

/* تنسيق وصف المنتج */
.product-desc {
  font-size: 1rem;
  margin-top: 0.6rem;
  line-height: 1.6;
  color: #555;
}

/* تنسيق الكارت نفسه */
.product-card {
  margin-bottom: 30px;
}

/* داخل الكارت */
.product-inner {
  /*border-bottom: 1px solid #ccc;*/
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

/* المسافات بين الأعمدة */
#productList .col-md-6 {
  padding-left: 10px;
  padding-right: 10px;
}

/* شاشة الموبايل */
@media (max-width: 767.98px) {
  .product-header {
    flex-direction: row;
    align-items: flex-start;
  }
  h5.product-title {
    font-size: 1.3rem;
  }
  .leaf-shape {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767.98px) {
  .product-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  h5.product-title {
    font-size: 1.3rem;
  }

  .leaf-shape {
    width: 130px;
    height: 130px;
    border-radius: 0% 59% 22% 63% / 26% 100% 0% 73%;
    /*✅شكلالورقة*/overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    -webkit-border-radius:;
    -moz-border-radius:;
    -ms-border-radius:;
    -o-border-radius:;
}

  .leaf-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* ✅ تملأ الشكل تمامًا */
    display: block;
  }
}


/* تحريك التلوين من تحت لفوق */
@keyframes fillLogo {
  0% {
    mask-size: 100% 0%;
    -webkit-mask-size: 100% 0%;
  }
  100% {
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
  }
}

/*-----------------------Home section-------------------------*/
.layer {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.content1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../static/images/fruits\ bg.webp);
  background-size: cover;
}

.content2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../static/images/vecteezy_ai-generated-citrus-branches-with-organic-ripe-fresh-oranges_37488723.webp);
  background-size: cover;
  background-position: center;
}

/* ?========= HOME - VIDEO SECTION ========= */
section.home {
  height: 100vh;
}

.content1 {
  position: relative; /* لضبط النصوص فوق الفيديو */
  overflow: hidden; /* لمنع أي محتوى زائد خارج الحدود */
}


/* ?========= HOME - SLIDER COMMENTS ========= */
.comment h1 {
  opacity: 0%;
  color: #fff;
  font-size: 130px;
  font-weight: 600;
}

.comment p {
  opacity: 0%;
  font-size: 28px;
}
@media (max-width: 767.98px) {
  .comment {
    overflow-x: auto; /* لو الكلام أكبر من الشاشة يسمح بالتمرير */
  }

  .comment h1 {
    font-size: 42px;   /* ✅ مناسب للموبايل */
    white-space: nowrap; /* ✅ يمنع النزول لسطر جديد */
  }

  .comment p {
    font-size: 16px;
    white-space: nowrap;
  }
}

/* 
.comment button
{
    opacity: 0%;
    font-size: 16px;
    font-weight: 600;
    color: white;
} */
.active .carousel-caption 
/* ?========= HOME - SLIDER COMMENTS ========= */
.comment h1,
.comment p,
.comment h5 {
  opacity: 0;
  transform: scale(0.8);
  animation-name: fadeInZoom;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
}

/* ترتيب الظهور */
.comment h1 {
  animation-delay: .2s;
}

.comment p {
  animation-delay: .5s;
}

.comment h5 {
  animation-delay: 1.2s;
}

/* Keyframes */
@keyframes fadeInZoom {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media screen and (max-width: 600px) {
  .carousel-inner h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 600px) {
  .bg-about {
    width: 100%;
  }
}

/* ?==================  START ABOUT =============== */

/* ?==================  START ABOUT =============== */

/* ?==================  START COUNTER =============== */

/* ?========= HOME - COUNTERS SECTION ========= */
.counters {
  background-image: url("../images/IMG_2953.webp");
  /*padding-block: 4rem;*/
  color: var(--color-white);
}

/* ?========= HOME - COUNTERS SECTION ========= */

/* ?========= HOME - COUNTERS SECTION ========= */
.counters .card__icon {
  box-shadow: 0 0 0 10px #f5f5f5e3;
  font-size: 1.5rem;
  width: 60px;
  height: 60px;
}
.we {
  color:#275e33c5 ;
  font-size: 40px;
}
/* ?==================  START WORK =============== */
/* ^----START MODAL---- */
/* ^----END MODAL---- */
/*.work .card:hover img {
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}*/
.image-fade-in,
.text-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  -webkit-transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  -ms-transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
}
@media screen and (max-width: 768px) {
  .slider__text {
    font-size: 1rem; /* يمكن تقليل حجم الخط للشاشات الصغيرة */
    width: 90%; /* تأكد من أن النص داخل حدود الشاشة */
  }
}
/* ?==================  START ABOUT =============== */
/* ?==================  START ABOUT =============== */
/* ?==================  START COUNTER =============== */
.counters {
background-image: url("../images/IMG_2953.webp");
padding-block: 8rem;
color: var(--color-white);
}
.counters .counters__card { background-color: rgba(255, 255, 255, 0.9); padding: 2rem 1rem; border-radius: 10px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; color: var(--color-black); -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px;
}
/*.counters .counters__card:hover {  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); -webkit-transform: translateY(-10px); -moz-transform: translateY(-10px); -ms-transform: translateY(-10px); -o-transform: translateY(-10px);
}*/
.counters .card__icon {
background-color: var(--color-green);
color: white;
box-shadow: 0 10px 20px rgba(39, 94, 51, 0.3);
font-size: 1.5rem;
width: 60px;
height: 60px;
}
.counter-num p {
font-weight: 700;
color: var(--color-black);
}
/* ?==================  START WORK =============== */
/* ^----START MODAL---- */
/* ^----END MODAL---- */
.image-fade-in,
.text-fade-in {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.5s ease-out, transform 0.5s ease-out;
-webkit-transition: opacity 0.5s ease-out, transform 0.5s ease-out;
-moz-transition: opacity 0.5s ease-out, transform 0.5s ease-out;
-ms-transition: opacity 0.5s ease-out, transform 0.5s ease-out;
-o-transition: opacity 0.5s ease-out, transform 0.5s ease-out;
-webkit-transform: translateY(30px);
-moz-transform: translateY(30px);
-ms-transform: translateY(30px);
-o-transform: translateY(30px);
}
@media screen and (max-width: 768px) {
.slider__text {
font-size: 1rem; /* يمكن تقليل حجم الخط للشاشات الصغيرة */
width: 90%; /* تأكد من أن النص داخل حدود الشاشة */
}
}
.testimonials {
/*background-image: url("../images/rm309-adj-05.webp");*/
background-size: cover; /* اجعل الصورة تغطي الخلفية بشكل جيد */
background-position: center;
padding-block: 4rem;
color: var(--color-white);
}
.image-fade-in,
.text-fade-in,
.counter-num {
will-change: transform, opacity;
}
/* ?================== START  TESTMONIALS =============== */
.testimonials {
/*background-image: url("../images/fruit_pattern_clean.webp");*/
padding-block: 2rem;
color: var(--color-white);
position: relative;
}
.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 270px;
  font-weight: 900;
  color: #3a986c0a;
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-main);
  max-width: 100vw; /* 👈 تمنع كسر حدود العرض */
  overflow: hidden; /* 👈 تمنع التسرب خارج العنصر */
}
@media (max-width: 768px) {
  .watermark {
    display: none;
  }
}




/* Modern Animation Classes */
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s ease, transform 0.8s ease;
-webkit-transition: opacity 0.8s ease, transform 0.8s ease;
-moz-transition: opacity 0.8s ease, transform 0.8s ease;
-ms-transition: opacity 0.8s ease, transform 0.8s ease;
-o-transition: opacity 0.8s ease, transform 0.8s ease;
-webkit-transform: translateY(20px);
-moz-transform: translateY(20px);
-ms-transform: translateY(20px);
-o-transform: translateY(20px);
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
}
.fade-in-left {
opacity: 0;
transform: translateX(-30px);
transition: opacity 0.8s ease, transform 0.8s ease;
-webkit-transition: opacity 0.8s ease, transform 0.8s ease;
-moz-transition: opacity 0.8s ease, transform 0.8s ease;
-ms-transition: opacity 0.8s ease, transform 0.8s ease;
-o-transition: opacity 0.8s ease, transform 0.8s ease;
-webkit-transform: translateX(-30px);
-moz-transform: translateX(-30px);
-ms-transform: translateX(-30px);
-o-transform: translateX(-30px);
}
.fade-in-left.visible {
opacity: 1;
transform: translateX(0);
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
}
/* Staggered animation delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
/* Legacy animation classes for backward compatibility */
.image-fade-in,
.text-fade-in {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease, transform 0.8s ease;
-webkit-transition: opacity 0.8s ease, transform 0.8s ease;
-moz-transition: opacity 0.8s ease, transform 0.8s ease;
-ms-transition: opacity 0.8s ease, transform 0.8s ease;
-o-transition: opacity 0.8s ease, transform 0.8s ease;
-webkit-transform: translateY(30px);
-moz-transform: translateY(30px);
-ms-transform: translateY(30px);
-o-transform: translateY(30px);
}
.visible {
opacity: 1;
transform: translateY(0);
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
}
/* تعديل النص لتناسب حجم الشاشة */
.slider__text {
font-size: 1.25rem;
font-weight: 300;
}


/* ?================== START  Collections =============== */
.work__overlay { background: rgba(39, 94, 51, 0.8); position: absolute; inset: 0px; opacity: 0; z-index: 3; transform: translateY(10px); transition: all 0.5s; -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; -webkit-transform: translateY(10px); -moz-transform: translateY(10px); -ms-transform: translateY(10px); -o-transform: translateY(10px); border-radius: 10px; -webkit-border-radius: 10px; -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px;
}
.works__box {
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
/*.works__box:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}*/
.works__box img {
transition: all 0.5s ease-in-out;
-webkit-transition: all 0.5s ease-in-out;
-moz-transition: all 0.5s ease-in-out;
-ms-transition: all 0.5s ease-in-out;
-o-transition: all 0.5s ease-in-out;
}
/*.works__box:hover img {
transform: scale(1.3);
-webkit-transform: scale(1.3);
-moz-transform: scale(1.3);
-ms-transform: scale(1.3);
-o-transform: scale(1.3);
}*/
/* تغيير لون الرابط عند التمرير فوق الصورة */
.works__box:hover .work__overlay a h6 {
color: #f7af29; /* تغيير اللون إلى برتقالي */
font-weight: bolder;
transition: color 0.3s ease; /* إضافة تأثير التحول لجعل اللون يتغير بشكل سلس */
}
/* تحديد اللون الافتراضي للرابط قبل التمرير */
.works__box .work__overlay a h6 {
color: white;
/*تأكدمنأناللونالافتراضيهوالأبيض*/transition: color 0.3s ease;
/* إضافة تأثير سلس لتغيير اللون */
-webkit-transition:;
-moz-transition:;
-ms-transition:;
-o-transition:;
}
.work__overlay h6 {
opacity: 0;
font-size: 1.5rem;
letter-spacing: 2px;
transform: translateY(-15px);
transition: all 0.5s;
color: #eee;
-webkit-transition:;
-moz-transition:;
-ms-transition:;
-o-transition:;
-webkit-transform: translateY(-15px);
-moz-transform: translateY(-15px);
-ms-transform: translateY(-15px);
-o-transform: translateY(-15px);
}
.works__box:hover .work__overlay,
.works__box:hover .work__overlay h6 {
opacity: 1;
transform: translateY(0);
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
}
.my-collection img {
aspect-ratio: 4 / 3;
}
.works {
background-color: #f7f7f7;
}
/* ?================== START  BLOG =============== */
/* ?================== START  PRODUCTS =============== */

.bgOfPage h2 {
color: #ffffff;
font-size: 60px;
font-weight: bolder;
}
.bgOfPage {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url("../images/pages bg.webp");
background-size: cover;      /* الصورة تظهر كاملة */
  background-repeat: no-repeat;  /* ما تتكررش */
  background-position: center;   /* تتوسّط العنصر */
  height: 100vh;
}

@media (max-width: 768px) {
  .bgOfPage {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: scroll;
    height: auto;
    padding: 80px 20px;
  }
}


.bgOfPage h2 {
  color: #ffffff;
  font-size: 60px;
  font-weight: bolder;
}

/* ✅ ميديا كويري للموبايلات */
@media (max-width: 768px) {
  .bgOfPage {
    background-attachment: scroll; /* على الموبايل fixed ساعات بتبوظ */
    background-position: center top;
    height: auto;
    padding: 80px 20px;
  }

  .bgOfPage h2 {
    font-size: 32px;
  }
}

.products h1 {
color: #333333;
position: relative;
}
.Ornage .my-accordin h1::after {
content: "";
display: inline-block;
width: 50px;
height: 50px;
background-image: url("../images/orange_11974688.webp");
background-size: contain;
background-repeat: no-repeat;
position: absolute;
margin-left: 10px;
}
.Grapefruit .my-accordin h1::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url("../images/grapefruit_3523482.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  margin-left: 10px;
}
.Dates .my-accordin h1::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url("../images/datess.webp"); /* تأكد إن الصورة موجودة */
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  margin-left: 10px;
}

.Mandarin .my-accordin h1::after {
content: "";
display: inline-block;
width: 50px;
height: 50px;
background-image: url("../images/mandarin_1704398.webp");
background-size: contain;
background-repeat: no-repeat;
position: absolute;
margin-left: 10px;
}
.Grapes .my-accordin h1::after {
content: "";
display: inline-block;
width: 50px;
height: 50px;
background-image: url("../images/fruit_15613022.webp");
background-size: contain;
background-repeat: no-repeat;
position: absolute;
margin-left: 10px;
}
td img {
height: 20px;
width: 20px;
}
.ornage-accbtn {
--bs-accordion-btn-bg: #3A986C;
--bs-accordion-active-bg: #ff8f33;
}
.grapefruit-accbtn {
--bs-accordion-btn-bg: #3A986C;
--bs-accordion-active-bg: #EE6161; 
}
.flame-accbtn {
--bs-accordion-btn-bg:#3A986C;
--bs-accordion-active-bg: #C23F48;   
}
.dates-accbtn {
--bs-accordion-btn-bg:#3A986C;
--bs-accordion-active-bg: #ffc400;  
}
.madjool-accbtn {
--bs-accordion-btn-bg:#3A986C;
--bs-accordion-active-bg: #94553C;   
}
.mind-accbtn {
--bs-accordion-btn-bg:#3A986C;
--bs-accordion-active-bg: #ff8f33;
}
.grape-accbtn button {
--bs-accordion-btn-bg:#3A986C;
--bs-accordion-active-bg: #6e54a3;
}
.product-accbtn {
--bs-accordion-btn-bg:#3A986C;
--bs-accordion-active-bg:#3A986C;
}
.contact-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/phone-4974179_1920.webp);
  background-size: cover;          /* ✅ الصورة بالكامل */
  background-repeat: no-repeat;      /* ❌ ما تتكررش */
  background-position: center center;/* ✅ تتوسّط */
  background-attachment: fixed;      /* 📌 للخلفية الثابتة */
  background-color: #000;            /* لون احتياطي لو الصورة مش ظهرت */
  min-height: 100vh;                 /* ✅ تملأ الشاشة بالكامل */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* تأثير التحديد */
/* تأثير الكلاس highlight */
/* تأثير لتوضيح التمرير */
.products {
margin-bottom: 50px;
}
@keyframes pulse {
0% {
transform: scale(1);
-webkit-transform:;
-moz-transform:;
-ms-transform:;
-o-transform:;
}
50% {
transform: scale(1.1);
-webkit-transform:;
-moz-transform:;
-ms-transform:;
-o-transform:;
}
100% {
transform: scale(1);
-webkit-transform:;
-moz-transform:;
-ms-transform:;
-o-transform:;
}
}
.fruit-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.fruit-img:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.availability-table tbody tr:hover {
  background-color: #f1fdf3;
  transition: background-color 0.3s ease;
}

@media (max-width: 767.98px) {
/* الصور والبادجات الافتراضية - للكمبيوتر */
.fruit-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.table-responsive {
  position: relative;
  overflow-x: scroll; /* بدل auto */
  scroll-behavior: smooth;
  scrollbar-width: thin; /* لمتصفح Firefox */
  scrollbar-color: #3A986C #f1f1f1;
}

/* ✅ لجعل شريط التمرير دائم الظهور في WebKit browsers (Chrome, Safari) */
.table-responsive::-webkit-scrollbar {
  height: 10px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #3A986C;
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #2c7d57;
}


.fruit-img:hover {
  transform: scale(1.2);
}

.availability-table tbody tr:hover {
  background-color: #f1fdf3;
  transition: background-color 0.3s ease;
}

/* استجابة الموبايل فقط */
@media (max-width: 768px) {
  .availability-table {
    font-size: 10px;
  }

  .availability-table th,
  .availability-table td {
    font-size: 10px;
    padding: 2px 4px;
    white-space: nowrap;
  }

  .fruit-img {
    width: 16px;
    height: 16px;
  }

  .availability-table .badge {
    font-size: 9px;
    padding: 2px 5px;
  }
}

}

/* ?================== START  CONTACT =============== */
.contact {
background-image: url("../imgs/Background//overlay-bg.webp");
box-shadow: 0 13px 8px -10px rgba(0, 0, 0, 0.1);
}
.sub-about i {
color: #111;
}
.bg-about {
background-color: rgba(95, 61, 61, 0.7) !important;
}
/* ?================== START  FOOTER =============== */
.footer {
background-color:#3A986C;
color: var(--color-white);
padding: 2rem 0 1.5rem;
position: relative;
}
/*.footer-content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 2rem;
}*/
/*.footer-section {
flex: 1;
min-width: 250px;
margin-bottom: 1.5rem;
padding: 0 1rem;
}*/
.footer-section h4 {
color: var(--color-white);
font-size: 1.2rem;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 0.5rem;
}
.footer-section h4::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 2px;
background-color: var(--color-tometo);
color: var(--color-tometo);
}
.footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links li {
margin-bottom: 0.8rem;
}
.footer-links a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: all 0.3s ease; display: inline-block; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease; -ms-transition: all 0.3s ease; -o-transition: all 0.3s ease;
}
.footer-links a:hover { color: var(--color-tometo); transform: translateX(5px); -webkit-transform: translateX(5px); -moz-transform: translateX(5px); -ms-transform: translateX(5px); -o-transform: translateX(5px);
}
.social-icons {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
.social-icons a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
color: var(--color-white);
transition: all 0.3s ease;
}
.social-icons a:hover {
background-color: var(--color-tometo);
transform: translateY(-3px);
}
.conact_info a:hover {
  color: var(--color-tometo);
}
.copyright__box {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 1.5rem;
text-align: center;
}
.copyright {
color: rgba(255, 255, 255, 0.7);
font-size: 0.9rem;
}
@media (max-width: 992px) {
.footer-content {
flex-direction: column;
}
.footer-section {
margin-bottom: 2rem;
}
}
.footer-links a:hover {
  color: #ffc107;
  transform: translateX(5px);
}

.social-icons a:hover {
  background-color: #ffc107;
  transform: translateY(-3px);
}

.conact_info a:hover {
  color: #ffc107;
}
.footer {
  background-color: #3A986C;
  color: var(--color-white);
  font-family: var(--font-Secondary); /* توحيد نوع الخط */
  font-size: 14px; /* حجم خط موحد لكل الفوتر */
  line-height: 1.7;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  color: #fff;
}

.footer p,
.footer a,
.footer li {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.footer a:hover {
  color: #f7af29;
}

.footer .footer-section {
  text-align: left;
}

.footer .footer-section.text-center {
  text-align: center;
}

.footer .social-icon i {
  transition: transform 0.3s ease;
}

.footer .social-icon:hover i {
  color: #f7af29;
  transform: scale(1.2);
}

.footer .footer-links li {
  margin-bottom: 0.6rem;
}

.footer .copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}


/* !================== START  PORTFOLIO DETAILS PAGE ================= */
/* ?================== START  HERO SECTION =============== */
/* ?================== START  START PORTFOLIO-Details=============== */
.my-text {
color: #423c59;
}
.my-bg {
background-image: url("../images/IMG_2863.webp");
height: 800px;
}
.layer {
background-color: rgba(0, 0, 0, 0.3);
position: absolute;
inset: 0;
}
.layer h3 {
color: #fff;
text-align: center;
font-size: 50px;
}

h6,
p {
padding-left: 15px;
padding-top: 15px;
font-weight: bolder;
}
.since {
color: var(--bg-footer) !important;
}
.since p {
animation-duration: 3s;
animation-name: slide-out;
}
.since h3 {
animation-duration: 2s;
animation-name: slide-in;
}
.my-logo {
animation-name: slide-down;
animation-duration: 2s;
}
@keyframes slide-in {
from {
translate: 150vw 0;
scale: 200% 1;
}
to {
translate: 0 0;
scale: 100% 1;
}
}
@keyframes slide-out {
from {
translate: -150vw 0;
scale: 200% 1;
}
to {
translate: 0 0;
scale: 100% 1;
}
}
@keyframes slide-down {
from {
transform: translateY(-150%);
scale: 200% 1;
-webkit-transform:;
-moz-transform:;
-ms-transform:;
-o-transform:;
}
to {
transform: translateY(0%);
scale: 100% 1;
-webkit-transform:;
-moz-transform:;
-ms-transform:;
-o-transform:;
}
}
/* ?================== START   Contact Us =============== */

/*.form-btn {
background-color: #275e33c5 !important;
}*/
/*.contact-form {
position: absolute;
right: 5%;
top: 50%;
transform: translateY(-50%);
background-color: rgba(255, 255, 255, 0.9);
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
width: 300px;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
-ms-border-radius: 8px;
-o-border-radius: 8px;
}*/
/*.contact-form h3 {
text-align: center;
margin-bottom: 20px;
}
.contact-form .form-group {
margin-bottom: 15px;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
width: 100%;
padding: 10px;
border-radius: 5px;
border: 1px solid #ddd;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
.contact-form button {
width: 100%;
padding: 10px;
background-color: #007bff;
border: none;
color: white;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
.contact-form button:hover {
background-color: #0056b3;
}*/
.about-title h2 {
color: #1c1c1c;
font-size: 50px;
}
.section__title h2 {
color: #275e33;
font-size: 50px;
}
/*Start About*/
      /* Custom styles for the About page */
      .about-section {
        padding: 6rem 0;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, rgba(247, 247, 247, 0.8), rgba(255, 255, 255, 0.9));
      }
      
      /* Modern circular decorations */
      .circle-decoration {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(39, 94, 51, 0.05), transparent);
        z-index: 0;
      }
      
      .circle-1 {
        width: 400px;
        height: 400px;
        top: 10%;
        left: -100px;
      }
      
      .circle-2 {
        width: 300px;
        height: 300px;
        bottom: 20%;
        right: -50px;
      }
      
      /* 3D Vertical Line with animated dot */
      .vertical-line {
        position: absolute;
        top: 0;
        left: 50%;
        width: 6px;
        height: 100%;
        background: linear-gradient(to right, rgba(39, 94, 51, 0.2), rgba(39, 94, 51, 0.8), rgba(39, 94, 51, 0.2));
        transform: translateX(-50%);
        box-shadow: 0 0 15px rgba(39, 94, 51, 0.3);
        z-index: 1;
        overflow: hidden;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
}
      
      .vertical-line::after {
        content: "";
        position: absolute;
        width: 12px;
        height: 12px;
        background: #f7af29;
        border-radius: 50%;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 0 10px rgba(247, 175, 41, 0.8);
        animation: dot-travel 8s infinite ease-in-out;
        -webkit-animation: dot-travel 8s infinite ease-in-out;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
}
      
      @keyframes dot-travel {
        0% { top: -10px; }
        50% { top: 100%; }
        50.1% { top: -10px; }
        100% { top: -10px; }
      }
      
      /* Content blocks */
      .about-block {
        padding: 3rem 0;
        position: relative;
      }
      
      .about-title {
        font-weight: 700;
        color: #275e33;
        margin-bottom: 1.5rem;
        position: relative;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -moz-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -ms-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -o-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
      
      .about-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(to right, #275e33, #f7af29);
        transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -webkit-transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -moz-transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -ms-transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -o-transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
      
      .about-right .about-title::after {
        left: auto;
        right: 0;
        background: linear-gradient(to left, #275e33, #f7af29);
      }
      
      .about-content {
        background: white;
        padding: 2.5rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        z-index: 2;
        border-top: 3px solid transparent;
        overflow: hidden;
        -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -moz-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -ms-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        -o-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
      
      .about-content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(to right, #275e33, #f7af29);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
        -webkit-transition: transform 0.5s ease;
        -moz-transition: transform 0.5s ease;
        -ms-transition: transform 0.5s ease;
        -o-transition: transform 0.5s ease;
        -webkit-transform: scaleX(0);
        -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
        -o-transform: scaleX(0);
}
      
      .about-right .about-content::before {
        transform-origin: right;
        background: linear-gradient(to left, #275e33, #f7af29);
      }
      
      .about-content:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
}
      
      .about-content:hover::before {
        transform: scaleX(1);
        -webkit-transform: scaleX(1);
        -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
        -o-transform: scaleX(1);
}
      
      .about-content:hover .about-title::after {
        width: 100px;
      }
      
      .about-content p {
        line-height: 1.8;
        color: #555;
        font-size: 1.05rem;
      }
      
      /* Enhanced header section */
      .products {
        position: relative;
        overflow: hidden;
      }
      
      .bgOfPage {
        height: 300px;
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden;
      }
      
      .bgOfPage h2 {
        color: white;
        font-size: 3.5rem;
        font-weight: 800;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: 2;
      }
      
      /* Responsive adjustments */
      @media (max-width: 768px) {
        .vertical-line {
          left: 30px;
        }
        
        .about-right .about-title::after {
          left: 0;
          right: auto;
          background: linear-gradient(to right, #275e33, #f7af29);
        }
        
        .about-content {
          margin-bottom: 2rem;
          padding: 2rem;
        }
        
        .about-title {
          font-size: 1.5rem;
        }
        
        .bgOfPage h2 {
          font-size: 2.5rem;
        }
      }
.bold_text {
  font-size: 16px;
  font-weight: bolder;
  color: #275E33;
}

.form-btn {
background-color: #3A986C !important;
}
.contact-form {
position: absolute;
right: 5%;
top: 50%;
transform: translateY(-50%);
background-color: rgba(255, 255, 255, 0.9);
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
width: 300px;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
-ms-border-radius: 8px;
-o-border-radius: 8px;
}
.contact-form h3 {
text-align: center;
margin-bottom: 20px;
}
.contact-form .form-group {
margin-bottom: 15px;
}
.contact-form .form-group input,
.contact-form .form-group textarea {
width: 100%;
padding: 10px;
border-radius: 5px;
border: 1px solid #ddd;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
.contact-form button {
width: 100%;
padding: 10px;
background-color: #007bff;
border: none;
color: white;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-ms-border-radius: 5px;
-o-border-radius: 5px;
}
.contact-form button:hover {
background-color: #0056b3;
}
.video-section .ratio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.animated-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideIn 1s ease-out forwards;
  -webkit-animation:;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
}

#hero-title {
  animation-delay: .2s;
}

#hero-subtitle {
  animation-delay: .5s;
}

.animated-slogan {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideIn 1s ease-out forwards;
  animation-delay: 1.2s;
  -webkit-animation:;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}
}
.carousel-caption .comment {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: white;
  text-align: center;
  -webkit-transform:;
  -moz-transform:;
  -ms-transform:;
  -o-transform:;
}

@keyframes alhanaa-scroll {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}
  100% {
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
}
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
}

.certificate {
  /*background: white;
  */border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  -webkit-border-radius:;
  -moz-border-radius:;
  -ms-border-radius:;
  -o-border-radius:;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.certificate img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.certificate:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.certificates-grid .certificate {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

.certificates-grid .certificate img {
  display: block;
  max-width: 100%;
  height: auto;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  object-fit: fill;
}
.certificates-grid .certificate {
  max-height: none;
  overflow: visible;
}


.product-slider {
  overflow-x: hidden; /* نخفي السكروول تمامًا */
  position: relative;
}

/* إخفاء السكروول من كل المتصفحات */
.product-slider::-webkit-scrollbar {
  display: none;
}
.product-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.certificates-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.certificate {
  width: 220px;
  /*حجمثابتلكلشهادة*/height: 160px;
  /*background-color: #fff;*/
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.certificate img {
  width: 100%;
  height: 100%;
  object-fit: fill; /* يجعل كل الصور تتساوى */
  display: block;
}
.list-unstyled i:hover {
   color: #FFD700; /* اللون الأصفر عند الهوفر */
  transform: scale(1.05); 
}
   /*.timeline-section {
      padding: 70px 0;
    }

    .timeline-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: black;
    }

    .timeline {
      position: relative;
    }

    .timeline::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      background-color: #3A986C;
      z-index: 1;
    }

    .timeline-item {
      position: relative;
      margin: 100px 0;
      z-index: 2;
      opacity: 0;
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .timeline-item.active {
      opacity: 1;
      transform: translateY(0);
    }

    .timeline-item.show-now {
      opacity: 1 !important;
      transform: none !important;
    }

    .timeline-item::after {
      content: '';
      position: absolute;
      width: 24px;
      height: 24px;
      background-color: white;
      border: 5px solid #ccc;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 50%;
      z-index: 3;
      transition: border-color 0.5s ease;
    }

    .timeline-item.active::after,
    .timeline-item.show-now::after {
      border-color: #3A986C;
    }

    .timeline-content {
      background: #fff;
      padding: 35px;
      border-radius: 12px;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
      max-width: 90%;
    }

    .timeline-content img {
      max-width: 130px;
      margin-bottom: 20px;
    }

    .timeline-content h4 {
      font-size: 1.7rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .timeline-content p {
      font-size: 1.15rem;
      line-height: 1.8;
      color: #333;
    }

    @media (max-width: 768px) {
      .timeline::before {
        left: 8px;
      }

      .timeline-item::after {
        left: 8px;
        transform: none;
      }

      .timeline-content {
        max-width: 100%;
      }
    }
    */
    .timeline-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.timeline {
  position: relative;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: #3A986C;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-item .timeline-content {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 460px;
  transition: transform 0.4s ease;
}

.timeline-item.left .timeline-content {
  margin-right: auto;
}

.timeline-item.right .timeline-content {
  margin-left: auto;
}

.timeline-content img {
  max-width: 80px;
  margin-bottom: 15px;
}

.timeline-content h4 {
  font-size: 20px;
  color: #3A986C;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* دائرة صغيرة في المنتصف */
.timeline-item::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #3A986C;
  border: 4px solid #fff;
  border-radius: 50%;
  z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .timeline::before {
    display: none; /* ✅ إخفاء الخط */
  }

  .timeline-item::before {
    display: none; /* ✅ إخفاء الدائرة */
  }

  .timeline-item .timeline-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .timeline-content {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .timeline::before {
    display: none;
  }

  .timeline-item::before {
    content: none !important;  /* ✅ يمنع إنشاء الدائرة */
    display: none !important;  /* أو تأكيد الإخفاء */
  }
}
@media (max-width: 767.98px) {
  .vertical-line {
    display: none !important;
  }
}

/* هوفر مشترك للأيقونة والنص */
.subabout-item a,
.subabout-item i {
  transition: all 0.3s ease;
}

.subabout-item div:hover a {
  color: var(--color-tometo) !important;
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
}

.subabout-item div:hover i {
  color: var(--color-tometo) !important;
  transform: scale(1.2);
}

.subabout-item i.fa-phone {
  color: white !important;
}
.certificates-grid-wrapper,
.fruit-slider-section {
  background-color: #fff !important;
}
.table-responsive-mobile {
  overflow-x: auto;
  width: 100%;
}

@media (max-width: 768px) {
  .table-responsive-mobile table {
    font-size: 12px;
  }

  .table-responsive-mobile table td img,
  .table-responsive-mobile table th img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .table-responsive-mobile table th,
  .table-responsive-mobile table td {
    padding: 4px;
    white-space: nowrap;
  }
}
/* Tablet */
/* ==========================
   🌐 Tablet Styles (768px – 1024px)
   ========================== */

@media screen and (min-width: 768px) and (max-width: 1024px) {

  /* ======= General ======= */
  body {
    font-size: 15px;
    line-height: 1.7;
  }

  h1, h2, h3 {
    font-size: 1.8rem;
    text-align: center;
  }

  p {
    font-size: 1rem;
    text-align: justify;
  }

  .section__title h2,
  .section__title h3 {
    font-size: 2.2rem;
    text-align: center;
  }

  /* ======= Navbar ======= */
  nav .nav-item {
    padding-left: 15px;
    padding-right: 15px;
  }

  nav .nav-link {
    font-size: 1rem;
  }

  .navbar-brand img {
    max-height: 60px;
  }

  /* ======= Hero Section ======= */
  .bgOfPage h2 {
    font-size: 2.8rem;
  }

  section.home {
    height: auto;
    padding: 60px 0;
  }

  /* ======= Product Section ======= */
  .product-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  h5.product-title {
    font-size: 1.5rem;
  }

  .product-desc {
    font-size: 1rem;
  }

  .leaf-shape {
    width: 160px;
    height: 140px;
    margin-bottom: 15px;
  }

  .product-card {
    margin-bottom: 40px;
  }

  #productList .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px;
  }

  /* ======= About Section ======= */
  .about-content {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .vertical-line {
    left: 30px;
  }

  /* ======= Testimonials ======= */
  .testimonials {
    padding: 3rem 1rem;
  }

  /* ======= Footer ======= */
  .footer-section h4 {
    font-size: 1.1rem;
    text-align: center;
  }

  .footer-links li {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  /* ======= Buttons & Forms ======= */
  .btn__top {
    right: 10px;
    bottom: 5%;
  }

  .contact-form {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    padding: 20px;
    box-shadow: none;
  }

  /* ======= Animations ======= */
  .animated-text {
    font-size: 1rem;
  }

  /* ======= Slider Adjustments ======= */
  .slider__text {
    font-size: 1.1rem;
    width: 90%;
    margin: auto;
  }
}
/* ==========================
   🌐 Tablet Styles (768px – 1024px)
   ========================== */

@media screen and (min-width: 768px) and (max-width: 1024px) {

  /* ======= General ======= */
  body {
    font-size: 15px;
    line-height: 1.7;
  }

  h1, h2, h3 {
    font-size: 1.8rem;
    text-align: center;
  }

  p {
    font-size: 1rem;
    text-align: justify;
  }

  .section__title h2,
  .section__title h3 {
    font-size: 2.2rem;
    text-align: center;
  }

  /* ======= Navbar ======= */
  nav .nav-item {
    padding-left: 15px;
    padding-right: 15px;
  }

  nav .nav-link {
    font-size: 1rem;
  }

  .navbar-brand img {
    max-height: 60px;
  }

  /* ======= Hero Section ======= */
  .bgOfPage h2 {
    font-size: 2.8rem;
  }

  section.home {
    height: auto;
    padding: 60px 0;
  }

  /* ======= Product Section ======= */
  .product-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  h5.product-title {
    font-size: 1.5rem;
  }

  .product-desc {
    font-size: 1rem;
  }

  .leaf-shape {
    width: 160px;
    height: 140px;
    margin-bottom: 15px;
  }

  .product-card {
    margin-bottom: 40px;
  }

  #productList .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px;
  }

  /* ======= About Section ======= */
  .about-content {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .vertical-line {
    left: 30px;
  }

  /* ======= Testimonials ======= */
  .testimonials {
    padding: 3rem 1rem;
  }

  /* ======= Footer ======= */
  .footer-section h4 {
    font-size: 1.1rem;
    text-align: center;
  }

  .footer-links li {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  /* ======= Buttons & Forms ======= */
  .btn__top {
    right: 10px;
    bottom: 5%;
  }

  .contact-form {
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    padding: 20px;
    box-shadow: none;
  }

  /* ======= Animations ======= */
  .animated-text {
    font-size: 1rem;
  }

  /* ======= Slider Adjustments ======= */
  .slider__text {
    font-size: 1.1rem;
    width: 90%;
    margin: auto;
  }
}

/* ==========================
   🎯 Slider Headings (All Screens)
   ========================== */

.comment h1,
.comment p,
.comment h5 {
  font-family: sans-serif;
  text-transform: none;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* حجم كبير للـ Laptop والشاشات الكبيرة */
@media screen and (min-width: 1025px) {
  .comment h1 {
    font-size: 6rem;
  }

  .comment p {
    font-size: 2.5rem;
  }

  .comment h5 {
    font-size: 1.6rem;
  }
}

/* حجم متوسط للتابلت */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .comment h1 {
    font-size: 4.5rem;
  }

  .comment p {
    font-size: 1.5rem;
    text-align: center;
  }

  .comment h5 {
    font-size: 1.3rem;
  }
}

/* حجم أصغر للموبايل */
@media screen and (max-width: 767.98px) {
  .comment h1 {
    font-size: 2.5rem;
  }

  .comment p {
    font-size: 1.2rem;
  }

  .comment h5 {
    font-size: 1rem;
  }
}

.certificate-box {
  width: 100px;
  height: 140px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.certificate-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
  
.product-dropdown {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

#productFilter {
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid #e0cda9;
  border-radius: 12px;
  background-color: #fffdf7;
  color: #444;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  appearance: none;
  cursor: pointer;
  outline: none;
}

#productFilter:hover,
#productFilter:focus {
  border-color: #f7af29;
  background-color: #fffbea;
  color: #000;
}
.product-timeline {
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.product-timeline strong {
  font-weight: 600;
  font-size: 1rem;
  color: #3A986C;
}

.product-timeline .badge {
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 50px;
}

.product-timeline .bg-success {
  background-color: #3A986C !important;
}

.product-timeline .bg-secondary {
  background-color: #d4d4d4 !important;
  color: #333;
}
/* فقط نصوص المحتوى داخل الصفحة بدون البنر والفوتر */
.about-story,
.about-story p,
.about-section,
.about-section p,
.video-section,
.video-section p,
section:not(.footer):not(.bgOfPage) p,
section:not(.footer):not(.bgOfPage) h3,
section:not(.footer):not(.bgOfPage) li {
  color: #222 !important;
}
.about-title i,
.video-section i {
  color: #3A986C !important;
}
#hero-subtitle {
  color: #fff !important;
}
.bgOfPage {
  width: 100vw; /* عرض كامل */
  min-height: 40vh; /* أو أي ارتفاع مناسب */
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url("../images/pages bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 60px 20px;
}
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
