  @import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
  
  
  :root {
            --primary: #BF3131;
            --secondary: #7D0A0A;
            --third: #EAD196;
            --bg: #f7f7f7;
            --text: #1d1d1d;
            --text-secondary: #666666;
            --white: #ffffff;
            --overlay: rgba(0, 0, 0, 1);
            --font-h1: 42px;
            --font-h2: 32px;
            --font-h3: 24px;
            --font-p: 16px;
            --font-btn: 16px;
            --padding-large: 80px;
            --padding-medium: 50px;
            --padding-small: 30px;
            --padding-xsmall: 15px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(to bottom, #4b0202, #BF3131, transparent 80vh);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            overflow-x: hidden;
             min-height: 100vh;
             scroll-behavior: smooth;
        }

        .job-nv-navbar {
            display: flex;
            justify-content: space-between;
             backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
            align-items: center;
            padding: 15px 100px;
            position: fixed;
            top: 0;
            width: 100%;
            max-height: 70px;
            z-index: 1000;
        }

.job-nv-navbar::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}


        .job-nv-navbar .job-nv-left-section {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .job-nv-navbar .job-nv-logo img {
            width: 140px;
            height: auto;
            margin-left: 15px;
        }

        .job-nv-hamburger {
            cursor: pointer;
            font-size: 16px;
            padding: 8px 12px;
            background-color: var(--white);
            border-radius: 50%;
            color: var(--secondary);
            transition: transform 0.3s ease;
        }

        .job-nv-hamburger.active {
            transform: rotate(45deg);
        }

        .job-nv-hamburger.active i::before {
            content: '\f00d';
        }

        .job-nv-nav-menu {
            position: absolute;
            top: 80px;
            left: 30px;
            width: fit-content;
            height: fit-content;
            background: var(--white);
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
            padding: 10px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
        }

        .job-nv-nav-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .job-nv-nav-menu a {
            display: block;
            padding: 8px 12px;
            color: var(--text);
            text-decoration: none;
            font-size: var(--font-btn);
            transition: color 0.3s ease;
        }

        .job-nv-nav-menu a:hover {
            color: var(--primary);
        }

        .job-nv-center-section {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .job-nv-center-section a {
            position: relative;
            text-decoration: none;
            color: var(--white);
            font-size: var(--font-btn);
            padding: 8px 16px;
            transition: color 0.3s ease;
        }

        .job-nv-center-section a::before,
        .job-nv-center-section a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--white);
            transition: width 0.3s ease;
        }

        .job-nv-center-section a::before {
            top: 0;
            left: 0;
        }

        .job-nv-center-section a::after {
            bottom: 0;
            right: 0;
        }

        .job-nv-center-section a:hover::before,
        .job-nv-center-section a:hover::after {
            width: 100%;
        }

        .job-nv-center-section a:hover {
            color: var(--third);
        }

        .job-nv-right-section {
            display: flex;
            align-items: center;
        }

        .job-nv-right-section .job-nv-call-icon {
            font-size: 16px;
            padding: 8px 12px;
            background-color: var(--white);
            border-radius: 50%;
            color: var(--secondary);
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .job-nv-right-section .job-nv-call-icon:hover {
            transform: scale(1.1);
            color: var(--third);
        }








        .job-main-section {
            max-width: 1400px;
            min-height: 70vh;
            margin: 80px auto;
            position: relative;
            display: flex;
            flex-direction: row;
            padding: var(--padding-small);
            box-sizing: border-box;
            overflow: hidden;
        }

        .job-background-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
                        linear-gradient(to bottom, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.3;
            z-index: 1;
            mask-image: radial-gradient(circle, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 95%);
            -webkit-mask-image: radial-gradient(circle, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 95%);
        }
.a-jlpt-jb{
    text-decoration: none;
    padding: 10px 16px;
    background-color: var(--secondary);
    font-size: 18px;
    color: var(--white);
    margin-top: 15px;
    /* font-weight: bold; */
    border-radius: 12px;
}
        .job-abstract-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.2;
            animation: move 15s infinite ease-in-out;
            z-index: 2;
        }

        .job-shape-1 {
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, var(--white), transparent);
            top: 20%;
            left: 10%;
        }

        .job-shape-2 {
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, var(--white), transparent);
            bottom: 15%;
            right: 15%;
            animation-delay: -5s;
        }

        .job-shape-3 {
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, var(--white), transparent);
            top: 60%;
            left: 25%;
            animation-delay: -10s;
        }

        .job-left-section {
            width: 50%;
            padding: var(--padding-medium);
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 3;
            box-sizing: border-box;
        }

        .job-left-section h1 {
            font-size: var(--font-h1);
            color: var(--white);
            margin-bottom: 5px;
            line-height: 1.2;
            font-weight: 700;
        }

        .job-animated-words {
            display: inline-block;
            position: relative;
            min-height: 1.5em;
            min-width: 1em;
        }

        .job-animated-words span {
            position: absolute;
            opacity: 0;
            color: var(--third);
            font-weight: 600;
            animation: writeInOut 4s infinite;
        }

        .job-animated-words span:nth-child(1) { animation-delay: 0s; }
        .job-animated-words span:nth-child(2) { animation-delay: 1s; }
        .job-animated-words span:nth-child(3) { animation-delay: 2s; }
        .job-animated-words span:nth-child(4) { animation-delay: 3s; }

        .job-left-section p {
            font-size: var(--font-p);
            color: var(--white);
            margin-bottom: var(--padding-small);
            /* max-width: 80%; */
            line-height: 1.6;
        }

        .job-buttons {
            display: flex;
            gap: 8px;
        }

        .job-buttons button {
            padding: 12px 26px;
            /* border: 1px solid var(--primary); */
            background: transparent;
            color: var(--primary);
            font-size: var(--font-btn);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            outline: none;
            border: none;
        }

     .job-buttons button:nth-child(1) {
    background: var(--third);
    color: var(--white);
}

