<style>
/* Hide the call button on desktop */
@media (min-width: 768px) {
  .fixed-call-button {
    display: none;
  }
}

/* Style the call button */
.fixed-call-button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #007bff;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
}

/* Add a margin to the body to prevent the button from overlapping content */
body {
  margin-bottom: 50px;
}
</style>

<div class="fixed-call-button">
  <a href="tel:+919876978488" style="color: white; text-decoration: none;">Call Us: 9876978488</a>
</div>
