/* General Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

footer {
  background-color: #f8f8f8;
  padding: 20px;
  text-align: center;
}

/* Sticky WhatsApp Widget Styling */
.whatsapp-widget {
  position: fixed;
  bottom: 75px; /* Distance from the bottom of the screen */
  right: 20px;   /* Distance from the left of the screen */
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 1000; /* Ensures it stays above other elements */
}

.whatsapp-widget img {
  width: 35px;
  height: 35px;
}
