
/* .hero {
  height: 80vh;
  min-height: 500px;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)),
    url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=2000')
    center / cover no-repeat fixed;
  display: flex;
  align-items: center;
  color: #fff;
} */



.our-products-sec .product-name{
  margin: 30px 0px;
  font-size: 22px;
  font-weight: 700;

}

.our-products-sec .product{
  text-align: center;
  border-radius: 60%;
 padding: 10px;
  background-color: var(--theme-logo);
  cursor: pointer;
  margin-left: 30px;


  /* ✨ transition stuff */
  opacity: 0.9;
  transition: 
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
    width: 80%;
}

.our-products-sec .product:hover{
  opacity: 1;
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  background-color: var(--theme-logo); /* optional */
 
}
.our-products-sec .product img{

  height: 250px;
}

.recipe-carousel .item {
  padding: 0;
  margin: 0;
}

.row > * {
  margin-bottom: 0;
}

.card {
  margin-bottom: 0;
}
.loved-content {
  margin-top: 16px;
}

.card-img-top {
  height: 180px;
  object-fit: cover;
}

.recipie-sec{
    background: #fff3cc;
  
}
.recipie-sec .sustaiblity-sec{
    position: relative;
     background: #fff3cc;
    
}
.recipie-sec .sustaiblity-sec .sustainbility-img {
    background-image:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.75) 10%,
            rgba(0, 0, 0, 0.45) 40%,
            rgba(0, 0, 0, 0.15) 60%,
            rgba(0, 0, 0, 0) 100%
        ),
        url('https://tse3.mm.bing.net/th/id/OIP.cNRLK5sNt7OJvrbpVbN7nAHaEJ?w=700&h=392&rs=1&pid=ImgDetMain&o=7&rm=3');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translateX(-50%);
    padding: 50px;
    border-radius: 24px;
    color: #fff; /* text readable */
}

/* Base pill style */
#recipeTabs .nav-link {
  border-radius: 50px;
  background-color: var(--primary);
  color: #fff;
  width: 300px;
  border: 5px solid var(--theme-logo);
  transition: 
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

/* Hover effect */
#recipeTabs .nav-link:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

/* Active pill */
#recipeTabs .nav-link.active {
  background-color: var(--accent); 
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Click / tap feedback */
#recipeTabs .nav-link:active {
  transform: scale(0.95);
}

.sustaiblity-sec{

    padding: 100px;
    
}
.most-loved-products-sec{
   
    background-color: #ffffff;
}

.product-img {
  height: 450px;
}
.our-products-sec .productsec-sub-head{
  font-weight: 700;
  font-size: 32px;
  margin: 20px 0px;
}

/* Indicator dots */
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--theme-logo);
  border: none;
  margin: 20px 6px;
  opacity: 1;
  transition: all 0.3s ease;


}


.carousel-indicators button.active {
  background-color: var(--primary);
  width: 12px;
  height: 12px;
}

/* Arrow buttons */
.custom-carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
 
  background: var(--theme-logo);
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
}

.custom-arrow {
  filter: invert(1);
}

/* Hover */
.custom-carousel-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.custom-carousel-btn:hover .custom-arrow {
  filter: invert(0);
}
/*  */
.clients-section {
  overflow: hidden;
  background: #f1ffd0;
  padding: 20px 0;
}

.clients-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.clients-track {
  display: flex;
  width: max-content;
  animation: scroll 12s linear infinite;
}

.clients-track span {
  padding: 0 40px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  color: #333;
}

.customer-review-sec .review-head{
  color: var(--accent);
  font-weight: bold;
}
.clients-marquee {
  overflow: hidden;
  width: 100%;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 30px; /* space between logos */
}

.clients-track span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px; /* keeps spacing consistent */
}

.clients-track img {
  width: 120px;        /* 👈 equal width for all */
  height: 120px;        /* 👈 equal height for all */
  object-fit: contain;/* keeps logo proportions */
  display: block;
}


