/* ===== Floating Buttons Wrapper ===== */
.dr1021floatingbuttons .floating-buttons {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-end;
}

/* ===== Circular Glassy Buttons ===== */
.dr1021floatingbuttons .fab-btn {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 22px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	border: 1.5px solid rgba(255, 255, 255, 0.3);
	position: relative;
	cursor: pointer;
}

/* Hover Effect */
.dr1021floatingbuttons .fab-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

/* ===== Icon Styling ===== */
.dr1021floatingbuttons .fab-btn .icon {
	font-size: 24px;
	color: #ffffff;
}

/* ===== Hide Labels by Default ===== */
.dr1021floatingbuttons .fab-btn .label {
	display: none;
}

/* ===== Show Telugu Labels on Hover ===== */
.dr1021floatingbuttons .fab-btn:hover .label {
	display: block;
	position: absolute;
	right: 65px;
	background: #ffffff;
	color: #00695c;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 14px;
	font-family: 'Noto Sans Telugu', sans-serif;
	white-space: nowrap;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===== SURYA BHAGAVAN HEALTH CARE Themed Colors ===== */
.dr1021floatingbuttons .fab-btn.whatsapp {
	background: linear-gradient(135deg, #43cea2, #185a9d);
	/* Green to Blue */
	box-shadow: 0 6px 16px rgba(24, 90, 157, 0.4);
}

.dr1021floatingbuttons .fab-btn.phone {
	background: linear-gradient(135deg, #42a5f5, #1e88e5);
	box-shadow: 0 6px 16px rgba(30, 136, 229, 0.4);
}

.dr1021floatingbuttons .fab-btn.top {
	background: linear-gradient(135deg, #66bb6a, #388e3c);
	box-shadow: 0 6px 16px rgba(56, 142, 60, 0.4);
}

/* ===== Responsive for Mobile ===== */
@media screen and (max-width: 480px) {
	.dr1021floatingbuttons .fab-btn {
		width: 46px;
		height: 46px;
		font-size: 20px;
	}
	.dr1021floatingbuttons .fab-btn:hover .label {
		right: 58px;
		font-size: 13px;
	}
}