/*
** WhatsApp Floating Icon Styles
*/
.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 25px;
	right: 25px;
	background-color: #25D366; /* Official WhatsApp Green */
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.3s ease;
}

.whatsapp-float:hover {
	transform: scale(1.1); /* Slightly enlarges the icon on hover */
}