.btn-whatsapp {
  background-color: #25D366; /* WhatsApp green */
  color: white;
  border-radius: 50px; /* Highly rounded corners */
  padding: 12px 25px;
  font-size: 1.2em;
  font-weight: 600;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  margin-top: 40px;
}
.btn-whatsapp:hover {
  background-color: #1DA851; /* Darker green on hover */
  transform: translateY(-2px); /* Slight lift effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: white; /* Ensure text color remains white on hover */
}
.btn-whatsapp i {
  margin-right: 10px;
  font-size: 1.4em;
}

.btn-call {
  background-color: #4169E1; /* Royal Blue */
  color: white;
  border-radius: 50px; /* Highly rounded corners */
  padding: 12px 25px;
  font-size: 1.2em;
  font-weight: 600;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-top: 20px; /* Space between buttons */
}
.btn-call:hover {
  background-color: #ff9999; /* Darker blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: white; /* Ensure text color remains white on hover */
}
.btn-call i {
  margin-right: 10px;
  font-size: 1.4em;
}

/* Base styling for floating icons */
.floating-icon-base {
  position: fixed;
  bottom: 150px;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}
.floating-icon-base:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon-float {
  background-color: #25D366; /* WhatsApp green */
  right: 20px; /* Position to the right */
}
.whatsapp-icon-float:hover {
  background-color: #1DA851; /* Darker green on hover */
}

.call-icon-float {
  background-color: #ff9999;
    right: 20px;
    bottom: 70px;
}
.call-icon-float:hover {
  background-color: #ff9999; /* Darker blue on hover */
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .btn-whatsapp, .btn-call {
      width: auto; /* Make buttons wider on small screens */
      font-size: 1.1em;
      padding: 10px 20px;
  }
  .floating-icon-base {
      width: 50px;
      height: 50px;
      font-size: 1.8em;
      /* bottom: 15px; */
  }
  .whatsapp-icon-float {
      right: 15px;
      bottom: 100px;
  }
  .call-icon-float {
      bottom: 30px; /* Adjust position for smaller icons (50px width + 10px margin) */
  }
}