<style>
/* CSS for the buttons and animations */
.floating-social-buttons {
position: fixed;
top: 50%; /* Vertically center the container */
transform: translateY(-50%); /* Adjust to true center */
right: 20px; /* Position from the right side */
z-index: 9999;
display: flex;
flex-direction: column;
gap: 15px;
}
.floating-social-buttons a {
width: 50px;
height: 50px;
background-color: #ffffff;
border-radius: 50%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
justify-content: center;
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.floating-social-buttons a:hover {
transform: scale(1.1);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.floating-social-buttons img {
width: 30px;
height: 30px;
}
/* Blinking animation */
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.whatsapp-button {
animation: blink 2s infinite;
}
</style>
<div class="floating-social-buttons">
<a href="https://whatsapp.com/channel/0029Vb9G3S3EgGfSKZTFiV1E" target="_blank" rel="noopener noreferrer" class="whatsapp-button">
<img src="https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg" alt="WhatsApp">
</a>
<a href="https://t.me/NEWS24UPDATESS" target="_blank" rel="noopener noreferrer">
<img src="https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg" alt="Telegram">
</a>
</div>