    .whatsapp-button {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 10;
        background-color: #25d366;
        color: white;
        padding: 15px 20px;
        border-radius: 50px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        font-size: 18px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
        }

        70% {
            transform: scale(1.05);
            box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        }

        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    .whatsapp-button img {
        width: 24px;
        height: 24px;
    }

    .social-bg-section {
        position: relative;
        overflow: hidden;
        background: #f7fdfb;
        padding: 100px 20px;
        text-align: center;
    }

    .social-icons-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
        top: 0;
        left: 0;
        pointer-events: none;
    }

    .social-icons-bg .icon {
        position: absolute;
        width: 60px;
        opacity: 0.09;
        filter: blur(1.2px);
        animation: floatDiagonal 25s infinite linear;
    }

    .icon.telegram {
        top: 5%;
        left: 10%;
        animation-delay: 0s;
    }

    .icon.messenger {
        top: 20%;
        left: 80%;
        animation-delay: 3s;
    }

    .icon.whatsappb {
        top: 60%;
        left: 15%;
        animation-delay: 1.5s;
    }

    .icon.facebook {
        top: 70%;
        left: 70%;
        animation-delay: 4s;
    }

    .icon.cart {
        top: 40%;
        left: 50%;
        animation-delay: 2s;
    }

    .icon.currency {
        top: 80%;
        left: 30%;
        animation-delay: 5s;
    }

    .icon.chart {
        top: 10%;
        left: 60%;
        animation-delay: 6s;
    }

    @keyframes floatDiagonal {
        0% {
            transform: translate(0, 0) rotate(0deg);
        }

        25% {
            transform: translate(20px, -20px) rotate(15deg);
        }

        50% {
            transform: translate(-15px, 15px) rotate(-10deg);
        }

        75% {
            transform: translate(10px, -10px) rotate(8deg);
        }

        100% {
            transform: translate(0, 0) rotate(0deg);
        }
    }

    .social-bg-section .content {
        position: relative;
        z-index: 1;
        color: #075e54;
    }

    .social-bg-section h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .social-bg-section p {
        font-size: 1.1rem;
        color: #444;
    }

    .icon {
        transform: translateY(50px) scale(0.9);
        opacity: 0;
        transition: all 1.5s ease-out;
    }

    .icon.active {
        opacity: 0.08;
        transform: translateY(0) scale(1);
        animation: scrollFloat 18s infinite linear;
    }

    @keyframes scrollFloat {
        0% {
            transform: translate(0, 0) rotate(0deg);
        }

        30% {
            transform: translate(10px, -10px) rotate(10deg);
        }

        60% {
            transform: translate(-10px, 15px) rotate(-10deg);
        }

        100% {
            transform: translate(0, 0) rotate(0deg);
        }
    }