.dr1028floatingbuttons .floating-buttons {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10000;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-end;
}

.dr1028floatingbuttons .fab-btn {
	width: 60px;
	height: 60px;
	border-radius: 50% 50% 40% 60%/50% 40% 60% 50%; /* Leaf shape */
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 24px;
	color: #fff;
	background: linear-gradient(145deg, #66bb6a, #2e7d32);
	/* Fresh leaf gradient */
	box-shadow: inset -2px -2px 4px rgba(255, 255, 255, 0.2), 2px 4px 12px
		rgba(46, 125, 50, 0.4);
	border: 2px solid #a5d6a7;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dr1028floatingbuttons .fab-btn:hover {
	transform: scale(1.12) rotate(-2deg);
	box-shadow: 0 10px 20px rgba(46, 125, 50, 0.5);
}

.dr1028floatingbuttons .fab-btn .icon {
	font-size: 26px;
	color: #ffffff;
}

.dr1028floatingbuttons .fab-btn .label {
	display: none;
}

.dr1028floatingbuttons .fab-btn:hover .label {
	display: block;
	position: absolute;
	right: 72px;
	background: #1b5e20;
	color: #a5d6a7;
	padding: 7px 14px;
	border-radius: 12px;
	font-size: 15px;
	font-family: 'Noto Sans Telugu', sans-serif;
	white-space: nowrap;
	font-weight: 600;
	box-shadow: 0 4px 14px rgba(27, 94, 32, 0.3);
}

/* Earthy Call Button */
.dr1028floatingbuttons .fab-btn.phone {
	background: linear-gradient(135deg, #a1887f, #4e342e);
	box-shadow: 0 4px 12px rgba(141, 110, 99, 0.4);
	border-color: #d7ccc8;
}

.dr1028floatingbuttons .fab-btn.phone:hover {
	box-shadow: 0 8px 20px rgba(78, 52, 46, 0.6);
	transform: scale(1.12) rotate(2deg);
}

/* Scroll to Top: Forest Green */
.dr1028floatingbuttons .fab-btn.top {
	background: linear-gradient(135deg, #558b2f, #33691e);
	color: #c5e1a5;
	box-shadow: 0 4px 12px rgba(85, 139, 47, 0.4);
	border-color: #aed581;
}

.dr1028floatingbuttons .fab-btn.top:hover {
	box-shadow: 0 8px 20px rgba(51, 105, 30, 0.6);
	color: #e6f4d3;
	transform: scale(1.12) rotate(-1deg);
}

/* WhatsApp Green */
.dr1028floatingbuttons .fab-btn.whatsapp {
	background: linear-gradient(135deg, #43a047, #1b5e20);
	box-shadow: 0 4px 12px rgba(67, 160, 71, 0.4);
	border-color: #a5d6a7;
}

.dr1028floatingbuttons .fab-btn.whatsapp:hover {
	box-shadow: 0 8px 20px rgba(56, 142, 60, 0.6);
	transform: scale(1.12) rotate(2deg);
}

/* Mobile Responsive */
@media screen and (max-width: 480px) {
	.dr1028floatingbuttons .fab-btn {
		width: 50px;
		height: 50px;
		font-size: 20px;
		border-radius: 50% 50% 40% 60%/50% 40% 60% 50%;
	}
	.dr1028floatingbuttons .fab-btn:hover .label {
		right: 60px;
		font-size: 13px;
		padding: 6px 12px;
	}
}