* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  box-shadow: none;
}

html {
  scroll-behavior: auto !important;
}

:root{
  --dot: 16px;         
  --line: 3px;          
  --gap: 2rem;         
  --space: 1rem;       
}

p{
font-size: 16px;
line-height: 24px;
color: #2b2b2b;
font-weight: 300;
font-family: "Poppins";
text-align: center;
}

a{
  text-decoration: none !important;
}

img{
  max-width: 100%;
}

.heading{
font-size: 70px;
color: #2b2b2b;
font-weight: 400;
font-family: "Leckerli One";
text-align: center;
margin: 1rem 0 2rem 0;
}

.subheading{
font-size: 24px;
line-height: 30px;
color: #2b2b2b;
font-weight: 400;
font-family: "Leckerli One";
text-align: center;
}

.heading-poppins{
font-size: 20px;
color: #355435;
font-weight: 300;
font-family: "Poppins";
text-align: center;
}

.primary-btn{
  display: inline-flex;
  align-items: center;
  background-color: #5ca904;
  border: none;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

.primary-btn a span{
  font-size: 16px;
  color: #fff;
}

.primary-btn img{
  margin-left: 0.5rem;
  width: auto !important;
  height: auto !important;
}

.section-margin{
  margin: 5rem 0;
}

.heading-img{
  margin: 0 auto;
  padding: 0 1rem;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heading-img img{
  position: relative;
  width: 60px;
  height: 80px;
}

.heading-img span{
  position: absolute;
}

/* Navbar */
.navbar {
  height: 140px;
  position: sticky !important;
  top: 0;
  background-color: #fff;
  z-index: 1000 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar .container{
    display: flex;
    flex-wrap: inherit;
    align-items: flex-end !important;
    justify-content: space-between;
}

.logo-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2; 
}

.logo-circle {
  width: 250px;
  height: 160px;
  background-color: white;
  box-shadow: 0 6px 8px -8px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  position: absolute;
  top: 10px; 
  z-index: 1; 
}

.logo-img {
  width: 150px;
  position: relative;
  z-index: 2;
}



.logo {
  width: 100px;
  height: 100px;
}

.logo-text {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}

.sidebar-toggle i,
.icon-mail i {
  color: #5ca904;
  font-size: 20px;
  cursor: pointer;
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: -300px; /* hidden by default */
  top: 0;
  width: 300px;
  height: 100vh;
  background-color: white;
  transition: left 0.3s ease-in-out;
  z-index: 1000;
}

.sidebar.show {
  left: 0; 
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}

.sidebar-header img{
  width: 100px;
  height: 80px;
}

.menu-container .menu{
  list-style: none;
  padding: 0 2rem;
}

.menu-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding: 1rem 0;
}

.menu-link a {
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  padding-right: 25px;
}

.menu .submenu{
  display: none;
  list-style: none;
  padding-left: 2rem;
}

.menu a, .submenu a{
 font-size: 16px;
  line-height: 30px;
  color: #2b2b2b;
  font-weight: 300;
  font-family: "Poppins";
  text-align: center;
}

.toggle-icon {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-link.active span a{
  color: #5ca904 !important;
}

.menu-link.active .toggle-icon {
  transform: rotate(180deg);
}

.menu-link.active .submenu {
  display: block;
border-bottom: 1px solid rgba(0, 0, 0, .1);
}


.sidebar-links li {
  margin: 20px 0;
}
.sidebar-links a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
}

.close-btn {
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

/* Sidebar overlay style */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); 
  z-index: 998;
  display: none;
}

.sidebar-overlay.show {
  display: block;
}



/* Slide base styles */
.slick-slide img{
  background-size: cover;
}

.home_content_slide {
  position: relative;
  margin-bottom: 80px;
  background-color: #f8f9fa;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

/* Slide content text */
.home_content_slide_text {
  /*max-width: 40%;*/

  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: left !important;
  z-index: 1 !important;
}

.home_content_slide_text p{
  text-align: left;
}

.home_content_slide_text h4{
  color: #355435;
  font-weight: 400;
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(-50%); }
}

