/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

#testimonial h3,
#testimonial .testi-content p {
	color: #FFF !important;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#testimonial .testi-meta {
	color: #bf9456 !important;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Fixes */
iframe {
	max-width: 100% !important;
}

html,
body {
	overflow-x: hidden;
	width: 100%;
	position: relative;
}

#wrapper {
	overflow-x: hidden;
	width: 100%;
}

/* Floating Social Buttons */
.floating-social-btns {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.social-btn {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #FFF;
	font-size: 24px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none !important;
}

.social-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
	color: #FFF;
}

.social-btn.whatsapp {
	background-color: #25D366;
}

.social-btn.whatsapp:hover {
	background-color: #128C7E;
}

.social-btn.google {
	background-color: #4285F4;
}

.social-btn.google:hover {
	background-color: #3367D6;
}

/* Ensure SVG fills the button */
.social-btn svg {
	width: 28px;
	height: 28px;
}