.container-head {
	position: relative;
	background-image: url('../mc_img/4.webp'); /* Background Image */
	background-size: cover;
	background-position: center;
	height: 335px; /* Adjust height as needed */
	display: flex;
	justify-content: center;
	align-items: center;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6); /* Dark Overlay */
	z-index: 1;
}

.centered-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	color: white; /* White text for contrast */
	z-index: 2;
	position: relative;
	padding: 10px 20px;
}
.centered-heading h1 {
	color:white;
}
.centered-heading::before,
.centered-heading::after {
	content: "";
	display: inline-block;
	width: 150px; /* Adjust line width */
	height: 2px; /* Line thickness */
	background-color: white; /* White lines */
	margin: 0 15px; /* Space between the lines and the text */
}

@media (max-width: 768px) {
	.centered-heading {
		font-size: 20px;
	}
	.centered-heading::before,
	.centered-heading::after {
		width: 30px; /* Adjust line width for smaller screens */
	}
}

@media (max-width: 480px) {
	.centered-heading {
		font-size: 18px;
	}
	.centered-heading::before,
	.centered-heading::after {
		width: 60px; /* Even smaller lines for mobile */
	}
}
.whatsapp-float {
	position: fixed;
	bottom: 75px;
	right: 15px;
	background-color: #25D366;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	animation: pulse 1.5s infinite;
	z-index: 100;
}

.whatsapp-float i {
	font-size: 24px;
	color: #fff;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 5px rgba(37, 211, 102, 0.6);
	}
	50% {
		transform: scale(1.1);
		box-shadow: 0 0 15px rgba(37, 211, 102, 0.8);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 5px rgba(37, 211, 102, 0.6);
	}
}