.fadeInLeft {
  animation: fadeInLeft 1s ease-out forwards;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.fadeInRight {
  animation: fadeInRight 1s ease-out forwards;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Slick Arrows */
.slick-prev, .slick-next{
  width: 60px !important;
  height: 50px !important;
}

.slick-prev {
  z-index: 999 !important;
  left: 0 !important;
  clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
  background-color: #ffffff !important; 
}

.slick-next {
  right: 0 !important;
  clip-path: polygon(100% 0, 0% 50%, 100% 100%) !important;
  background-color: #ffffff !important;
}

.slick-prev:hover, .slick-next:hover{
  background-color: #5ca904 !important;
}

.slick-prev:hover::after,
.slick-next:hover::after {
  filter: invert(1) brightness(2); 
}

.slick-prev::before,
.slick-next::before {
  content: none !important; 
}

.slick-prev::after,
.slick-next::after {
  content: "";
  display: block;
  width: 24px;  
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.slick-prev::after {
  background-image: url("/assets/Home/left-arrow.png"); 
   filter: brightness(0) saturate(100%) invert(47%) sepia(90%) saturate(444%) hue-rotate(56deg) brightness(92%) contrast(90%);
}

.slick-next::after {
  background-image: url("/assets/Home/right-arrow.png");
   filter: brightness(0) saturate(100%) invert(47%) sepia(90%) saturate(444%) hue-rotate(56deg) brightness(92%) contrast(90%);
}


/* home-fruits */
.home-fruits .item1, .item2{
overflow: hidden;
position: relative;
}

.home-fruits .item1 img, .item2 img{
  width: 100%;
  transform: scale(1);
}

.home-fruits .item1:hover img, .home-fruits .item2:hover img{
  transform: scale(1.1);
  transition: 1s ease;
}

.home-fruits .item1 span,.home-fruits .item2 span{
position: absolute;  
bottom: 5px;  
color: #fff;
}

.home-fruits .item1 span{
    left: 10px;
}

.home-fruits .item2 span{
    right: 10px
}



/* why us */
    .why-us .features-grid{
      text-align: center;
      height: 40vh;
      position: relative;
    }

    .why-us .item.one {
    top: 80%;
    left: 0;
    }

   .why-us .item.two {
    top: 25%;
    left: 15%;
    }

    .why-us .item.three {
    top: 0;
    left: 38%;
    }

    .why-us .item.four {
    top: 25%;
    right: 15%;
    }

    .why-us .item.five{
      top: 80%;
      right: 0;
    }

  .why-us .item{
    cursor: pointer;
    width: 20%;
    position: absolute;
    }

   .why-us .feature-icon img { 
      width: 50px; 
    }

     .why-us .features-grid .item:hover h5 { 
      color: #5ca904;
    }

    .why-us .feature-desc {
      font-size: 15px;
      color: #666;
      max-width: 220px;
      margin: auto;
    }

    .whyus-img {
      width: 100%;
      max-width: 600px;
      margin: 0px auto 0;
      display: block;
    }



.why-fruit-imports {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('/assets/Home/fruit-import-bg.jpg');
    background-size: cover;
    object-fit: cover;
    padding: 2rem 0;
}

.why-fruit-imports .item .image-wrapper, .footer-content .social-links .image-wrapper {
  position: relative;
  display: inline-block;
}

.why-fruit-imports .item .image-wrapper img{
  display: block;
  width: 67%; 
  height: auto;
}

.why-fruit-imports .item .centered-span, .footer-content .social-links .image-wrapper span {
  position: absolute;
  top: 60%;
  left: 35%;
  transform: translate(-50%, -50%);
  font-size: 20px;
line-height: 30px;
color: #ffffff;
font-weight: 400;
font-family: "Leckerli One";
text-align: center;
}

.why-fruit-imports .banana-img{
  position: absolute;
  right: 10%;
  top: 85%;
}

.why-fruit-imports .banana-img img{
  width: 300px;
}


.our-team-text{
font-size: 2.5rem;
color: #2b2b2b;
font-weight: 400;
font-family: "Leckerli One";
text-align: center;
margin: 8rem 0 3rem 0;
}

.our-team .item span{
  margin-top: 1rem;
}

.our-team .item {
    position: relative;
    display: inline-block;
}

.our-team .item img {
    width: 100%;
    min-height: 330px
}

.our-team .item::after {
    content: "";
    position: absolute;
    top: 5%;     
    left: 5%;   
    right: 5%;   
    bottom: 25%;  
    border: 0.5px solid white; 
    pointer-events: none;    
}

/* ready-to-eat */
.ready-to-eat .item1{
  background-image: url('/assets/Home/r1.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 200px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ready-to-eat .item2{
  background-image: url('/assets/Home/r2.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 200px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ready-to-eat .item3{
  background-image: url('/assets/Home/r3.png');
  background-size: contain;
  background-repeat: no-repeat;
  height: 200px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ready-to-eat img{
    position: absolute;
    width: 35%;
    margin-right: 2rem;
    bottom: 1rem;
}

.ready-to-eat .text {
  text-align: left !important;
  padding: 1rem;
  position: absolute;
  right: 0;
  height: inherit;
  width: 70%;
  display: flex;

flex-direction: column;
    justify-content: center;

}

.ready-to-eat .text span{
   font-size: 18px;
   text-align: left
}

.ready-to-eat .text p{
  text-align: left !important;
  font-size: 14px;
}


.our-sources {
}

.our-sources .bg-image{
  position: relative;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-sources .content{
  position: absolute;
  top: 5%;
}


/* events */
.events .item{
  border: 1px solid #a7a4a4;
  padding: 0.8rem;
  text-align: left;
}

.events .text p{
  text-align: left;
  margin-top: 1rem;
}

.events .text h4{
   text-align: left;
  margin-bottom: 1rem;
}

.available{
   background-image: url('assets/Home/gallery-bg.jpg');
    object-fit: cover;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 4rem 0;
}

.available .item{
  position: relative;
}

.available .item .text{
  position: absolute;
  bottom: 1rem;
  background-color: #000000;
  margin: 0 1rem;
  padding: 0.5rem 0;
  opacity: 0.8;
}

.available .item .text h4{
  color: #ffffff;
}


.owl-dots{
  margin-top: 2rem !important;
}

.owl-dots button {
  width: 16px;
  height: 16px;
    display: inline-block;
    vertical-align: top;
    margin: 13px 3px 0 2px;
    padding: 0;
    border: 1px solid #5ca904;
    cursor: pointer;
    border-radius: 50%;
    transition: border-color .3s;
}

.owl-dot {
  width: 10px !important;
  height: 10px !important;
  background: #5ca904!important;
  border-radius: 50%;
  display: inline-block;
  margin: 0.5rem !important;
  position: relative;
  transition: all 0.3s ease;
}

.owl-dot.active {
  width: 10px !important;
  height: 10px !important;
  background: #5ca904!important;
}

.owl-dot.active::before {
  content: "";
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid #5ca904;
  border-radius: 50%;
  box-sizing: border-box;
}


.footer-bg{
    background-image: url('/assets/Home/footer-bg.jpg');
    object-fit: cover;
    width: 100%;
    height: 100%;
    text-align: center;
}

.footer-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4rem;
    margin-top:7rem;
}

.footer-input .primary-btn{
  margin-left: 1rem;
}

.footer-content .footer-logo{
  width: 100px;
  margin-bottom: 1rem;
}

.footer-input{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
}

.footer-input input{
    width: 300px;
    border: none;
    background: none;
}

.footer-input hr{
  margin-bottom: 0;
}

.footer-links span a{
font-size: 16px;
line-height: 26px;
color: #2b2b2b;
font-weight: 400;
font-family: "Poppins";
text-decoration: none;
margin-left: 3rem;
}

.footer-content .social-links, .footer-links{
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content .social-links .image-wrapper img{
  width: 50px;
  height: 50px;
  margin-right: 2rem
}

 .footer-content .social-links .image-wrapper em {
  position: absolute;
  top: 60%;
  left: 30%;
  transform: translate(-50%, -50%);
color: #ffffff;
text-align: center;
}

.footer-content .footer-links em {
  margin-right: 2rem
}

  .footer-copyright{
    display: flex;
    justify-items: center;
    align-items: center;
    margin: 2rem 0;
  }

.footer-copyright p{
  opacity: 0.620
}







/* About page */

.banner{
  position: relative;
  object-fit: cover;
  width: 100%;
}

.banner .text{
  position: absolute;
  top: 30%;
}

.banner .text h4{
  color: #355435;
}

.banner .text p{
  font-size: 15px;
  line-height: 30px
}

.banner .text i{
  margin: 0 0.3rem;
  font-size: 10px;
}

.banner .heading{
  text-align: left;
}



.about-section{
  margin: 10rem 0;
  position: relative;
  width: 100%;
}

.about-image {
  z-index: 3;
  position: absolute;
  top: -3rem;
}

.about-content {
  background-image: url('/assets/About/about-bg.jpg');
  background-size: cover;
  padding: 4rem; 
  height: auto;
  z-index: 0;
}

.about-text{
  margin-left: 4rem;
}

.about-text .icon-text-item{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.about-text .icon-text-item .text{
  margin-left: 2rem;
}

.about-text .icon-text-item .text h4, .about-text .icon-text-item .text p{
  text-align: left !important;
}


.vision-text p, .vision-text h2{
  text-align: left !important;
}

.vision-section .row .image-container {
    position: relative;
    display: inline-block;
}

.vision-section .row .image-container img {
    display: block;
    width: 100%;
    /* height: auto; */
    height: 100%
}

.vision-section .row .image-container::after {
    content: "";
    position: absolute;
    top: -5%;
    left: 10%;
    right: -5%;
    bottom: 5%;  
    border: 0.5px solid  #5ca904; 
    pointer-events: none;    
}


    .check-list { 
      list-style: none; 
      padding: 0; 
    }

    .check-list li::before {
      font-family: 'Font Awesome 6 Free';
      font-weight: 900; 
      content: "\f00c"; 
      margin-right: 10px;
      color: #4caf50;
    }

    .mission-section .content-box{
      margin-left: 2rem;
    }

    .mission-section .content-box h2, .mission-section .content-box p{
      text-align: left;
    }


    /* about-timeline */

    .timeline-subtitle{
      padding: 0 16rem;
    }

.timeline-slider-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
  scrollbar-width: none; 
  -ms-overflow-style: none;
}

.timeline-slider {
  display: flex;
  gap: 0.5rem;            
  align-items: flex-start;
}

.timeline-slide {
  position: relative;
  flex: 1 1 0;          
  min-width: 200px;   
}

.timeline-dot {
  width: var(--dot);
  height: var(--dot);
  border: 1px solid #4caf50;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.timeline-dot .dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background-color: #5ca904;
}

.timeline-slide::after {
  content: '';
  position: absolute;
  top: calc(var(--dot) / 2 - var(--line) / 2);
  left: calc(0% + var(--dot) / 2 + var(--space));
  right: 0;
  height: var(--line);
  background-color: #5ca904;
}

 .timeline-slide:first-child .timeline-dot::before {
  display: none;
}

.timeline-item .subheading, .timeline-item p{
  text-align: left !important;
}

.timeline-item h3{
  color: #355435;
}




/* products */

.products{
  margin-bottom: 4rem;
}

.products .result-count{
  font-size: 16px;
}

.products-filter{
  margin: 3rem 0;
}

.products-filter , .products-filter .dropdown{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products-filter .dropdown button{
  margin-left: 2rem;
  border: none;
  border-radius: 0%;
  border-bottom: 1px solid #000000;
}

.products-filter .dropdown-toggle::after {
  display: none;
}

.products-filter .dropdown-toggle {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 4.5rem 1.5rem;
  margin: 4rem 0;
}

.product-item {
  position: relative;
  border-radius: 10px;
  padding-bottom: 1rem;
}

.product-item .item{
  background-image: url('/assets/Products/product-bg.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 10px;
}

.product-item:hover{
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, .25);
}

.product-item .item img {
  width: 200px;
  position: absolute;
  bottom: 2rem;
}

.product-item h5 {
    margin-top: 3rem;
}

.products-hr{
  margin-bottom: 2rem
}

.pagination-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  background-color: #a2c94c;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
}

.indicator-dot.active {
  outline: 2px solid #4caf50;
  outline-offset: 3px;
  background-color: #5aaf3f;
  transform: scale(1.2);
}



/* teams */

.teams-selection .row .item{
  margin-bottom: 2rem;
}

.team-heading{
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-heading span{
  margin: 1rem
}

.team-tabs{
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.team-tabs .tab{
  margin: 0 2rem;
  cursor: pointer;
}

.team-tabs .tab.active{
  background-color: #5aaf3f;
  color: #ffffff;
  padding: 0.3rem 1rem;
}

 .team-grid .team.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team-grid .team {
  display: none;
  text-align: center;
}

.team-grid .team .item{
position: relative;
display: inline-block;
}

.team-grid .team .item img{
    width: 100%;
    min-height: 330px;
}

.team-grid .team .item::after {
    content: "";
    position: absolute;
    top: 5%;     
    left: 5%;   
    right: 5%;   
    bottom: 25%;  
    border: 0.5px solid white; 
    pointer-events: none;    
}

.team-grid .team span{
  margin-top: 1rem;
}





/* news-listing */

.news .item .text p, .news .item .text h4, .news .item  .text{
  text-align: left;
  margin: 1rem 0;
}

.news .item{
  border: 1px solid #a7a4a4;
  padding: 0.8rem;
}


/* contact-us */

.contact .left .item{
  display: flex;
  align-items: center;
}

.contact .left .item h4{
  text-align: left;
}

.contact .left .item em{
  margin-right: 2rem;
}

.contact .right input, .contact .right textarea{
  width: 100%;
  border: 1px solid #d8d6d6;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 5px;
  font-family: "Poppins";
}


.primary-btn .get-in-touch {
    font-size: 16px;
    color: #fff;
}



.primary-btn .get-in-touch {
    display: inline-flex;
    align-items: center;
    background-color: #5ca904;
    border: none !important;
    padding: 0.5rem 0.8rem !important;
    cursor: pointer !important;
    margin-bottom :0px !important;
}


img.footer-iglogo{
    height: 5vh;
    margin-bottom: 16px;
    margin-left: 10px;
}


.Date{
color: #5ca904;
}

.news-detail h1, .news-detail p{
text-align: justify
}




.primary-btn .get-in-subscribe {
    display: inline-flex;
    align-items: center;
    background-color: #5ca904;
    border: none !important;
    padding: 0px !important;
    cursor: pointer !important;
    margin-bottom: 0px !important;
    width:auto;
}



.ready-to-eat .subheading {

    font-size: 22px !important;
    line-height: 30px !important;
    color: #2b2b2b !important;
    font-weight: 400 !important;
    font-family: "Leckerli One" !important; 


}

.single-news-center {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction:row-reverse;
}


.events .single-text p {
    margin-left: 2rem;
}


.events .single-text h4 {
    margin-left: 2rem;
}


.single-btn {
    margin-left: 2rem;
    margin-top: 1.75rem;
}



.about-usbtn{
z-index: 99;
    position: relative;

}
