    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);
    }


    /* 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);
    }