  #callme {
    position: fixed;
    right: 15px;
    bottom: 12px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 99990;
  }

  #callme #callmeMain {
    border-radius: 50%;
    background-color: #00bcd4;
    width: 50px;
    height: 50px;
    animation: zcwmini2 1.5s ease-out infinite;
  }

  #callme #callmeMain:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(https://ss.zadarma.com/callbackWidget/images/mini.png);
    background-repeat: no-repeat;
    background-position: center center;
    animation: zcwphone2 1.5s linear infinite;
  }

  .btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    /* top: 120px;*/
    right: 80px;
    bottom: 12px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    text-decoration: none;
    border-radius: 50%;
    animation: pulse 1.5s ease-out infinite;
    z-index: 99990;
  }

  /* Remove underline and decoration on hover */
  a.btn-whatsapp-pulse:hover,
  #callme a:hover {
    text-decoration: none;
    color: white;
  }

  @keyframes pulse {
    0% {
      transform: scale(0.95);
      opacity: 0.8;
    }

    50% {
      transform: scale(1.1);
      opacity: 1;
    }

    100% {
      transform: scale(0.95);
      opacity: 0.8;
    }
  }

                /* Email floating button */
                .btn-email {
                  background: #ff5722;
                  color: white;
                  position: fixed;
                  right: 145px;
                  bottom: 12px;
                  font-size: 24px;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  width: 50px;
                  height: 50px;
                  text-decoration: none;
                  border-radius: 50%;
                  animation: pulse-email 1.5s ease-out infinite;
                  z-index: 99990;
                  will-change: transform, opacity;
                }

                /* Hover */
                a.btn-email:hover {
                  text-decoration: none;
                  color: white;
                }

                /* Email pulse animation */
                @keyframes pulse-email {
                  0% {
                    transform: scale(0.95);
                    opacity: 0.8;
                  }

                  50% {
                    transform: scale(1.1);
                    opacity: 1;
                  }

                  100% {
                    transform: scale(0.95);
                    opacity: 0.8;
                  }
                }
                }
    
              .contact-row {
                display: flex;
                align-items: flex-start;
                margin-bottom: 15px;
              }

              .icon-col {
                width: 40px;
                /* small fixed width for icon column */
                font-size: 20px;

                color: #ff0000a3;
                display: flex;
                justify-content: center;
              }

              .text-col {
                flex: 1;
                /* take remaining width */
                line-height: 1.5;
              }

              .text-col a {
                color: #007bff;
                text-decoration: none;
              }

              .text-col a:hover {
                text-decoration: underline;
              }

              @media (max-width: 768px) {
                .contact-row {
                  flex-direction: column;
                }

                .icon-col {
                  width: auto;
                  margin-bottom: 5px;
                }
              }