body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e7dbcd;
    color: #0c402a;
    text-align: center;
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* Adjust opacity as needed */
    z-index: -1;
}

.hero-logo {
    width: 350px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 1.8rem;
    margin: 0.5rem 0;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    /* background: linear-gradient(135deg, #094833 0%, #E7DBCD 100%); */
    background: #E7DBCD;
    color: #094833;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #E7DBCD;
    color: #094833;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

section {
    padding: 2rem 1rem;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #0c402a;
    color: #e7dbcd;
}

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0c402a;
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.floating-button:hover {
    background: #0a3624;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box;
}

#contact-form div {
    margin-bottom: 1rem;
}

#contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

#contact-form textarea {
    resize: vertical;
}

#contact-form button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

#contact-form button:hover {
    background-color: #094833;
}

.hero-gradient {
    /* background: linear-gradient(135deg, #094833 0%, #E7DBCD 100%); */
    background: #094833 0%;
}

.feature-icon {
    background: #094833 0%;
}

.contact-gradient {
    background: linear-gradient(135deg, #E7DBCD 0%, #094833 100%);
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #E7DBCD;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
    background-color: #094833;
}

form {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 0 auto;
    max-width: 600px;
}

form h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #094833;
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

form input, form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d2d6dc;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #2d3748;
    transition: border-color 0.2s, box-shadow 0.2s;
}

form input:focus, form textarea:focus {
    border-color: #094833;
    box-shadow: 0 0 0 2px rgba(9, 72, 51, 0.2);
    outline: none;
}

form button {
    background-color: #094833;
    color: #ffffff;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #073d2a;
}

form .btn-primary i {
    margin-left: 0.5rem;
}

input, textarea, button {
    font-size: 1rem;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #094833;
    box-shadow: 0 0 0 2px rgba(9, 72, 51, 0.2);
}

button {
    background-color: #094833;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #073d2a;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-gradient img {
        display: none;
    }
}