/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .8s ease-out, visibility 0s linear .0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 80px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

/*** Spinner End ***/


/*** Contact Section Start ***/
.contact-section {
  background-color: #1b262c;
  padding: 40px 0;
}

.contact-section h1 {
  color: #93725b;
  margin-bottom: 30px;
}

.contact-social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.contact-social-links a {
  font-size: 24px;
  color: #93725b;
  transition: color 0.3s ease;
}

.contact-social-links a:hover {
  color: #fff;
}

/*** Contact Section End ***/


/*** Text Styles Start ***/
.text-white {
  color: white !important;
}

.text-large {
  font-size: 3rem;
}

.font-medium {
  font-weight: 500;
}

.map-frame {
  width: 100%;
  height: 450px;
  border: 0;
}

/*** Text Styles End ***/


/*** Topbar Start ***/
.fixed-top {
  transition: 0.5s;
  background: var(--bs-white);
  border: 0;
}

.topbar {
  padding: 12px 16px;
  /* smaller topbar to reduce header height */
  border-radius: 12px;
}

.topbar .top-info {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
}

/* Mobile menu button styling */
.mobile-menu-btn {
  background: transparent;
  border: none;
  padding: 6px 10px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Ensure offcanvas from right is full-height and overlays content nicely */
.offcanvas-end {
  width: 85%;
  max-width: 320px;
}

@media (max-width: 991px) {

  /* hide the desktop nav wrapper on smaller screens */
  .menu-bar-wrapper.d-none.d-lg-block {
    display: none !important;
  }
}

/* Specific mobile adjustments */
@media (max-width: 420px) {
  .container-fluid.fixed-top .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .mobile-menu-btn {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.container-fluid.fixed-top {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  /* ensure fixed top sits at 0 */
}

.topbar .top-link {
  font-size: 50px;
  line-height: 0;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.topbar .top-link a {
  letter-spacing: 1px;
}

.topbar .top-link a small:hover {
  color: var(--bs-secondary) !important;
  transition: 0.5s;
}

.topbar .top-link a small:hover i {
  color: var(--bs-primary) !important;
}

/*** Topbar End ***/
/* Navbar Start */
.navbar {
  height: auto;
  /* let content determine height */
  padding: 6px 0;
  /* compact navbar padding */
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar .navbar-nav .nav-link {
  padding: 6px 10px;
  font-size: 14px;
  transition: 0.5s;

}

/* Logo sizing helper */
.site-logo {
  height: 56px;
  /* compact logo height */
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

/* Optional: modal search styling if used */
#searchModal .modal-content {
  background: rgba(255, 255, 255, 0.8);
}

/* Navbar End */


/*** Hero Header ***/
.hero-header {

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 48px;

}

.carousel-item {
  position: relative;
}

.carousel-item a {
  position: absolute;

  /* Center the 'VIEW OUR PRODUCTS' heading on small screens */
  @media (max-width: 575.98px) {

    /* heading */
    #products h1.text-center {
      text-align: center !important;
      margin-left: auto !important;
      margin-right: auto !important;
      font-size: 1.5rem;
    }

    /* center the row contents (product cards) */
    #products .row.justify-content-start {
      justify-content: center !important;
    }

    /* make product cards take appropriate width and center inside their columns */
    #products .fruite-item {
      margin-left: auto;
      margin-right: auto;
      max-width: 320px;
      /* prevent cards from stretching full width on very small screens */
      width: 100%;
    }

    /* ensure images inside cards are centered and scale down on mobile */
    #products .fruite-img img,
    #products .fruite-img .img-fluid {
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 92% !important;
      height: auto !important;
      object-fit: cover;
      border-radius: 12px 12px 0 0;
    }

    /* reduce horizontal padding on the container to give more room */
    #products .container {
      padding-left: 0.5rem;
      padding-right: 0.5rem;
    }

    /* tighten column padding so centered cards look balanced */
    #products .col-12,
    #products .col-sm-6,
    #products .col-md-4,
    #products .col-lg-3 {
      padding-left: 6px;
      padding-right: 6px;
    }
  }

  /* Header / mobile menu adjustments to prevent overflow and place menu button inside left */
  .container-fluid.fixed-top .container {
    position: relative;
  }

  /* move mobile menu button to left inside the header so it stays within the zone */
  .mobile-menu-btn {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 1200;
    display: inline-flex;
  }

  /* give header content some left padding so logo/heading don't overlap the button */
  .container-fluid.fixed-top .d-flex.align-items-center {
    padding-left: 54px;
    /* leaves room for the left-placed button */
    flex-wrap: wrap;
    gap: 8px;
  }

  /* reduce heading size on small screens to avoid pushing content off-screen */
  .container-fluid.fixed-top .d-flex.align-items-center h1.mb-0 {
    font-size: 1.2rem;
    line-height: 1.1;
    margin: 0;
  }

  /* slightly reduce logo size on phones */
  .site-logo {
    height: 44px;
  }

  /* For narrow phones (including 412px wide) place the button on the right inside the header */
  @media (max-width: 420px) {
    .container-fluid.fixed-top .container {
      position: relative;
    }

    .container-fluid.fixed-top .mobile-menu-btn {
      left: auto !important;
      right: 12px !important;
      top: 10px !important;
    }

    /* ensure header content keeps left padding to avoid overlap */
    .container-fluid.fixed-top .d-flex.align-items-center {
      padding-left: 12px;
    }
  }

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  background: linear-gradient(rgba(255, 181, 36, 0.7), rgba(255, 181, 36, 0.7));
}

