    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);
    }

    /* Career Strip */
    .career-strip {
        background: linear-gradient(90deg, #0f8a4a, #0c6e3a);
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    /* Title */
    .career-title {
        font-size: 42px;
        font-weight: 700;
        letter-spacing: 2px;
        animation: fadeInDown 1s ease-out;
    }

    /* Career Intro */


    .career-intro {
        background: #ffffff;
        border-bottom: 1px solid #e9ecef;
    }

    .career-title_1 {
        font-size: 42px;
        font-weight: 800;
        color: #0b8a46;
        position: relative;
    }

    .career-title_1::after {
        content: "";
        width: 80px;
        height: 4px;
        background: #0b8a46;
        display: block;
        margin-top: 10px;
        border-radius: 50px;
    }

    .career-desc {
        color: #333;
        font-size: 17px;
        line-height: 1.7;
        margin-top: 10px;
    }

    .benefits-heading {
        font-weight: 700;
        color: #0b8a46;
        margin-bottom: 15px;
    }

    .benefits-list {
        list-style: none;
        padding: 0;
    }

    .benefits-list li {
        font-size: 16px;
        color: #222;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        transition: 0.3s ease;
    }

    .benefits-list li i {
        color: #0b8a46;
        font-size: 20px;
        margin-right: 10px;
    }

    .benefits-list li:hover {
        transform: translateX(8px);
        color: #0b8a46;
    }

    .career-image {
        width: 90%;
        max-width: 380px;
        transition: 0.4s ease;
    }

    .career-image:hover {
        transform: scale(1.06);
    }

    /* JOB SECTION */


    /* Job Card Styling */
    .job-card {
        background: #ffffff;
        border-radius: 14px;
        border-left: 6px solid #0a8a38;
        /* green strip left */
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
        transition: all 0.35s ease;
        position: relative;
    }

    /* Hover Effects */
    .job-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
        border-left-color: #0cc450;
    }

    /* Job Title */
    .job-title {
        font-size: 24px;
        font-weight: 700;
        color: #0a3d1c;
    }

    /* Job Info Icons */
    .job-info i {
        color: #0a8a38;
        font-size: 18px;
    }

    /* Buttons Styling */
    .read-btn,
    .apply-btn {
        padding: 10px 22px;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.35s ease;
    }

    /* Read More Button */
    .read-btn {
        background: #e6f6ed;
        color: #0a8a38;
    }

    .read-btn:hover {
        background: #0a8a38;
        color: #fff;
    }

    /* Apply Button */
    .apply-btn {
        background: #0a8a38;
        color: #fff;
    }

    .apply-btn:hover {
        background: #0cc450;
        color: white;
        transform: scale(1.05);
    }


    /* Animations */
    @keyframes shineMove {
        0% {
            left: -120%;
        }

        100% {
            left: 120%;
        }
    }

    @keyframes fadeInDown {
        0% {
            opacity: 0;
            transform: translateY(-20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media(max-width: 576px) {
        .career-title {
            font-size: 30px;
        }
    }



    /* 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);
    }