.floating-btn-13d3d3f0 {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 15px;
    background-color: #ff5722;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-width: 50px;
    width: 100%;
    box-sizing: border-box;
}

.floating-btn-13d3d3f0 .elementor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
}

/* Pulsing effect container */
.floating-btn-13d3d3f0::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 2px solid #ff5722;
    z-index: -1;
    opacity: 0;
    box-sizing: border-box;
}

.floating-btn-13d3d3f0:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.floating-btn-13d3d3f0:hover::before {
    animation: pulse-13d3d3f0 1.5s infinite;
}

@keyframes pulse-13d3d3f0 {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2) scaleY(1.4);
        opacity: 0;
    }
}