.logo {
    width: 152px;
    height: 55px;
    display: block;
    max-width: 100%;
    background-color: white;
    border-radius: 60px;
}

.footer-logo {
    width: 150px;
    height: auto;
}


.ourservices-image {
    width: 200px;
    height: 180px;
}

.whatsapp-float {
  position: fixed;
  left: 20px;        /* Changed from right to left */
  bottom: 20px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c4a;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.back-to-top {
  position: fixed;
  right: 20px;        /* Fixed on right side */
  bottom: 20px;       /* Above the WhatsApp button */
  background-color: darkcyan;
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 1001;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.back-to-top:hover {
  background-color: #555;
}

