    html {
      scroll-behavior: smooth;
    }

    #heroCarousel .carousel-inner img {
    height: 600px;
    width: 100%;
    object-fit: cover;
  }

  .whatsapp_float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    cursor: pointer;
  }
  .whatsapp_float img {
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
  }
  .whatsapp_float:hover img {
    transform: scale(1.1);
  }

  .nav-link {
  color: #333 !important;
  font-weight: 500;
  position: relative;
  transition: all .3s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 2px; background: #198754; transition: .3s;
}
.nav-link:hover, .nav-link.active { color: #198754 !important; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.btn-success {
  background: linear-gradient(90deg,#198754,#2ebd85);
  border: none; transition: .3s;
}
.btn-success:hover {
  background: linear-gradient(90deg,#2ebd85,#198754);
  transform: translateY(-2px);
}


/* Trust Card Styling */
.trust-card {
  transition: all 0.35s ease;
  border: 2px solid transparent;
  cursor: pointer;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  position: relative;
  overflow: hidden;
}

.trust-card:hover {
  transform: translateY(-10px);
  border-color: #198754;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Icon Hover Animation */
.icon-img {
  transition: transform 0.4s ease, filter 0.4s ease;
}
.trust-card:hover .icon-img {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0px 4px 6px rgba(13, 110, 253, 0.4));
}

/* Title and Paragraph */
.trust-card h5 {
  color: #198754;
  font-size: 1.1rem;
}
.trust-card p {
  color: #0a0a0a;
  font-size: 0.95rem;
  margin-top: 8px;
}

/* Responsive Centering */
@media (max-width: 768px) {
  .trust-card {
    margin-bottom: 1rem;
  }
}

/* Contact Card */
.contact-card {
  background: linear-gradient(145deg, #fff, #f1f3f6);
  border: 1px solid #dee2e6;
  border-radius: 20px;
  padding: 40px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Inputs & Textarea */
.contact-form .form-control {
  border-radius: 50px;
  border: 1.5px solid #ced4da;
  padding: 12px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form .form-control:focus {
  border-color: #198754;
  box-shadow: 0 0 12px rgba(25, 135, 84, 0.2);
  outline: none;
}
.contact-form textarea.form-control { min-height: 140px; padding-top: 14px; }

/* Labels */
.form-label { font-size: 0.95rem; color: #495057; font-weight: 500; }

/* Buttons */
.btn-gradient, .contact-btn {
  background: linear-gradient(90deg, #198754, #2ebd85);
  color: #ffffff;
  border: none;
  padding: 12px 40px;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-gradient:hover, .contact-btn:hover {
  background: linear-gradient(90deg, #2ebd85, #198754);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(25, 135, 84, 0.25);
}

/* Icons inside input */
.position-relative i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #198754;
  left: 18px;
}

/* Proper icon spacing inside inputs */
.icon-input {
  top: 50%;
  left: 22px; /* Adjusted for perfect centering */
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: #198754;
  z-index: 5;
}

/* Inputs and selects with icon padding */
.input-with-icon {
  padding-left: 3.5rem !important; /* adds good distance between icon and text */
  border-radius: 50px;
}

.input-with-icon-textarea {
  padding-left: 3.5rem !important;
  border-radius: 20px;
  padding-top: 1.2rem;
}


/* Responsive */
@media (max-width: 767px) {
  .form-control, .btn-gradient, .contact-btn { width: 100%; }
  .position-relative i { left: 15px; }
}



/* contact end  */

footer {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  background: linear-gradient(180deg, #198754 0%, #198754 100%);
}
.footer-link {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-link:hover {
  color: #2ebd85;
  transform: translateX(4px);
}
.social-icon img {
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 50%;
}
.social-icon:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 2px 5px rgba(46, 189, 133, 0.4));
}
footer input[type="email"] {
  border-radius: 50px;
  border: none;
  padding-left: 15px;
}
footer input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #2ebd85;
}
footer .btn-success {
  border-radius: 50px;
  background: linear-gradient(90deg, #198754, #2ebd85);
  border: none;
  transition: all 0.3s;
}
footer .btn-success:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #2ebd85, #198754);
}

/* Section Title */

#products {
  font-family: 'Poppins', sans-serif;
}

#products h2 {
  position: relative;
}

#products h2::after {
  content: "";
  width: 1px;
  height: auto;
  background: #198754;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Product Card */
.product-card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #fff;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(25, 135, 84, 0.2);
}

/* Product Image - full width, same height */
.product-card img,
.product-img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

/* Hover Zoom on Image */
.product-card:hover img {
  transform: scale(1.05);
}

/* Button Styling */
.product-card .btn-success {
  background: linear-gradient(90deg, #198754, #2ebd85);
  border: none;
  transition: all 0.3s ease;
}

.product-card .btn-success:hover {
  background: linear-gradient(90deg, #2ebd85, #198754);
  transform: translateY(-2px);
}



#about {
  font-family: 'Poppins', sans-serif;
}
#about h2 {
  position: relative;
}
#about h2::after {
  content: "";
  width: 90px;
  height: 3px;
  background: #198754;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}
.about-img-wrapper {
  overflow: hidden;
  border-radius: 20px;
  height: 500px;
}
.about-img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(25, 135, 84, 0.3);
}
#about .btn-success {
  background: linear-gradient(90deg, #198754, #2ebd85);
  border: none;
  transition: all 0.3s ease;
}
#about .btn-success:hover {
  background: linear-gradient(90deg, #2ebd85, #198754);
  transform: translateY(-2px);
}

.carousel-item {
  position: relative;
}
.carousel-item img {
  object-fit: cover;
  height: 90vh;
  filter: brightness(65%);
}
.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 600px;
}
.hero-left {
  left: 8%;
  right: auto;
}
.hero-right {
  right: 8%;
  left: auto;
}
.hero-title span {
  background: linear-gradient(90deg, #198754, #2ebd85);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-success {
  background: linear-gradient(90deg, #198754, #2ebd85);
  border: none;
  transition: all 0.3s ease;
}
.btn-success:hover {
  background: linear-gradient(90deg, #2ebd85, #198754);
  transform: translateY(-2px);
}
.btn-outline-light:hover {
  background: #2ebd85;
  border-color: #2ebd85;
  color: #fff;
}


/* feature product  */

#featured {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.product-img-wrapper {
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  width: 100%;
  max-width: 400px; /* controls overall size */
  margin: 0 auto;   /* center on mobile */
  aspect-ratio: 1 / 1; /* ensures square shape */
}

.featured-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover; /* fills square without stretching */
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.featured-img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(25, 135, 84, 0.25);
}


.product-badge {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-gradient {
  background: linear-gradient(90deg, #198754, #2ebd85);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #2ebd85, #198754);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  #featured h3 {
    text-align: center;
  }
  #featured p, #featured ul, #featured .btn {
    text-align: center;
  }
  .product-badge {
    left: 10px;
    top: 10px;
  }
}

/* !testiomal-- */

.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(25, 135, 84, 0.25);
}
.card p {
  font-size: 0.95rem;
  color: #333;
}

#cta .btn-light:hover {
  background-color: #fff;
  color: #2ebd85;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 189, 133, 0.25);
}