
		.floating-buttons {
			position: fixed;
			bottom: 25px;
			left: 25px;
			display: flex;
			flex-direction: column;
			gap: 15px;
			z-index: 9999;
		}

		.floating-buttons a {
			width: 55px;
			height: 55px;
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
			transition: all 0.3s ease;
			text-decoration: none;
		}

		/* WhatsApp */
		.whatsapp-btn {
			background: #25D366;
		}

		.whatsapp-btn:hover {
			background: #1ebe5d;
			transform: scale(1.1);
		}

		/* Call */
		.call-btn {
			background: #007bff;
			color: white !important;
			font-size: 22px;
		}

		.call-btn:hover {
			background: #0056b3;
			transform: scale(1.1);
		}
	
