.nav-item a:hover {
  color: var(--color-secondary);
  border-bottom: 2.5px solid var(--color-secondary);
}

.nav-link {
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
}

.navbar-nav li:last-child a:hover {
  border: none !important;
}

a.nav-link.cart-countwrap {
  border: none !important;
}

.navbar-nav:last-child a:focus-visible {
  outline: none;
  border: none;
}

.grayscale {
  position: relative;
  z-index: 1;
}
.grayscale:hover {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

/* Feature cards: lift + brighten on hover */
.prodsercol1_3:hover {
  transform: translateY(-8px) scale(1.02);
}

.product-service-wrap .row > div:nth-child(1) .prodsercol1_3:hover {
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.6);
}

.product-service-wrap .row > div:nth-child(2) .prodsercol1_3:hover {
  box-shadow: 0 20px 60px rgba(78, 205, 196, 0.6);
}

.product-service-wrap .row > div:nth-child(3) .prodsercol1_3:hover {
  box-shadow: 0 20px 60px rgba(255, 217, 61, 0.65);
}

.prodcatwrap .prod-info {
  transition: all 0.3s ease; /* Add transition for smooth hover effect */
}
.prodcatwrap .prod-info:hover {
  transform: translateY(-5px); /* Adjust as needed */
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); /* Add box shadow on hover */
}

.prodcatwrap .prod-info .img-fluid {
  transition: transform 0.3s ease; /* Add transition for smooth image transform */
}
.prodcatwrap .prod-info:hover .img-fluid {
  transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
}

.letushelpyouwrap .container .listbtnstyle li a {
  z-index: 1;
  position: relative;
  transition: color 0.3s ease; /* Smooth transition for text color */
}

.letushelpyouwrap .container .listbtnstyle li {
  position: relative;
}
.letushelpyouwrap .container .listbtnstyle li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(
    to top,
    #033b62 0%,
    #033b62 50%,
    #033b62 50%,
    #033b62 100%
  );
  transition: height 0.3s ease;
  border-radius: inherit; /* Inherit border-radius from parent li */
  color: #fff;
  z-index: 0;
}
.letushelpyouwrap .container .listbtnstyle li:hover a {
  color: #fff; /* Change text color to white on hover */
}
.letushelpyouwrap .container .listbtnstyle li:hover::before {
  height: 100%;
}

.featuredproductswrap .fea-prod-info {
  transition: all 0.3s ease; /* Add transition for smooth hover effect */
}
.featuredproductswrap .fea-prod-info:hover {
  transform: translateY(-5px); /* Adjust as needed */
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); /* Add box shadow on hover */
}

.featuredproductswrap .fea-prod-info .img-fluid {
  transition: transform 0.3s ease; /* Add transition for smooth image transform */
}
.featuredproductswrap .fea-prod-info:hover .img-fluid {
  transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -moz-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
}

footer .footernav ul li a {
  transition: color 0.3s ease;
}
footer .footernav ul li a:hover {
  color: #ffd05c;
}

footer .copyright a {
  transition: color 0.3s ease;
}
footer .copyright a:hover {
  color: #ffd05c;
}
