
                    /* Pulsating WhatsApp Button */
                    .whatsapp-fixed {
                        position: absolute;
                        /* Change to absolute for specific placement */
                        top: 70%;
                        /* Adjust this for vertical positioning */
                        left: 20px;
                        /* Adjust this for horizontal positioning */
                        background-color: #25D366;
                        color: white;
                        font-size: 16px;
                        font-weight: bold;
                        padding: 12px 15px;
                        border-radius: 50px;
                        display: flex;
                        align-items: center;
                        text-decoration: none;
                        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
                        transition: transform 0.3s ease-in-out;
                        animation: pulse 1.5s infinite;
                    }

                    .whatsapp-fixed img {
                        width: 24px;
                        height: 24px;
                        margin-right: 8px;
                    }

                    /* Pulsing Animation */
                    @keyframes pulse {
                        0% {
                            transform: scale(1);
                        }

                        50% {
                            transform: scale(1.1);
                        }

                        100% {
                            transform: scale(1);
                        }
                    }
                