/*.social-icons {
    position: fixed;
    z-index: 9999;
    display: flex;
}

.social-icons a {
    margin: 10px;
    padding: 10px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
	width: 44px;
	height: 44px;
	text-align: center;
}

.social-icons.bottom-left {
    bottom: 0px;
    left: 20px;
}

.social-icons.bottom-right {
    bottom: 0px;
    right: 20px;
}

.social-icons.bottom-center {
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}*/

.social-icons {
    position: fixed;
    right: 20px; /* Align to the right side */
    top: 50%; /* Position vertically in the center */
    transform: translateY(-50%); /* Adjust to perfect center */
    z-index: 9999;
    display: flex;
    flex-direction: column; /* Stack the icons vertically */
    align-items: center; /* Center align the icons horizontally */
}

@media (max-width: 480px) {
	.social-icons {
		right: 2px;
	}
}

.social-icons a {
    margin: 10px 0; /* Space between icons */
    padding: 10px;
    background-color: #0F1154;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

@media (max-width: 480px) {
	.social-icons a {
		background-color: rgba(15,17,84,0.7);
	}
}



/* Hover Effect */
.social-icons a:hover {
    color: #fff !important; /* Default hover color */
	transform: scale(1.03);
	transition: 0.3s ease all;
}
