/*
Theme Name: Modave Child
Theme URI: https://modave.presslayouts.com/landing
Author: PressLayouts Team
Description: This is a child theme for Modave
Version: 1.0
Author URI: https://www.presslayouts.com/
Template: modave
Text Domain: modave-child
*/


@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(35, 52, 108, 0.6);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(35, 52, 108, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(35, 52, 108, 0);
    }
}



.floating-social-icons {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
    z-index: 9999;
	gap: 10px;
}

.floating-social-icons .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #f69c25;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
    border-radius: 50%;
    animation: pulse 2s infinite; /* 👈 pulse forever */
}

.floating-social-icons .social-icon svg {
    width: 25px;
}


.floating-social-icons .social-icon:hover {
    background: #23346c;
	color: #fff;
}

/* Custom colors per platform */
.floating-social-icons .facebook:hover { background: #f69c25; }
.floating-social-icons .twitter:hover { background: #f69c25; }