/* <!-- Floating Mutual Fund Button --> */
/* <!-- Floating Mutual Fund Button (Only Image, Transparent, Left Side) --> */

.mf-popup-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .mf-popup-btn img {
    width: 120px; /* Adjust as needed */
    height: auto;
    display: block;
    border: none;
    outline: none;
    box-shadow: none;
  }

  .mf-popup-btn:hover {
    transform: translateY(-3px);
  }

  @media (max-width: 768px) {
    .mf-popup-btn img {
      width: 90px;
    }
    .mf-popup-btn {
      bottom: 20px;
      left: 20px;
    }
  }



  /* WhatsApp Floating Button Style */
.whatsapp-float {
  position: fixed;
  bottom: 25px;        /* distance from bottom */
  right: 25px;         /* distance from right */
  width: 60px;
  height: 60px;
  /*background-color: #25d366; */  /* WhatsApp green */
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  /*box-shadow: 2px 2px 6px rgba(0,0,0,0.3);*/
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  /*background-color: #25d366;*/
}

.whatsapp-float img {
  width: 60px;
  height: 60x;
}





