html {
  scroll-behavior: smooth !important;
}
.whatsapp-float {
  position: fixed;
  bottom: 60px;
  right: 16px;
  z-index: 1000;
  cursor: pointer;
  border-radius: 50%;

  transition: transform 0.3s ease;
}

#features {
  scroll-margin-top: 80px; /* Adjust based on your fixed/sticky header */
}
#solutions {
  scroll-margin-top: 80px;
}
#whyus {
  scroll-margin-top: 80px;
}
#pricing {
  scroll-margin-top: 80px;
}
#faq {
  scroll-margin-top: 80px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* When accordion is OPEN */
.accordion-button:not(.collapsed) {
  background-color: #60bdec; /* Bootstrap Primary Color */
  color: #fff;
}

/* Optional: Make sure closed state looks normal */
.accordion-button.collapsed {
  background-color: #fff;
  color: #212529;
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.logo-hover-wrapper {
  position: relative;
  /* overflow: hidden; */
  cursor: pointer;
}

.logo-hover-wrapper img {
  transition: transform 0.5s ease; /* Smooth zoom transition */
}

.logo-hover-text {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.7); /* dark transparent */
  padding: 8px 16px;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 14px;
  white-space: nowrap;
}

.logo-hover-wrapper:hover .logo-hover-text {
  opacity: 1; /* Fade-in text */
}
