

body, p, span, a, li, input, textarea, button {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Optional: Make buttons Montserrat Bold too */
button, .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    border-radius:20px;
}

/* Hamburger icon */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background-color: #333;
  position: relative;
  display: block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  width: 25px;
  height: 2px;
  background-color: #333;
  position: absolute;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

/* Center Google Translate on mobile */
@media (max-width: 991px) {
  .navbar-lang {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}



.banner-bg {
    background:#4A7059 !important;
   
}



.work-step {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px ;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  
}
.work-step img {
  width:76px;
  height:76px;
  object-fit:contain;
}
.work-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.step-number {
  position: absolute;
  top: -20px;
  right: 25px;
  background: #4caf50;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f4fdf6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.work-step h4 {
  font-weight: 600;
  /* margin-bottom: 15px; */
}

.work-step p {
  color: #666;
  font-size: 14px;
}

.faq-section {
  background: #f9fafb;
}

.faq-tabs .nav-link {
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 14px 18px;
  color: #333;
  font-weight: 500;
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.faq-tabs .nav-link.active {
  background: #4caf50;
  color: #fff;
  border-color: #4caf50;
}

.faq-tabs .nav-link:hover {
  background: #4caf50;
  color: #fff;
}

.faq-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.faq-content h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-content p {
  color: #666;
  line-height: 1.7;
}

.faq-tabs .nav-link {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 14px 18px;
  font-weight: 500;
  border: 1px solid #eee;
  transition: 0.3s;
}

.faq-tabs .nav-link.active,
.faq-tabs .nav-link:hover {
  background: #4caf50;
  color: #fff;
}

.faq-content {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.accordion-item {
  border: none;
  margin-bottom: 5px;
  border-radius: 12px;
  overflow: hidden;
}

.accordion-button {
  background: #f8f9fa;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background: #9AAC40;
  color: #fff;
}
 .faq-heading {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  /* Accordion button custom styling */
  .faq-btn {
    position: relative;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid #e0e0e0;
    padding-right: 2.5rem;
  }

  /* Add + / - icons */
  .faq-btn::after {
    content: "+";
    position: absolute;
    right: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.2s ease, content 0.2s ease;
  }

  .faq-btn.collapsed::after {
    content: "+";
  }

  .faq-btn:not(.collapsed)::after {
    content: "–";
  }

  /* Accordion body styling */
  .accordion-body {
    /* background-color: #fff; */
    font-size: 0.95rem;
    color: #555;
  }

  /* Add subtle shadow and rounded effect */
  .accordion-item {
    transition: all 0.3s ease;
  }

  .accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }

  .testimonial-section {
  background: #f8f9fa;
}
.carousel-item .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.carousel-item .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100%, 100%;
}
@media (max-width: 767px) {
  .carousel-item .card {
    padding: 2rem 1.5rem;
  }
}

.ftco-testimonial .item {
  padding: 15px;
}
.testimonial-content p {
  font-size: 1rem;
  color: #555;
}
.testimonial-card {
  background: #fff;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.testimonial-card img {
  border: 3px solid #28a745;
}

/* Sidebar */
.sidebar {
  min-height: 100vh;
  background-color: white !important;
  transition: all 0.3s ease;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.08);

  /* Border */
  border-right: 1px solid #e5e7eb;
}

/* Sidebar links */
.sidebar a {
  color: #000 !important;
  padding: 12px 20px;
  display: block;
  text-decoration: none;
  border-radius: 6px;
  margin: 4px 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Hover */
.sidebar a:hover {
  background-color: #000 !important;
  color: #fff !important;
}

/* Active */
.sidebar a.active {
  background-color: #000 !important;
  color: #fff !important;
  font-weight: bold;
}


.footer-modern {
  font-size: 12px;
}

.footer-logo {
  max-width: 100px;
}

.footer-title {
  font-weight: 600;
;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  color: #555;
}

.footer-contact i {
  color: #4A7059;
  margin-right: 8px;
}

.footer-text {
  color: #666;
  line-height: 1.7;
}

#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background:#4A7059;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#backToTop:hover {
  background: #4A7059;
  transform: translateY(-4px);
}

.divide-section {
  position: relative;
  padding: clamp(60px, 8vw, 120px) 0;
  background-color: #ffffff;
padding:100px 0px;
  background-repeat: repeat-x;
  background-position: center top;
}





@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Custom Dropdown Design ===== */



/* Mobile friendly */
@media (max-width: 768px) {
  .custom-select {
    font-size: 15px;
  }
}

.image-preview-box {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px dashed #dee2e6;
  position: relative;
}

.image-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-preview-box .badge {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
}

.animate-slide-up {
  animation: slideUpFade .6s ease both;
}
.ftco-menu {
  padding: 80px 0;
}

.nav-pills .nav-link {
  color: #333;
  background-color: ##9AAC40;;
  border: 2px solid transparent;
  margin: 0 5px;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.nav-pills .nav-link:hover {
  background-color: ##9AAC40;;
  transform: translateY(-2px);
}

.nav-pills .nav-link.active {
  background-color: #28a745;
  color: white;
  border-color: #28a745;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.menu-wrap {
  background: white;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.menu-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.menu-img {
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.menu-wrap:hover .menu-img {
  transform: scale(1.05);
}

.menu-wrap .text h5 {
  margin: 15px 0 10px;
  font-weight: 600;
  color: #333;
}

.menu-wrap .text h5 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-wrap .text h5 a:hover {
  color: #28a745;
}

.menu-wrap .text p {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
  min-height: 40px;
}

.menu-wrap .price {
  font-size: 24px;
  font-weight: bold;
  color: #28a745;
  margin: 15px 0;
}

.order-btn {
  transition: all 0.3s ease;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 25px;
}

.order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
  background:white;
  color:black !important;
}

.custom-pills .nav-link {
    color: #333;
    background: #fff;
    margin: 5px;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.custom-pills .nav-link.active {
    background: #25D366 !important; /* WhatsApp Green */
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.product-card {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.product-img {
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img {
    transform: scale(1.1);
}
.price-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 800;
    color: #28a745;
    font-size: 0.85rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.btn-whatsapp {
    background: #128C7E;
    color: white;
    font-weight: 600;
    border: none;
    transition: background 0.3s ease;
      border-radius:50px;

}
.btn-whatsapp:hover {
    background: white;
    color: black;
    border-radius:50px;
    border:1px solid black
}
.image-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.4);
    padding: 10px 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}
.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover; 
    object-position:center center;
    transition: transform 0.3s ease;
    border-radius:20px;
}

.product-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Shadow and border radius */
.product-img-wrapper {
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@keyframes slideUpFade {
  from {opacity:0; transform:translateY(20px);}
  to {opacity:1; transform:translateY(0);}
}



.sub-footer-contact {
  background: #eaf3ed;
  padding: 60px 0;
}

.contact-box {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  background: #8FA891;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}


.contact-box h6 {
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.contact-box a {
  color: #374151;
  font-weight: 500;
  text-decoration: none;
}

.contact-box a:hover {
  color: #8FA891;
}

.contact-box p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

/* Highlight WhatsApp */
.contact-box.highlight {
  border: 2px solid #25D366;
}

.icon-circle:before {
    content: none !important;
}

/* Mobile spacing */
@media (max-width: 767px) {
  .sub-footer-contact {
    padding: 40px 0;
  }
}
.badge-icon {
  transition: all 0.4s ease;
  cursor: pointer;
}

.badge-icon .icon {
  transition: transform 0.4s ease, color 0.4s ease;
}

.badge-icon:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.badge-icon:hover .icon {
  transform: scale(1.3) rotate(10deg);
  color: #ff6b6b; /* Accent color on hover */
}

.hover-effect::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  /* background: radial-gradient(circle at center, rgba(255,107,107,0.2), transparent 10%); */
  transform: scale(0);
  transition: transform 0.5s ease;
  z-index: 0;
  border-radius: 50%;
}

.hover-effect:hover::before {
  transform: scale(1);
}

.badge-icon p {
  position: relative;
  z-index: 1;
}
.contact-box {
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contact-box .icon {
  color: #ff6b6b;
}

.map-container iframe {
  border: 0;
}
/* Navbar Google Translate */
/* Hide Powered by Google */
.goog-logo-link {
  display: none !important;
}

.goog-te-gadget span {
  display: none;
}

/* Style the dropdown */
.goog-te-combo {
  background: transparent !important;
  color: black !important;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 14px;
}

.goog-te-gadget .goog-te-combo {
    margin: 4px 0 !important;
    color: white !important;
}

/* ========== SLIDE UP ANIMATION ========== */
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.8s ease forwards;
}

.slide-up.delay-1 {
  animation-delay: 0.2s;
}

.slide-up.delay-2 {
  animation-delay: 0.4s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== CONTACT BOX STYLES ========== */
.help-box,
.form-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.help-box:hover,
 {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ========== MIDDLE VERTICAL LINE ========== */
.with-divider {
  position: relative;
}

.with-divider::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    #dee2e6,
    transparent
  );
}

/* ========== CONTACT ITEMS ========== */
.contact-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-item .icon {
  font-size: 34px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Image styling */
.about-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* Rotating Circle Wrapper */
.circle-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

/* Circle Animation */
.rotating-circle {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid #ff6b6b; /* circle color */
  border-radius: 50%;
  animation: rotateCircle 8s linear infinite;
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.4);
}

/* Logo in the center */
.logo-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; /* adjust size */
  height: 80px;
  border-radius: 50%;
  z-index: 2;
}

/* Rotate keyframes */
@keyframes rotateCircle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}




/* ========== RESPONSIVE FIXES ========== */
@media (max-width: 767px) {
  .with-divider::before {
    display: none; /* remove vertical line on mobile */
  }

  .help-box,
  .form-box {
    margin-bottom: 20px;
  }
}


.sec-title {
    position: relative;
    padding-bottom: 25px;
   

    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 300px auto;
}


.about-image-stack {
    position: relative;
    max-width: 420px;
    margin: auto;
}

/* Base image style */
.about-image-stack img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Back image */
.about-image-stack .img-back {
    position: absolute;
    top: -25px;
    left: -25px;
    z-index: 1;
    transform: rotate(-6deg);
    opacity: 0.95;
}

/* Front image */
.about-image-stack .img-main {
    position: relative;
    z-index: 2;
    transform: rotate(3deg);
}

/* Hover animation */
.about-image-stack:hover .img-main {
    transform: rotate(1deg) scale(1.03);
}

.about-image-stack:hover .img-back {
    transform: rotate(-3deg) scale(1.02);
}

.about-image-overlap {
    position: relative;
    width: 430px;
    max-width: 100%;
}


.about-image-overlap::after {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 50%;
    width: 80%;
    height: 28px;
    background: rgba(0, 0, 0, 0.28);
    filter: blur(24px);
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

/* Ensure images stay above shadow */
.about-image-overlap img {
    position: relative;
    z-index: 2;
}
/* Common image style */
.about-image-overlap img {
    width: 100%;
    border-radius: 10px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    transition: all 0.45s ease;
}

/* Back image (rotated & offset) */
.about-image-overlap .img-back {
    position: absolute;
    top: -35px;
    left: -35px;
    z-index: 1;
    transform: rotate(-8deg);
    opacity: 0.95;
}

/* Front image */
.about-image-overlap .img-front {
    position: relative;
    z-index: 2;
    transform: rotate(3deg);
}
.about-image-overlap:hover::after {
    filter: blur(28px);
    opacity: 0.35;
}


/* Hover animation (subtle premium feel) */
.about-image-overlap:hover .img-front {
    transform: rotate(1deg) scale(1.04);
}

.about-image-overlap:hover .img-back {
    transform: rotate(-5deg) scale(1.02);
}
.about-section {
  position:relative;
  padding: clamp(10px, 8vw, 100px) 0;
   background-repeat: no-repeat;
  background-position: -100px 20%;
}

.theme-btn {
  position: relative;
  display: inline-block;
  color: #010101;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  border: 1px solid #010101;
  padding: 10px 60px 10px 20px;
  line-height: 26px;
  border-radius: 22px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Icon container */
.theme-btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 100%;
  font-size: 16px;
  color: #fff;
  background-color: #010101;
  border-left: 1px solid transparent;
  border-radius: 0 22px 22px 0;
  transition: all 0.4s ease;
}


.theme-btn:hover {
  color: white !important;
  border-color: #010101;
  background-color: #010101;
}

.theme-btn:hover .icon {
  transform: translateX(5px);
  background-color: #000;
  color:white;
}




.theme-btn:hover .icon::after {
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;     
  gap: 14px;
  justify-content: flex-start; 
}


.footer-social .social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}


.footer-social .social-icon:hover {
  background: #eaf3ed;
  color: #111;           
  transform: translateY(-3px) scale(1.1); 
}

.certification-slider .cert-slide {
  padding: 0 10px;
  display: inline-block;
  transition: transform 0.3s;
}

.certification-slider .cert-slide img:hover {
  transform: scale(1.1);
}

/* .certification-slider .cert-slide img {
  transition: transform 0.3s ease;
}
.certification-slider .cert-slide:hover img {
  transform: scale(1.1);
} */

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-social {
    justify-content: center; /* Center on tablets */
    gap: 12px;
  }

  .footer-social .social-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .footer-social {
    justify-content: center; 
    gap: 10px;
  }

  .footer-social .social-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .theme-btn {
    padding: 10px 40px 10px 15px;
    font-size: 12px;
    width:50%;
    
  }

  .theme-btn .icon {
    width: 40px;
    font-size: 12px;
  }
}


/* Mobile responsive */
@media (max-width: 768px) {
    .about-image-overlap {
        width: 320px;
    }

    .about-image-overlap .img-back {
        top: -18px;
        left: -18px;
    }
}

@media (max-width: 480px) {
    .about-image-overlap .img-back {
        display: none;
    }

    .about-image-overlap img {
        transform: none !important;
    }
}

.animated-link {
  position: relative;
  display: inline-block;
  border-bottom:1px solid white;
  color: white !important;
  font-weight: bold;
  font-size: 16px;
 text-transform:uppercase;
  
 
  transition: color 0.3s ease;
}


/* Hover animation */


/* Responsive */
@media (max-width: 768px) {
  .animated-link {
    font-size: 14px;
    margin-top: 5px;
  }
}
.sub-footer-contact .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
}
.sub-footer-contact .contact-box:hover {
  transform: translateY(-5px);
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
@media (max-width: 767px){
  .sub-footer-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
  .sub-footer-contact .icon-circle {
    margin-bottom: 10px;
  }
}

.category-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
}
.category-header {
  background-color: #f0f4f0; /* Light background like screenshot */
  border-radius: 12px;
  overflow: hidden;
}

.category-header .category-image-wrapper img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .category-header .category-image-wrapper img {
    max-height: 200px;
    margin-top: 20px;
  }
}

@media (min-width: 1200px) {
  .col-lg-1-5 {
    flex: 0 0 14%; /* 100 / 8 = 12.5% width */
    max-width: 14%;
  }
}


.img-container {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

/* Zoom inside container */
.img-container .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mini-product-card:hover .img-container .product-img {
    transform: scale(1.1);
}

/* Overlay */
.mini-product-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    background: rgba(0,0,0,0.5);
    transition: opacity 0.3s;
}

.mini-product-card:hover .overlay {
    opacity: 1;
}

/* Order Now Button */
.overlay .order-btn {
    border-radius: 0;
    font-size: 0.85rem;
}

/* Search icon top right */
.overlay .search-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

/* Card body */
.mini-product-card .card-body p {
    margin-bottom: 0.2rem;
}

/* Responsive adjustments */
@media (max-width: 575.98px) {
    .img-container {
        height: 140px;
    }
}

.category-scroll::-webkit-scrollbar {
  display: none; /* hide scrollbar */
}
.category-scroll {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.whatsapp-banner {
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.whatsapp-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.whatsapp-banner h2 {
  font-size: 2.2rem;
}

@media (max-width: 768px) {
  .whatsapp-banner h2 {
    font-size: 1.6rem;
  }
}
