/*==================================================================================
    Custom Stylesheet (Any custom styling you want to apply should be defined here).
====================================================================================*/

.has-submenu {
  position: relative;
}

.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 0;
  list-style: none;
  border: 1px solid #ccc;
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu li {
  padding: 5px 10px;
}

.submenu li a {
  text-decoration: none;
  color: #333;
}

.dropdown-icon {
  font-size: 0.6em;
  margin-left: 5px;
  vertical-align: middle;
}

.has-submenu:hover .dropdown-icon {
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

/* Update Pricing Features Layout */
.pricing-features .list-item li {
  width: 100%;
  float: none;
}

/* Override Text Transformation */
.text-transform-none {
  text-transform: none !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 99999;
  display: block;
  width: 100px;
  height: 100px;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: wa-bounce 2s ease-in-out infinite;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  animation-play-state: paused;
}

@keyframes wa-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 90px;
    height: 90px;
    right: 10px;
    bottom: 25px;
  }
}