.hum-hai-na-container {
	position: fixed;
	bottom: 5px;
	right: 20px;
	z-index: 9999;
	cursor: pointer;
}
/* Image Style */
.hum-hai-na-img {
	width: 140px;
	height: auto;
	transition: transform 0.3s ease;
	 animation: bounce 2s infinite;
}
/* Bounce Keyframes */
@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}
/* Shake Keyframes */
@keyframes shake {
	0% { transform: translate(0px, 0px); }
	25% { transform: translate(2px, -2px); }
	50% { transform: translate(-2px, 2px); }
	75% { transform: translate(2px, 2px); }
	100% { transform: translate(0px, 0px); }
}
/* Hover effect on image */
.hum-hai-na-container:hover .hum-hai-na-img {
	transform: scale(1.1);
}
/* Tooltip */
.hum-hai-na-tooltip {
	position: absolute;
	bottom: 60px;
	right: -20px;
	background: #000;
	color: #fff;
	padding: 2px 4px;
	border-radius: 6px;
	font-size: 11px;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
/* Show on hover */
.hum-hai-na-container:hover .hum-hai-na-tooltip {
	opacity: 1;
	visibility: visible;
}