.group:hover .absolute {
  background-color: #0073E6 !important;
}
      /* ==== Journey Animation ==== */
      .journey-step {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.7s ease;
      }

      .journey-step.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .post-content p 
   {
       margin-bottom:10px;
   }
   .float-btn {
    position: fixed;
    left: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-float {
    bottom: 20px;
}

.call-float {
    bottom: 85px;
    background: #0d6efd;
    display: none;
}

@media (max-width: 768px) {
    .call-float {
        display: flex;
    }
}

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}