 body{
    background-color: #fbf6f2;
    margin: 0;
    padding: 0;
 }

 .navbar-custom {
     background-color: #1f2937;
     /* Tailwind's bg-gray-900 */
 }

 .brand-highlight {
     color: #facc15;
     /* Tailwind's text-yellow-400 */
 }

 .nav-link-custom {
     border-radius: 9999px;
     font-weight: 600;
 }

 .nav-link-custom {
     color: #fff;
 }

 .nav-link-custom:hover {
     background-color: #facc15;
     color: #000 !important;
 }

 .nav-link-active {
     background-color: #facc15;
     color: #000 !important;
 }


 .carousel-item {
     height: 100vh;
     min-height: 400px;
     position: relative;
     background-size: cover;
     background-position: center;
 }

 .carousel-overlay {
     position: absolute;
     inset: 0;
     /* background-color: rgba(0, 0, 0, 0.4); */
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;
     text-align: center;
     padding: 0 1rem;
 }

 .carousel-overlay h2 {
     color: #fff !important;
     font-weight: bold;
     text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
 }

 .carousel-overlay p {
     color: #fff !important;
     text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
 }



 .category-container {
     background-color: #fbf6f2;
     padding: 60px 20px;
 }

 .scroll-container {
     display: flex;
     gap: 1rem;
     overflow-x: auto;
     padding-bottom: 1rem;
     scroll-snap-type: x mandatory;
 }

 .category-card {
     flex: 0 0 auto;
     width: 180px;
     background-color: #fff;
     border-radius: 1rem;
     padding: 1rem;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     text-align: center;
     position: relative;
     transition: all 0.3s;
     overflow: hidden;
 }

 .category-card:hover {
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
 }

 .category-swoosh {
     position: absolute;
     inset: 0;
     z-index: 0;
     clip-path: polygon(100% 0, 100% 68%, 52% 100%, 0 71%, 0 0);
     /* opacity: 0.5; */
 }

 .category-card img.product-img {
     height: 200px;
     object-fit: contain;
     position: relative;
     z-index: 1;
     margin-bottom: 1rem;
 }

 .category-card .title {
     font-weight: 600;
     position: relative;
     z-index: 1;
     color: #000;
 }

 .arrow-btn {
     position: absolute;
     bottom: 1rem;
     right: 1rem;
     z-index: 2;
     opacity: 0;
     transition: 0.3s;
 }

 .category-card:hover .arrow-btn {
     opacity: 1;
 }

 .arrow-btn button {
     background-color: #facc15;
     color: #000;
     border: none;
     padding: 10px 14px;
     border-radius: 50%;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
 }

 /* Hide scrollbar on Webkit (Chrome, Safari) */
 .scroll-container::-webkit-scrollbar {
     display: none;
 }

 /* Responsive grid for medium and up */
 @media (min-width: 768px) {
     .scroll-container {
         display: grid;
         grid-template-columns: repeat(4, 1fr);
         gap: 1.5rem;
         overflow-x: unset;
     }

     @media (min-width: 992px) {
         .scroll-container {
             grid-template-columns: repeat(5, 1fr);
         }
     }

     .category-card {
         width: 100%;
     }
 }


 .product-card {
     position: relative;
     overflow: hidden;
     border: 1px solid #dee2e6;
     border-radius: 1rem;
     transition: box-shadow 0.3s;
     background-color: #fff;
     box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
 }

 .product-card:hover {
     box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
 }

 .product-img,
 .product-hover-img {
     width: 100%;
     height: 240px;
     object-fit: contain;
     transition: opacity 0.3s ease-in-out;
 }

 .product-hover-img {
     position: absolute;
     top: 0;
     left: 0;
     opacity: 0;
 }

 .product-card:hover .product-hover-img {
     opacity: 1;
 }

 .product-card:hover .product-img {
     opacity: 0;
 }

 .custom-btn:hover {
     background-color: #facc15;
 }

 .custom-rounded {
     border-top-left-radius: 30px;
     /* Adjust the value as needed */
     border-bottom-right-radius: 30px;
 }


 .bg-gradient-orange {
  background: linear-gradient(to right, #ffe0b2, #ffffff); /* from-orange-100 to white */
}

.bg-gradient-yellow {
  background: linear-gradient(to right, #fff9c4, #ffffff); /* from-yellow-100 to white */
}

.bg-gradient-cyan {
  background: linear-gradient(to right, #b2ebf2, #ffffff); /* from-cyan-200 to white */
}


.custom-hover-image {
  transition: transform 0.5s ease;
}

.custom-hover-image:hover {
  transform: scale(1.1) rotate(20deg);
}


.testimonial-card {
      background: linear-gradient(to bottom right, #ececeb, #f2f298);
      border-radius: 1rem;
      padding: 1.5rem;
      height: 100%;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .testimonial-text {
      font-style: italic;
      color: #555;
    }

    .testimonial-heading {
      background-color: #fbbf24;
      padding: 0.5rem 2rem;
      border-top-left-radius: 1.5rem;
      border-bottom-right-radius: 1.5rem;
      font-weight: bold;
      text-align: center;
      max-width: 400px;
      margin: 0 auto 2rem auto;
    }

     .stat-box { font-size: 2rem; font-weight: bold; }
    .gallery-img { height: 180px; object-fit: cover; border-radius: 8px; }

    .about-container{
        margin-top: 5%;
    }


/* Smooth transition effect */
.hover-dropdown .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-top: 0; /* override Bootstrap */
}

/* Show on hover */
.hover-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 1000;
}


  .whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 36px;
  height: 36px;
}