.job-buttons button:nth-child(2) {
    background: var(--primary);
    color: var(--white);
}

.job-buttons button:nth-child(3) {
    background: var(--secondary);
    color: var(--white);
}

        .job-buttons button:hover {
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
        }

        .job-right-section {
            width: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            z-index: 3;
            box-sizing: border-box;
        }

        .job-image-column {
            width: 45%;
            height: 70vh;
            overflow: hidden;
            position: relative;
            margin: 0 5px;
            flex-shrink: 0;
        }

.job-image-column.job-up::before,
.job-image-column.job-down::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 15%,
        transparent 85%,
        rgba(255, 255, 255, 0.3) 100%
    );
}

        .job-image-track {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .job-image-track img {
            width: 100%;
            height: 330px;
            object-fit: cover;
            object-position: top;
            border-radius: 30px;
            /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
        }

        .job-image-column.job-up .job-image-track {
            animation: moveUp 20s linear infinite;
        }

        .job-image-column.job-down .job-image-track {
            animation: moveDown 20s linear infinite;
        }

        .job-nv-mobile-nav {
            display: none;
            position: fixed;
            top: 80px;
            width: 100%;
            justify-content: center;
            gap: 20px;
            padding: 10px 0;
            background: rgba(255, 255, 255, 0.1);
            z-index: 999;
        }

        .job-nv-mobile-nav a {
            position: relative;
            text-decoration: none;
            color: var(--text);
            font-size: var(--font-btn);
            padding: 8px 16px;
            transition: color 0.3s ease;
        }

        .job-nv-mobile-nav a::before,
        .job-nv-mobile-nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .job-nv-mobile-nav a::before {
            top: 0;
            left: 0;
        }

        .job-nv-mobile-nav a::after {
            bottom: 0;
            right: 0;
        }

        .job-nv-mobile-nav a:hover::before,
        .job-nv-mobile-nav a:hover::after {
            width: 100%;
        }

        .job-nv-mobile-nav a:hover {
            color: var(--primary);
        }

        @keyframes move {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(20px, -20px); }
        }

        @keyframes writeInOut {
            0% { opacity: 0; transform: translateY(20px); }
            10%, 20% { opacity: 1; transform: translateY(0); }
            30%, 100% { opacity: 0; transform: translateY(-20px); }
        }

        @keyframes moveUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-960px); }
        }

        @keyframes moveDown {
            0% { transform: translateY(-960px); }
            100% { transform: translateY(0); }
        }

        @media (max-width: 1024px) {
            .job-nv-navbar {
                padding: 15px 20px;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .job-nv-center-section {
                display: none;
            }

            .job-nv-mobile-nav {
                display: none
            }

            .job-nv-left-section {
                flex: 1;
                justify-content: flex-start;
            }

            .job-nv-logo {
                flex: 1;
                text-align: center;
            }

            .job-nv-right-section {
                flex: 1;
                justify-content: flex-end;
            }

            .job-main-section {
                flex-direction: row;
                flex-wrap: nowrap;
                margin-top: 140px; /* Adjusted for mobile nav */
            }

            .job-left-section, .job-right-section {
                width: 50%;
                min-width: 250px;
            }

            .job-left-section {
                padding: var(--padding-xsmall);
            }

            .job-left-section h1 {
                font-size: var(--font-h2);
            }

            .job-left-section p {
                font-size: calc(var(--font-p) - 2px);
            }

            .job-image-column {
                width: 40%;
                height: 60vh;
            }

            .job-image-track img {
                height: 240px;
            }
        }

        @media (max-width: 768px) {
            .job-main-section {
                flex-direction: column;
                align-items: center;
            }

            .job-left-section, .job-right-section {
                width: 100%;
                min-width: 0;
            }

            .job-left-section h1 {
                font-size: var(--font-h3);
            }

            .job-left-section p {
                max-width: 100%;
            }

            .job-buttons button {
                padding: 8px 15px;
                font-size: calc(var(--font-btn) - 2px);
            }

            .job-right-section {
                display: flex;
                flex-direction: row;
                justify-content: center;
                gap: 10px;
            }

            .job-image-column {
                width: 45%;
                height: 50vh;
                margin: 0 5px;
            }

            .job-image-track img {
                height: 180px;
            }

            .job-shape-1, .job-shape-2, .job-shape-3 {
                transform: scale(0.7);
            }
        }

        @media (max-width: 480px) {
            .job-main-section {
                flex-direction: column;
                margin: 140px auto 20px;
            }

            .job-left-section h1 {
                font-size: calc(var(--font-h3) - 4px);
            }

            .job-left-section p {
                font-size: calc(var(--font-p) - 4px);
            }

            .job-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .job-right-section {
                flex-direction: column;
                align-items: center;
            }

            .job-image-column {
                width: 100%;
                height: 80vh;
                margin: 0;
            }

            .job-image-column.job-down {
                display: none;
            }

            .job-image-column.job-up .job-image-track {
                animation: moveUp 20s linear infinite;
            }

            .job-image-track img {
                height: 140px;
            }

            .job-image-track {
                gap: 10px;
            }

            .job-shape-1, .job-shape-2, .job-shape-3 {
                transform: scale(0.5);
            }
        }











.job-jobs-section {
        max-width: 1400px;
        margin: 60px auto;
        padding: var(--padding-small);
        box-sizing: border-box;
        background-color: none;
        scroll-behavior: smooth;
    }

    .job-search-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: var(--padding-medium);
        position: relative;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .job-search-bar i {
        position: absolute;
        left: 15px;
        font-size: 20px;
        color: var(--text-secondary);
    }

    .job-search-bar input {
        width: 100%;
        padding: 12px 20px 12px 45px;
        font-size: var(--font-p);
        border: 1px solid var(--primary);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        color: var(--text);
        outline: none;
        transition: border-color 0.3s ease;
    }

    .job-search-bar input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 5px rgba(191, 49, 49, 0.5);
    }

    .job-boxes-container {
      max-width: 1200px;
      margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 20px;
        justify-items: center;
    }

    .job-box {
        max-width: 350px;
        width: 100%;
        height: 250px;
        position: relative;
        background-image: url('/img/job-background.jpg'); /* Placeholder: replace with actual image path */
        background-size: cover;
        background-position: center;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .job-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
        z-index: 1;
    }

    .job-box h2 {
        position: relative;
        z-index: 2;
        color: var(--white);
        font-size: var(--font-h3);
        margin: 20px;
        text-align: left;
    }

    .job-box p {
        position: relative;
        z-index: 2;
        color: var(--white);
        font-size: var(--font-p);
        margin: 0 20px 20px;
        text-align: left;
    }

    .job-box:hover {
        transform: scale(1.05);
    }

    .job-box.hidden {
        display: none;
    }


       .job-last-date {
        position: relative;
        z-index: 2;
        color: var(--white);
        font-size: calc(var(--font-p) - 2px);
        margin: 0 20px 20px;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .job-last-date i.fas.fa-clock {
        font-size: 18px;
        color: var(--primary);
    }


.job-box h2 {
    transform: translateY(15px); /* Start 15px from bottom */
    opacity: 1; /* Always visible */
    transition: transform 0.3s ease;
    bottom: 15px; /* Ensure spacing from bottom */
}

.job-box p,
.job-box .job-last-date {
    transform: translateY(15px); /* Start 15px from bottom */
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.job-box:hover h2,
.job-box:hover p,
.job-box:hover .job-last-date {
    transform: translateY(0); /* Move to original position on hover */
}

.job-box:hover p,
.job-box:hover .job-last-date {
    opacity: 1; /* Show p and last-date on hover */
}

.job-box p {
    margin-bottom: 10px; /* Spacing between p and last-date */
}





    @media (max-width: 768px) {
        .job-boxes-container {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .job-box {
            max-width: 300px;
            height: 200px;
        }

        .job-box h2 {
            font-size: calc(var(--font-h3) - 4px);
        }

        .job-box p {
            font-size: calc(var(--font-p) - 2px);
        }
    }

    @media (max-width: 480px) {
        .job-boxes-container {
            grid-template-columns: 1fr;
        }

        .job-box {
            max-width: 100%;
            height: 180px;
        }

        .job-box h2 {
            font-size: calc(var(--font-h3) - 6px);
        }

        .job-box p {
            font-size: calc(var(--font-p) - 4px);
        }

        .job-search-bar input {
            padding: 10px 15px 10px 40px;
            font-size: calc(var(--font-p) - 2px);
        }

        .job-search-bar i {
            font-size: 18px;
            left: 12px;
        }
    }








 .hr-ft-footer {
        max-width: 100%;
        margin: 30px auto 0;
        padding: 20px;
          background: linear-gradient(to right, #660707, #eb3c3c);
        color: var(--white);
    }

    .hr-ft-container {
      max-width: 1400px;
      margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
    }

    .hr-ft-left-section {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hr-ft-icon-circle {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .hr-ft-icon-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hr-ft-social-icons {
        display: flex;
        gap: 15px;
    }

    .hr-ft-social-icons a {
        color: var(--white);
        font-size: 24px;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .hr-ft-social-icons a:hover {
        color: var(--primary);
        transform: scale(1.1);
    }

    .hr-ft-footer-title {
        flex: 1;
        text-align: center;
        margin: 0;
        padding: 10px 0;
        border-top: 1px solid var(--white);
        border-bottom: 1px solid var(--white);
        align-self: center;
        font-size: 20px;
      color: var(--white);
      font-family: "Dela Gothic One", sans-serif;
      font-weight: 500;
    }

    .hr-ft-right-section {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 8px;
    }

    .hr-ft-copyright {
        font-size: var(--font-p);
        color: var(--white);
        text-align: right;
    }

    .hr-ft-developed {
        font-size: var(--font-p);
        color: var(--white);
        text-align: right;
    }

    .hr-ft-right-image img {
        width: 100px;
        height: auto;
        border-radius: 8px;
    }

    @media (max-width: 768px) {
        .hr-ft-container {
            flex-direction: column;
            align-items: center;
        }

        .hr-ft-left-section {
            align-items: center;
        }

        .hr-ft-right-section {
            align-items: center;
            justify-content: center;
            margin-top: var(--padding-small);
        }

        .hr-ft-copyright,
        .hr-ft-developed {
            text-align: center;
        }

        .hr-ft-footer-title {
            font-size: var(--font-h3);
            margin-bottom: var(--padding-small);
        }
    }

    @media (max-width: 480px) {
        .hr-ft-icon-circle {
            width: 100px;
            height: 100px;
        }

        .hr-ft-social-icons a {
            font-size: 20px;
        }

        .hr-ft-right-image img {
            width: 80px;
        }

        .hr-ft-copyright {
            font-size: calc(var(--font-p) - 2px);
        }

        .hr-ft-developed {
            font-size: calc(var(--font-p) - 4px);
        }

        .hr-ft-footer-title {
            font-size: calc(var(--font-h3) - 4px);
        }
    }