.why-us-section1 {
    padding: 60px 0;
    text-align: center;
}

.product-11 {
    display: inline-block;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.product-11 div {
    display: block;
    margin: 15px;
}
.product-11 img {
  width: 110px;
  height: 110px;
  object-fit: contain; /* or object-fit: cover; */
  background: #fff; /* optional, looks cleaner */
  transition: transform 0.3s ease;
}

.product-11 img:hover {
    transform: scale(1.05)
}
@media (max-width: 768px) {
    .product-11 {
        flex-direction: column;
        text-align: center;
    }
    .product-11 img {
        width: 60px;
        height: 60px;
        padding: 0px;
    }
}


#imagePopupOverlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.8);
   display: none;
   align-items: center;
   justify-content: center;
   z-index: 9999;
}
/* Popup image */
#imagePopupOverlay img {
   max-width: 90%;
   max-height: 90%;
   border: 5px solid white;
   border-radius: 10px;
}
/* Close cursor */
#imagePopupOverlay {
   cursor: zoom-out;
}
