.sgp-floating-social {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sgp-floating-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: pulse 1.5s ease-out infinite;
}

.sgp-floating-icon:hover {
    transform: scale(1.1);
}

.sgp-whatsapp {
    background-color: #25D366;
    animation-name: pulse-whatsapp;
}

.sgp-telegram {
    background-color: #0088CC;
}

.sgp-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(0, 136, 204, 0);
    }
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}




/* Inline social icons */
.sgp-social-icons {
    display: inline-flex;
    gap: 15px; /* Adjust spacing between icons */
    justify-content: flex-start; /* Align icons as needed: flex-start, center, or flex-end */
    align-items: center;
    margin: 10px 0; /* Optional: Add margin for spacing within content */
    font-size: 30px;
}

.sgp-social-icons .sgp-icon {
    display: inline-block;
    width: 50px; /* Match the size of floating icons or adjust as needed */
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%; /* Match floating icon style or adjust */
    background: #fff; /* Example background, adjust to match theme */
    color: #000; /* Icon color, adjust to match theme */
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease; /* Combine transitions for smooth animation */
}

.sgp-social-icons .sgp-icon:hover {
    background: #f0f0f0; /* Hover background effect */
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.sgp-social-icons .sgp-icon.sgp-whatsapp {
    background: #25D366; /* WhatsApp green, adjust to match floating icon */
    color: #fff;
}

.sgp-social-icons .sgp-icon.sgp-telegram {
    background: #0088cc; /* Telegram blue, adjust to match floating icon */
    color: #fff;
}

.sgp-social-icons .sgp-icon img.sgp-icon-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}