:root {
	--nav-height: 106px;
}

section {
	scroll-margin-top: var(--nav-height);
}

.card {
	transition: transform 0.2s ease;
}


.card:hover {
	transform: translateY(-5px);
}

.btn-primary {
	background-color: #97bb24;
	border-color: #97bb24;
}

.btn-primary:hover {
	background-color: #97bb24;
	border-color: #97bb24;
}

a {
	color: #97bb24;
	text-decoration: none;
}

i {
	color: #97bb24;
}	

a:hover {
	text-decoration: underline;
}

ul li {
	padding: 6px 0;
}

.hero-section {
	position: relative;
	height: calc(100svh - var(--nav-height));
}

.form-control {
	border-radius: 12px;
	padding: 0.75rem 1rem;
}

.form-control:focus {
	border-color: #97bb24;
	box-shadow: 0 0 0 0.2rem rgba(43, 122, 120, 0.15);
}

.hero-img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nav-link {
	color: black;
}

.nav-link:hover {
	color: #97bb24;
}


@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}

.hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 1rem;
	animation: fadeInUp 1.5s ease;
	backdrop-filter: blur(2px);
}

@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 1.8rem;
	}

	.hero-content p {
		font-size: 1rem;
	}
}

.hero-content p {
	max-width: 500px;
}

html {
	scroll-behavior: smooth;
}

textarea {
	resize: none;
}