    body {
        background: #ffffff;
        font-family: Arial, sans-serif;
    }

    /* NAVBAR LINKS */
    .custom-nav {
        font-weight: 600;
        color: #0b7a3e !important;
        /* green */
        position: relative;
        padding-bottom: 6px;
        transition: color 0.3s ease;
    }

    /* Green underline effect */
    .custom-nav::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 3px;
        left: 0;
        bottom: 0;
        background: #0b7a3e;
        transition: width 0.3s ease;
    }

    .custom-nav:hover {
        color: #055a2a !important;
    }

    .custom-nav:hover::after {
        width: 100%;
    }

    /* ORDER NOW BUTTON */
    .order-btn {
        background: #0b7a3e;
        color: white;
        font-weight: 600;
        padding: 10px 22px;
        border-radius: 6px;
        transition: 0.3s ease;
        text-decoration: none;
    }

    .order-btn:hover {
        background: #055a2a;
        color: #fff;
        transform: translateY(-2px);
    }


/* form section */

    .apply-form-section {
    padding: 60px 0;
    background: #f8fffa;
    animation: fadeInUp 1s ease;
}

.apply-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0a8a3a;
}

.apply-subtitle {
    text-align: center;
    color: #444;
    margin-bottom: 40px;
    font-size: 17px;
}

.apply-form {
    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform .4s ease, box-shadow .4s ease;
}

.apply-form:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: #0a8a3a;
    margin-bottom: 6px;
    display: block;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px;
    border: 2px solid #dce7e2;
    transition: 0.3s;
    font-size: 15px;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
    border-color: #0a8a3a;
    box-shadow: 0 0 8px rgba(10, 138, 58, 0.4);
}

.apply-btn {
    width: 100%;
    padding: 14px;
    background: #0a8a3a;
    border: none;
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    margin-top: 10px;
    font-weight: 600;
    transition: 0.3s ease;
    cursor: pointer;
}

.apply-btn:hover {
    background: #056a2f;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(5, 106, 47, 0.3);
}

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}



    /* footer */

    .footer-heading {
        font-weight: 600;
        margin-bottom: 15px;
        position: relative;
    }

    .footer-heading::after {
        content: "";
        width: 40px;
        height: 2px;
        background: #00d084;
        position: absolute;
        left: 0;
        bottom: -5px;
    }

    .footer-links li {
        margin: 8px 0;
    }

    .footer-links li a {
        color: #d8fff0;
        text-decoration: none;
        transition: 0.3s;
    }

    .footer-links li a:hover {
        color: #00ffb3;
        padding-left: 5px;
    }

    .footer-icon {
        font-size: 22px;
        color: white;
        transition: 0.3s;
    }

    .footer-icon:hover {
        color: #00ffb3;
        transform: scale(1.2);
    }