@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
	color: #4a5565;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}

.fixedCallButton {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #000000;
	color: #ffffff;
	font-size: 22px;
	padding: 20px 30px;
	border-radius: 50px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	z-index: 1000;
	width: 90%;
	max-width: 500px;
	transition: background-color 0.3s ease;
	overflow: hidden;
	position: fixed;
}

.fixedCallButton::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 200%;
	height: 100%;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 70%);
	animation: thunder-effect 2s infinite ease-in-out;
	transform: skewX(-30deg);
	border-radius: 50px;
}

.fixedCallButton:hover {
	background-color: #444444;
}

.fixedCallButton:hover::before {
	animation-play-state: paused;
}

/* Responsive Styles */
@media (max-width:767px) {
	.fixedCallButton {
		bottom: 10px;
		font-size: 18px;
		padding: 15px 20px;
	}

}

@keyframes thunder-effect {
	0% {
		left: -100%;
	}

	100% {
		left: 100%;
	}

}