.carousel-control-next,
.carousel-control-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: #ffffff;
  position: absolute;
  top: 180px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
  transition: background-color 0.3s, color 0.3s;
  z-index: 2;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  background-color: #f1f1f1;
  color: #000;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev {
  left: 20px;
}

/* Hide default Bootstrap icon */
.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: none;
}

/* Add centered Font Awesome arrows */
.carousel-control-next::after,
.carousel-control-prev::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #000;
  font-size: 2rem;
  /* Bigger arrow inside circle */
  display: inline-block;
  line-height: 1;
  text-align: center;
}

.carousel-control-next::after {
  content: "\f105";
  /* Font Awesome right arrow */
}

.carousel-control-prev::after {
  content: "\f104";
  /* Font Awesome left arrow */
}




@media (min-width: 992px) {

  .hero-header,
  .page-header {
    margin-top: 152px !important;
  }
}

@media (max-width: 992px) {

  .hero-header,
  .page-header {
    margin-top: 97px !important;
  }
}

/*** Hero Header end ***/



/*** vesitable Start ***/
.vesitable .vesitable-item {
  height: 100%;
  transition: 0.5s;
}

.vesitable .vesitable-item:hover {
  box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.vesitable .vesitable-item .vesitable-img {
  overflow: hidden;
  transition: 0.5s;
  border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
  transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
  transform: scale(1.2);
}

.vesitable .owl-stage {
  margin: 50px 0;
  position: relative;
}

.vesitable .owl-nav .owl-prev {
  position: absolute;
  top: -1px;
  right: 0;
  color: var(--bs-primary);
  padding: 8px 12px;
  border: 1px solid var(--bs-secondary);
  border-radius: 20px;
  transition: 0.5s;
  display: none !important;



}

.vesitable .owl-nav .owl-prev:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
  position: absolute;
  top: -1px;
  display: none !important;
  color: var(--bs-primary);
  padding: 8px 12px;
  border: 1px solid var(--bs-secondary);
  border-radius: 50%;
  transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

/*** vesitable End ***/


@media (max-width: 767.98px) {
  #carouselId {
    height: 200px !important;
    /* Shorter height for mobile */
  }

  #carouselId .carousel-item img {
    border-radius: 0 !important;
  }
}

.img-fluid {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.carousel-wrapper {
  position: relative;
}

.custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: default;
}

.custom-arrow i {
  font-size: 18px;
  color: #000;
}

.left-arrow {
  left: -20px;
}

.right-arrow {
  right: -20px;
}

/* Text styling */


