.floating-chat-btn {
    position: fixed;
    bottom: 20px;      /* Distance from bottom */
    right: 20px;       /* Distance from right side */
    width: 60px;
    height: 60px;
    background-color: #25d366; /* WhatsApp Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;     /* Ensures it stays on top of other elements */
    transition: transform 0.3s ease-in-out;
}

.floating-chat-btn img {
    width: 35px;
    height: 35px;
}

.floating-chat-btn:hover {
    transform: scale(1.1); /* Slight grow effect on hover */
    background-color: #128c7e;
}

/* Tooltip (Optional) */
.tooltip-text {
    visibility: hidden;
    position: absolute;
    right: 70px;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.floating-chat-btn:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle; border-radius: 15px; }

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 2s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 100%) {
  .text {font-size: 11px}
}