body {
  font-family: 'Roboto', sans-serif;
  scroll-behavior: smooth;
}

.ff_roboto {
  font-family: 'Roboto', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.ff_montserrat {
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* Floating WhatsApp Button */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.4), 0 4px 6px -2px rgba(37, 211, 102, 0.2);
  z-index: 100;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(37, 211, 102, 0.5), 0 10px 10px -5px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  color: #FFF;
}

.float i {
  margin-top: 0 !important; /* Overriding previous inline style */
}

/* Base custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #00a6eb;
}