/* Carousel arrow buttons */
/* Make sure the wrapper is positioned relative to place arrows absolutely inside */

.gallery-arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* So clicks go through if needed */
}

.gallery-arrows .custom-arrow {
  pointer-events: all;
  /* Enable clicks */
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  border: 1px solid #ccc;
  color: #000;
  font-size: 20px;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  transition: background 0.3s, color 0.3s;
}

.gallery-arrows .custom-arrow:hover {
  background: #f0f0f0;
}

/* Position left and right arrows */
.gallery-arrows .gallery-left {
  left: 10px;
}

.gallery-arrows .gallery-right {
  right: 10px;
}

.testimonial-section {
  background-color: #1b262c;
  padding: 40px 20px;
  text-align: center;
  color: #93725b;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
}

.chevron {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #93725b;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

.chevron.left {
  left: 10px;
}

.chevron.right {
  right: 10px;
}

.testimonial-cards {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.card {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  flex: 1 1 280px;
}

.card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}


/* Ensure navbar stacks brand above menu */
.menu-bar-wrapper {
  background-color: #93725b;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  padding: 6px 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.navbar-nav {
  display: flex;
  gap: 1rem;
  /* small gap to allow wrapping on smaller screens */
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.nav-item {
  display: flex;
  align-items: center;
  margin-right: 0;
}

.nav-link {
  color: white;
  font-size: 1rem;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
  transition: background 0.25s ease;
  border-radius: 6px;
}


.nav-link i {
  margin-right: 0.4rem;
  font-size: 1rem;
}

.nav-link:hover {
  text-decoration: none;
  background-color: #2d6246;
  /* Highlight on hover */
}

footer {
  background-color: burlywood;
  color: white;
  padding: 40px 0;
  font-family: 'Segoe UI', sans-serif;

}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
  gap: 50px;
}

.footer-column {
  flex: 1 1 250px;
  margin-bottom: 20px;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #93725b;
}

.footer-column p,
.footer-column a {
  line-height: 1.6;
  color: #f9f9f9;
  text-decoration: none;
  font-size: 18px;
}

.footer-column a:hover {
  color: #2d6246;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;

  border-radius: 50%;
  width: 42px;
  height: 42px;
  transition: 0.3s;
  gap: 25px;
  top: 40px;
}


.social-icons a .fa-facebook-f {
  color: #1877F2;
  /* Facebook Blue */
}

.social-icons a .fa-youtube {
  color: #FF0000;
  /* YouTube Red */
}

.social-icons a .fa-linkedin-in {
  color: #0077B5;
  /* LinkedIn Blue */
}

.social-icons a .fa-instagram {
  color: #E1306C;
  /* Instagram Pink */
}

.social-icons a .fa-whatsapp {
  color: #25D366;
  /* WhatsApp Green */
}


.social-icons a:hover {
  transform: scale(1.2);
  /* Optional hover effect */
}


.social-icons a:hover {
  background: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #333;
  margin-top: 20px;
  font-size: 18px;
}

.footer-bottom span {
  float: right;
  color: white;
}


.whatsapp-float {
  position: fixed;
  width: 45px;
  height: 45px;
  bottom: 20px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebea5;
  transform: scale(1.1);
}

.whatsapp-icon {
  font-size: 28px;
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
  margin: 0;
  padding: 0;
}

.contact-section {
  padding: 80px 0;
  position: relative;
  background: #ffffff;
}

.contact-section .container {
  max-width: 1200px;
  margin: auto;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('your-background.jpg') no-repeat center center/cover;
  opacity: 0.05;
  z-index: 0;
}

.contact-card {
  background-color: #fff;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}



.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #93725b;
  margin-bottom: 20px;
}

.contact-info {
  display: flex;
  align-items: flex-start;
  /* Align icon to the top */
  gap: 15px;
  /* Space between icon and text */
}

.contact-icon {
  font-size: 20px;
  margin-top: 6px;
  /* Fine-tunes alignment */
  color: #93725b;
  /* Optional color */
  flex-shrink: 0;
  width: 24px;
  /* Equal icon width */
  text-align: center;
  /* Center icon inside the space */
}


.contact-title {
  margin: 0;
  font-weight: 600;
  color: #93725b;
}


.contact-info p {
  margin: 5px 0 0;
  color: #555;
}

/* Map Embed */
.map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.map-embed {
  width: 100%;
  height: 100%;
  border: none;
}

.custom-btn {
  background-color: #93725b;
  border: 3px solid #93725b;
  color: white;
  border-radius: 50%;
}

.custom-btn i {
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .contact-section {
    padding: 40px 20px;
  }

  .contact-card {
    padding: 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .map-container {
    height: 300px;
  }
}

.testimonial-card {
  width: 100%;
  max-width: 320px;
  flex: 1 1 280px;
}

.circle-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e0f2e9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.circle-img:hover {
  transform: scale(1.05);
}

.swiper-slide p {
  color: #333;
}

.header-bg {
  background-color: lightcoral
    /* soft beige / spice-themed color */
}

/* Mobile view*/
@media (max-width: 767.98px) {

  /* Make navbar vertical and centered */
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
    top: 0;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .nav-item {
    margin-right: 0;
  }

  .nav-link {
    padding: 10px;
    transform: translateY(0);
    font-size: 16px;
  }

  /* Adjust hero/banner/header */
  .hero-header {
    font-size: 24px;
    text-align: center;
    padding: 40px 10px;
  }

  .carousel-item a {
    font-size: 16px;
    padding: 8px 16px;
  }

  /* Section spacing */
  .section-title {
    font-size: 22px;
    text-align: center;
  }

  /* Footer layout */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  .footer-bottom span {
    float: none;
    display: block;
    margin-top: 10px;
  }

  /* WhatsApp & back-to-top buttons */
  .whatsapp-float,
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
    font-size: 20px;
  }

  /* Adjust testimonial layout */
  .testimonial-card {
    width: 100%;
    margin: 10px 0;
  }

  .circle-img {
    width: 80px;
    height: 80px;
  }

  /* Contact section */
  .contact-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-icon {
    margin-bottom: 5px;
  }

  /* Hide large paddings/margins */
  .topbar,
  .menu-bar-wrapper {
    padding: 10px;
    border-radius: 0;
  }

  /* Page header background helper */
  .header-bg {
    background-color: #1b262c !important;
  }

  /* Dark section / footer helper classes to replace inline styles */
  .section-dark {
    background-color: #1b262c;
  }

  .footer-dark {
    background-color: #1b262c;
    color: #fff;
  }

  .topbar .top-info,
  .topbar .top-link {
    font-size: 16px;
    flex-direction: column;
    line-height: 1.2;
  }

  /* Resize images */
  .img-fluid {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
  }

  /* Carousel arrows hidden on mobile */
  .carousel-control-next,
  .carousel-control-prev,
  .gallery-arrows,
  .testimonial-arrows {
    display: none !important;
  }

  /* Make sure map fits */
  .map-container {
    min-height: 250px;
  }
}

.organic-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding-bottom: 10px;
  scroll-padding-left: 20px;
}

