    :root {
        --green: #0cae4d;
        --dark: #003314;
    }

    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);
    }

    /* main Section */

    /* Premium Title Strip */
    .page-strip {
        padding: 60px 0;
        background: linear-gradient(90deg, var(--green), var(--dark));
        color: #fff;
        text-align: center;
        letter-spacing: .5px;
        animation: fadeInDown .8s ease-out;
    }

    .page-strip h1 {
        font-weight: 700;
        font-size: 42px;
    }

    /* Job Details Section */
    .job-box {
        background: #fff;
        border-radius: 14px;
        padding: 40px;
        margin-top: -50px;
        position: relative;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        animation: fadeInUp 1s ease;
    }

    .job-meta i {
        color: var(--green);
        margin-right: 6px;
    }

    .job-meta span {
        font-size: 15px;
        margin-right: 15px;
    }

    .btn-apply {
        background: var(--green);
        color: #fff;
        padding: 12px 26px;
        font-size: 18px;
        border-radius: 40px;
        font-weight: 600;
        transition: .3s;
        text-decoration: none;
    }

    .btn-apply:hover {
        background: var(--dark);
        color: #fff;
    }

    /* Section Title */
    .sec-title {
        font-size: 28px;
        margin-top: 35px;
        font-weight: 600;
    }

    /* Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInDown {
        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);
    }