/* WhatsApp Floating Button */
.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 25px;
	right: 25px;
	background-color: #25D366;
	color: #FFF;
	border-radius: 50%;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
	color: #FFF;
	text-decoration: none;
	transform: scale(1.08);
	box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
	margin-top: 0;
}

@media screen and (max-width: 767px) {
	.whatsapp-float {
		width: 52px;
		height: 52px;
		bottom: 18px;
		right: 18px;
		font-size: 26px;
	}
}