/* .clients-section {
  background: #f9f9f9;
}

.clients-carousel .item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-carousel img {
  max-height: 80px;
  transition: all 0.3s ease;
}

.clients-carousel img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
} */
/* TESTIMONIAL CARD */
.testimonial-card {
  background: #d5df6c;
  padding: 48px;
  border-radius: 14px;
  box-shadow: 0 20px 25px rgba(0,0,0,0.08);
  height: 100%;
}

/* REVIEW TEXT */
.review-text {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-top: 25px;
}

/* REVIEWER NAME */
.reviewer {
  margin-top: 20px;
  font-size: 28px;
  font-weight: 600;
  color: #2e7d32;
  text-align: center;
}

/* DOTS STYLE */
.testimonials-carousel .owl-dots {
  text-align: center;
  margin-top: 25px;
}
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -5%;
    top: -80%;
}
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -5%;
    top: -80%;
}
.testimonials-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: block;
  border-radius: 50%;
  margin: 5px;
  transition: 0.3s;
}

.testimonials-carousel .owl-dot.active span {
  background: #2e7d32;
}

/* ARROWS */
.testimonial-nav {
  font-size: 26px;
  color: #2e7d32;
}

.testimonials-carousel .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.testimonials-carousel .owl-nav button {
  background: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.testimonials-carousel .owl-nav button:hover {
  background: #2e7d32 !important;
}

.testimonials-carousel .owl-nav button:hover span {
  color: #fff;
}

.section-divider-center {
  width: 180px;
  height: 3px;
  background: #2e7d32;
  margin: 60px auto;
  border-radius: 10px;
}
.loved-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.loved-content p {
    font-size: 16px;
    margin-bottom: 10px;
}
.view-products-wrapper{
  text-align: center;
  margin: 10px 0 60px 0;
}

.view-products-btn{
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--primary);
  color:#fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #c9a66b;
  border-radius: 40px;
  transition: all 0.3s ease;
}

.view-products-btn:hover{
  background-color: var(--accent);
  transform: translateY(-2px);
  color:#fff;
  border: 1px solid #c9a66b;
}


.btn{
  display: inline-block;
  padding: 10px 26px;
  border-radius: 30px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* ================= Recipe Cards ================= */

.recipe-carousel .card{
  border-radius: 6px;      /* curve the box */
  overflow: hidden;         /* keeps image inside curve */
}

/* image also curved on top */
.recipe-carousel .card-img-top{
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

/* center the text */
.recipe-carousel .card-body{
  text-align: center;
}

/* optional → better spacing */
.recipe-carousel .card-body h6{
  margin-bottom: 6px;
}


.btn:hover {
    color: #fff;
    background-color: var(--accent);
    border-color: #fff;
}

@media screen and (max-width: 576px){
  .client-logo {
  background:transparent;
  padding: 25px;
  border-radius: 14px;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.08); */
  transition: all 0.3s ease;
  }
}
@media screen and (max-width:768px) {
  .recipie-sec .sustaiblity-sec .sustainbility-img{
    padding: 16px;
  }
  .carousel-indicators [data-bs-target] {
    margin-bottom: -20px;
  }
  .client-logo {
  background:transparent;
  padding: 25px;
  border-radius: 14px;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.08); */
  transition: all 0.3s ease;
  }
}


@media (max-width: 768px) {
  .hero {
    height: 70vh;
    text-align: center;
  }
   .section-padding {
    padding: 40px 0;
  }
    .product-img{
    height: 350px;
  }
  .client-logo {
  background:transparent;
  padding: 25px;
  border-radius: 14px;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.08); */
  transition: all 0.3s ease;
}
  .custom-carousel-btn{
     top:30% ;
  } 
  .loved-content h2 {
    text-align: center;
  }
}

@media (max-width: 565px){
  .product-img{
    height: 350px;
  }

}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.clients-grid {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 30px;
}

.client-logo {
  background:transparent;
  /* padding: 25px; */
  border-radius: 14px;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.08); */
  transition: all 0.3s ease;
}

.client-logo img {
  max-width: 220px;
  /* filter: grayscale(100%); */
  transition: all 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-6px);
}

/* .client-logo:hover img {
  filter: grayscale(0%);
} */
