body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}

/* Navbar */
.nav-link {
color: #000 !important;
font-weight: 500;
transition: color 0.3s;
}
.nav-link:hover {
color: #0F9D58 !important;
}

/* Hero */
.hero-section {
min-height: 100vh;
background: url('https://www.transparenttextures.com/patterns/white-wall.png') no-repeat center center/cover;
display: flex;
justify-content: center;
align-items: center;
padding-top: 80px;
}

/* Card hover */
.card:hover {
transform: translateY(-5px);
transition: 0.3s ease;
}

/* Contact form */
form input, form textarea {
border: 1px solid #0F9D58 !important;
}
form input:focus, form textarea:focus {
box-shadow: 0 0 5px rgba(15, 157, 88, 0.5);
outline: none;
}

/* Footer */
footer a:hover {
text-decoration: none;
opacity: 0.9;
}
