:root {
	--herbal-green: #78be20;
	--dark-green: #4a8f00;
}


/*========================== Navbar =========================*/
.navbar {
	background-color: var(--herbal-green);
}
.navbar-brand {
	font-weight: bold;
	color: white !important;
	letter-spacing: 1px;
}
.nav-link {
	color: white !important;
	margin-right: 15px;
	transition: 0.3s;
}
.nav-link i {
	margin-right: 6px;
}
.nav-link:hover {
	color: #eaffd0 !important;
	transform: translateY(-2px);
}


/*========================== Footer ==========================*/
.footer {
	background: linear-gradient(135deg, var(--dark-green), var(--herbal-green));
	color: white;
	padding: 40px 0;
}
.footer h5 {
	font-weight: bold;
	margin-bottom: 15px;
}
.footer a {
	color: #dfffd6;
	text-decoration: none;
	display: block;
	margin-bottom: 8px;
	transition: 0.3s;
}
.footer a i {
	margin-right: 8px;
}
.footer a:hover {
	color: white;
	padding-left: 5px;
}
.social-icons a {
	display: inline-block;
	margin-right: 10px;
	font-size: 18px;
	color: white;
	transition: 0.3s;
}
.social-icons a:hover {
	color: #dfffd6;
	transform: scale(1.2);
}
.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.3);
	margin-top: 20px;
	padding-top: 15px;
	text-align: center;
	font-size: 14px;
}