/* =================

PPL Custom Styles

================== */

.expert-wa{
    margin-top: 20px;
}
.expert-wa a{
   border: 1px solid #fff;
    padding: 10px 7px;
    border-radius: 10px;
    background-color: #fff;
}
.expert-wa a:hover{
    background-color: #84ea88;
}
.expert-wa img{
   width:30px;
}



/*WA floating button */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  animation: pulse 2s infinite;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }
}