.organic-carousel::-webkit-scrollbar {
  display: none;
}

.item {
  flex: 0 0 auto;
  width: 33.33%;
  max-width: 200px;
  scroll-snap-align: center;
  text-align: center;
}

.circle-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
  transition: transform 0.3s ease;
}

.circle-img:hover {
  transform: scale(1.05);
}

.dots {
  text-align: center;
}

.dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 4px;
  transition: background 0.3s;
}

.dots span.active {
  background: #000;
}

/* Container for the entire carousel */
#product-carousel {
  scroll-behavior: smooth;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 0 1rem;
  scrollbar-width: none;
  /* Firefox */
}

/* Hide scroll bar for Chrome, Edge, Safari */
#product-carousel::-webkit-scrollbar {
  display: none;
}

/* Card styling */
#product-carousel .card {
  width: 200px;

  flex: 0 0 auto;
  border: none;
  background-color: #fff;
  transition: transform 0.3s ease;
}

#product-carousel .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Image container */
.fruite-img img {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Product details section */
.fruite-item .p-3 {
  background-color: #f9f9f9;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* WhatsApp Button */
.fruite-item .btn-success {
  font-weight: 500;
  border-radius: 8px;
  padding: 0.5rem 1rem;
}

/* Chevron buttons */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  z-index: 2;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  /* white arrows */
}

/*Products page*/
#products {
  background-size: cover;
  background-position: center;
}

