@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;
    background-color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
}

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

.fixedCallButton {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: #ffffff;
	background-color: #00a6f4;
	font-size: 18px;
	padding: 12px 16px;
	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: 100%;
	max-width: 300px;
	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: #008ed0;
}

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

/* Responsive Styles */
@media (max-width:767px) {
	.fixedCallButton {
		bottom: 10px;
	}

}

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

	100% {
		left: 100%;
	}

}