        .whatsapp-float {
            background-color: #13e761;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 70px;
            width: 70px;
            position: fixed;
            left: 20px;
            bottom: 20px;
            z-index: 999;
            border-radius: 50%;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            object-fit: cover;
            text-decoration: none;
            transform: scale(1.1);
            animation: whatsapp 2s infinite ease-in-out;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .whatsapp-float img {
            width: 70px;
            height: 70px;
            object-fit: cover;
        }

        /* Animation keyframes */
        @keyframes whatsapp {
            0% {
                box-shadow: 0 0 0 0 rgba(17, 197, 56, 0.6);
                transform: scale(1);
            }

            70% {
                box-shadow: 0 0 0 20px rgba(222, 146, 156, 0);
                transform: scale(1.05);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(222, 146, 156, 0);
                transform: scale(1);
            }
        }


        .email-float {
            background-color: #de929c;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 70px;
            width: 70px;
            position: fixed;
            right: 20px;
            /* Adjust position if WhatsApp is at 20px */
            bottom: 20px;
            z-index: 999;
            border-radius: 50%;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            transform: scale(1.1);
            animation: emaillogo 2s infinite ease-in-out;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            color: #fff;
            font-size: 30px;
        }

        @keyframes emaillogo {
            0% {
                box-shadow: 0 0 0 0 #de929c;
                transform: scale(1);
            }

            70% {
                box-shadow: 0 0 0 20px rgba(222, 146, 156, 0);
                transform: scale(1.05);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(222, 146, 156, 0);
                transform: scale(1);
            }
        }

        .email-logo {
            color: white;
            font-size: 32px;
        }


        .call-float {
            background-color: blue;
            /* Light blue */
            display: flex;
            justify-content: center;
            align-items: center;
            height: 70px;
            width: 70px;
            position: fixed;
            left: 130px;
            /* Adjust to avoid overlapping with WhatsApp & Email */
            bottom: 20px;
            z-index: 999;
            border-radius: 50%;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            transform: scale(1.1);
            animation: calllogo 2s infinite ease-in-out;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            color: #fff;
            font-size: 30px;
        }

        .call-logo {
            color: white;
            font-size: 32px;
        }

        @keyframes calllogo {
            0% {
                box-shadow: 0 0 0 0 blue;
                transform: scale(1);
            }

            70% {
                box-shadow: 0 0 0 20px rgba(222, 146, 156, 0);
                transform: scale(1.05);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(222, 146, 156, 0);
                transform: scale(1);
            }
        }

            /* Popup Overlay */
    #popupModal {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    /* Popup Content */
    #popupModal .popup-content {
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      text-align: left;
      width: 90%;
      max-width: 400px;
    }

    /* Form Fields */
    .popup-content input[type="text"],
    .popup-content input[type="email"],
    .popup-content input[type="tel"] {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      box-sizing: border-box;
    }

    /* Checkbox */
    .popup-content label {
      display: flex;
      align-items: center;
      margin-top: 10px;
    }

    .popup-content label input {
      margin-right: 10px;
    }

    /* Buttons */
    .popup-content button {
      margin-top: 15px;
      padding: 10px 15px;
      background-color: #28a745;
      color: white;
      border: none;
      cursor: pointer;
      border-radius: 5px;
    }

    .close-btn {
      background-color: #dc3545;
      margin-left: 10px;
    }