/* Basic Styles for the Menu and WhatsApp Button */
.menu-button,
.whatsapp-desktop,
.whatsapp-mobile {
	z-index: 9000;
}

.menu-button {
	background-color: #007bff;
	color: white;
	padding: 10px;
	border: none;
	border-radius: 10px;
}

.whatsapp-desktop {
	background-color: green;
	color: white;
	padding: 10px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.whatsapp-cta {
	font-weight: 500;
	padding: 0.5rem 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Modal Styling */
.modal-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 100;
}

.modal-content {
	background-color: white;
	padding: 20px;

	width: 100vw;
	height: 100vh;
	margin: 0;
	border-radius: 0;
	text-align: center;
}

/* Modal content styling */
.modal-body a,
.modal-body span {
	display: block;
	width: 100%;
	text-align: left;
	font-size: 1.25rem;
	padding: 10px 20px;
	color: #000;
	text-decoration: none;
}

.modal-body a:hover {
	background-color: #f8f9fa;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.menu-button {
		left: 10px;
		top: 10px;
	}

	.whatsapp-desktop {
		left: auto;
		right: 10px;
		bottom: 10px;
		border-radius: 50%;
		padding: 12px;
	}

	.modal-menu {
		padding-top: 60px;
		/* Adjust for sticky header */
	}

	.whatsapp-mobile {
		position: fixed;
		right: 10px;
		bottom: 10px;
		width: 50px;
		height: 50px;
		background-color: green;
		color: white;
		padding: 15px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 1200;
	}

	.whatsapp-mobile i {
		font-size: 1.5rem;
	}
}


/* Sticky Header */
.header {
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 9000;
	/* Ensure it's above other elements */
	background-color: white;
	/* Adjust the color as needed */
	/* box-shadow: 0 4px 2px -2px gray; */
	/* Optional: adds a shadow to make it stand out */
}

.modal-fullscreen {
	display: block;
}

/* Service Section */
.service-section .card {
	border-radius: 1rem;
	transition: transform 0.2s ease-in-out;
}

.service-section .card:hover {
	transform: translateY(-4px);
}

.service-section .card .icon img {
	display: block;
	margin: 0 auto;
}

/* Responsive columns */
@media (max-width: 767.98px) {
	.comparison-table .service-card {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.icon-circle {
	width: 48px;
	height: 48px;
	font-size: 1.25rem;
	font-weight: bold;
	color: white;
	background-color: #007bff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.card li {
	list-style-position: outside;
	padding-left: 1.5em;
	/* space for the bullet or icon */
	text-indent: -0.7em;
	/* pulls the first line back to align with bullet */
}

.service-card-link {
	border: 2px solid #007bff;
	transition: transform 0.2s ease;
	transform: translateY(10%);
}


.service-card-link:hover {
	transform: translateY(0);
	background-color: #007bff;
	color: white;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}