


/* Styles for the fixed contact button */
.contact-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: black;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.contact-button:hover {
  background-color: #333;
}

/* Styles for the phone icon */
.phone-icon {
  margin-right: 10px;
  font-size: 24px;
  animation: ring 1.5s infinite;
}

/* Keyframes for phone icon animation */
@keyframes ring {
  0% { transform: rotate(0); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(15deg); }
  40% { transform: rotate(-15deg); }
  50% { transform: rotate(0); }
  100% { transform: rotate(0); }
}

/* Ensure the button remains fixed and visible while scrolling */


/* Responsive design for mobile devices */
@media (max-width: 768px) {
  .contact-button {
    font-size: 14px;
    padding: 8px 16px;
    bottom: 15px;
    left: 15px;
  }

  .phone-icon {
    font-size: 20px;
    margin-right: 8px;
  }
}

@media (max-width: 480px) {
  .contact-button {
    font-size: 12px;
    padding: 6px 12px;
    bottom: 10px;
    left: 10px;
  }

  .phone-icon {
    font-size: 18px;
    margin-right: 6px;
  }
}

/* Styles for the fixed WhatsApp contact button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366; /* WhatsApp green color */
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.whatsapp-button:hover {
  background-color: #1EBE5F; /* Slightly darker green */
}

/* Styles for the WhatsApp icon */
.whatsapp-icon {
  margin-right: 10px;
  font-size: 24px;
  animation: bounce 1.5s infinite;
}

/* Keyframes for WhatsApp icon animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Ensuring the button remains fixed and visible while scrolling */


/* Responsive design for mobile devices */
@media (max-width: 768px) {
  .whatsapp-button {
    font-size: 14px;
    padding: 8px 16px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-icon {
    font-size: 20px;
    margin-right: 8px;
  }
}

@media (max-width: 480px) {
  .whatsapp-button {
    font-size: 12px;
    padding: 6px 12px;
    bottom: 10px;
    right: 10px;
  }

  .whatsapp-icon {
    font-size: 18px;
    margin-right: 6px;
  }
}