.btn-whatsapp {
	background-color: #25d366;
	color: white;
	font-weight: 600;
	transition: box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
	background-color: #1dbe58;
	color: white;
	text-decoration: none;
}

.nav-underline {
	display: flex;
	flex-direction: column;
	justify-content: center; /* Center items vertically */
}

.nav-underline .nav-link {
	position: relative;
	padding: 0.5rem 1rem; /* Adjust padding as needed */
	border: 0;
}

.nav-underline .nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px; /* Height of the underline */
	background-color: white; /* Color of the underline */
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.nav-underline .nav-link:hover::after,
.nav-underline .nav-link.active::after {
	transform: scaleX(1);
}
