.dr1049floatingbuttons .floating-buttons {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-end;
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
}

.dr1049floatingbuttons .fab-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #fff;
	position: relative;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
	border: 3px solid transparent;
}

/* Hover Glow */
.dr1049floatingbuttons .fab-btn:hover {
	transform: scale(1.12) rotate(-2deg) translateY(-4px);
	box-shadow: 0 14px 26px rgba(0, 0, 0, 0.5);
}

.dr1049floatingbuttons .fab-btn .icon {
	color: #ffffff;
	font-size: 24px;
}

.dr1049floatingbuttons .fab-btn .label {
	display: none;
}

.dr1049floatingbuttons .fab-btn:hover .label {
	display: block;
	position: absolute;
	right: 72px;
	top: 50%;
	transform: translateY(-50%);
	background: #123556; /* Deep Blue panel */
	color: #FFD54F; /* Gold text */
	padding: 7px 14px;
	border-radius: 12px;
	font-size: 14px;
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
	font-weight: 600;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
	white-space: nowrap;
	transition: all 0.3s ease;
}

/* WhatsApp – Emerald Green */
.dr1049floatingbuttons .fab-btn.whatsapp {
	background: linear-gradient(135deg, #1b5e20, #43a047);
	border-color: #a5d6a7;
}

/* Share – Royal Ruby */
.dr1049floatingbuttons .fab-btn.share {
	background: linear-gradient(135deg, #880e4f, #c2185b);
	border-color: #f8bbd0;
}

/* Call – Rich Bronze */
.dr1049floatingbuttons .fab-btn.phone {
	background: linear-gradient(135deg, #4e342e, #3e2723);
	border-color: #d7ccc8;
}

/* Top – Vibrant Gold */
.dr1049floatingbuttons .fab-btn.top {
	background: linear-gradient(135deg, #fbc02d, #ffb300);
	border-color: #ffe0b2;
}

/* Mobile Styles */
@media screen and (max-width: 480px) {
	.dr1049floatingbuttons .fab-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
	.dr1049floatingbuttons .fab-btn .icon {
		font-size: 20px;
	}
	.dr1049floatingbuttons .fab-btn:hover .label {
		right: 60px;
		font-size: 13px;
		padding: 6px 10px;
	}
}