#products .fruite-item {
  width: 300px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
  margin-left: -100px;
}

#products .fruite-item:hover {
  transform: translateY(-5px);
}

#products .fruite-img img {
  height: 160px;
  object-fit: cover;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

#products .p-3 {
  background-color: #fff;
  border-radius: 0 0 0.5rem 0.5rem;
  flex-grow: 1;
}

#products .row.g-4 {
  --bs-gutter-x: 240px;
  /* Increase horizontal gap */
  --bs-gutter-y: 35px;
  /* Increase vertical gap */
}

@media (max-width: 576px) {
  #products .fruite-item {
    margin-bottom: 20px;
  }
}

/*contact social links*/
.contact-section {
  display: flex;
  background: url('img/contact_bg.jpg') no-repeat center center/cover;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  background-color: #f9f9f9;

}

.contact-section h1 {
  margin-bottom: 20px;
  font-size: 32px;
  color: #333;
}

.contact-social-links {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.contact-social-links a {
  font-size: 40px;
  transition: transform 0.3s ease;
}

/* Social media brand colors */
.contact-social-links a .fa-facebook-f {
  color: #1877f2;
}

.contact-social-links a .fa-youtube {
  color: #ff0000;
}

.contact-social-links a .fa-linkedin-in {
  color: #0a66c2;
}

.contact-social-links a .fa-instagram {
  color: #e4405f;
}

.contact-social-links a .fa-whatsapp {
  color: #25D366;
  /* Official WhatsApp green */
}


.contact-social-links a:hover {
  transform: scale(1.2);
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;

  margin: auto;
  gap: 40px;
  width: 100%;
  background-color: #1b262c;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-content {
  flex: 1 1 500px;
  padding: 20px 40px;
}

.about-content h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.stats {
  display: flex;
  gap: 60px;
  align-items: center;
  margin: 30px 0;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-number {
  font-size: 40px;
  color: #2dc653;
  font-weight: 700;
  border-left: 5px solid #2dc653;
  padding-left: 15px;
}

.stat-label {
  line-height: 1.2;
}

.stat-label span {
  font-size: 14px;
  color: #555;
}

.stat-label strong {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.explore-btn {
  background-color: #2dc653;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
  transition: background 0.3s;
}

.explore-btn:hover {
  background-color: #219c42;
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    padding: 20px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-box {
    justify-content: center;
  }
}

/* Main Section */
.why-choose-us-section {
  background-color: #f7f8fc;
  padding: 60px 20px;
}

/* Container */
.why-choose-us-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Heading */
.why-choose-us-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Subheading */
.why-choose-us-section p {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

/* Features Grid */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature-box i {
  color: #28a745;
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Feature Title */
.feature-box h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Feature Description */
.feature-box p {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

.sidebar {
  width: 250px;
  background-color: #f3f3f3;
  padding: 20px;
  height: 100vh;
  overflow-y: auto;
}

.sidebar h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.product-item {
  cursor: pointer;
  margin: 10px 0;
  color: green;
}

.content {
  flex: 1;
  padding: 40px;
  background-color: #fff;
}

.product-details {
  display: none;
  animation: fadeIn 0.5s;
}

.product-details.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Offcanvas (mobile nav) dark adjustments */
.offcanvas.bg-dark {
  background-color: #1b262c !important;
}

.offcanvas .nav-link {
  padding: 12px 8px;
  font-size: 1.05rem;
}

.offcanvas .offcanvas-header .offcanvas-title {
  font-weight: 700;
}

.btn-close-white {
  filter: invert(1) grayscale(1) brightness(2);
}