
                    .whatsapp-float {
                        position: fixed;
                        width: 62px;
                        height: 62px;
                        bottom: 25px;
                        right: 25px;
                        background: #25d366;
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
                        z-index: 9999;
                        transition: 0.3s ease;
                        text-decoration: none;
                    }

                    .whatsapp-float:hover {
                        transform: scale(1.08);
                        background: #20ba5a;
                    }

                    .whatsapp-float svg {
                        width: 30px;
                        height: 30px;
                    }

                    @media(max-width:768px) {

                        .whatsapp-float {
                            width: 58px;
                            height: 58px;
                            bottom: 20px;
                            right: 20px;
                        }

                    }
                