.dr1051floatingbuttons .floating-buttons {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-end;
	font-family: 'Poppins', sans-serif;
}

/* Base Button */
.dr1051floatingbuttons .fab-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #ffffff;
	position: relative;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
	border: 2px solid rgba(255, 255, 255, 0.2);
	background: transparent;
}

/* Hover Effect */
.dr1051floatingbuttons .fab-btn:hover {
	transform: scale(1.12) translateY(-4px);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5);
}

/* Icon */
.dr1051floatingbuttons .fab-btn .icon {
	font-size: 24px;
}

/* Label */
.dr1051floatingbuttons .fab-btn .label {
	display: none;
}

.dr1051floatingbuttons .fab-btn:hover .label {
	display: block;
	position: absolute;
	right: 72px;
	top: 50%;
	transform: translateY(-50%);
	background: #0b1f17;
	color: #a7f3d0;
	padding: 8px 16px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(52, 211, 153, 0.35);
}

/* WhatsApp – Subhagruha Green */
.dr1051floatingbuttons .fab-btn.whatsapp {
	background: linear-gradient(135deg, #065f46, #34d399);
}

/* Share – Emerald Blue */
.dr1051floatingbuttons .fab-btn.share {
	background: linear-gradient(135deg, #0f766e, #2dd4bf);
}

/* Call – Gold Accent */
.dr1051floatingbuttons .fab-btn.phone {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	color: #1f2933;
}

/* Top – Dark Green */
.dr1051floatingbuttons .fab-btn.top {
	background: linear-gradient(135deg, #064e3b, #047857);
}

/* Mobile */
@media ( max-width : 480px) {
	.dr1051floatingbuttons .fab-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
	.dr1051floatingbuttons .fab-btn .icon {
		font-size: 20px;
	}
	.dr1051floatingbuttons .fab-btn:hover .label {
		right: 60px;
		font-size: 13px;
		padding: 6px 12px;
	}
}