.ayur-tpro-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ayur-tpro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures full coverage without stretching */
    object-position: center;
    /* Keeps image centered */
    display: block;
}
.whatsapp-compact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-compact img {
  width: 28px;
  height: 28px;
}

.whatsapp-compact:hover {
  transform: scale(1.1);
}