   /* Live chat  */
      .whatsapp-float {
        position: fixed;
        bottom: 80px;
        right: 15px;
        background-color: #25d366;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        font-size: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        animation: blink-glow 1s infinite ease-in-out;
        transition: all 0.3s ease-in-out;
        -webkit-animation: blink-glow 1s infinite ease-in-out;
      }

      .whatsapp-float:hover {
        background-color: #fff;
        color: #25d366;
      }


      @keyframes blink-glow {
        0% {
          box-shadow: 0 0 10px #25d366, 0 0 20px #25d366;
        }
        50% {
          box-shadow: 0 0 20px #25d366, 0 0 30px #25d366;
        }
        100% {
          box-shadow: 0 0 10px #25d366, 0 0 20px #25d366;
        }
      }


.passport-img{
    height: 100px;
    width: 100px;
}
 
.menu {
            color: black;
        }
   /* Target the text links inside .services-content */




