header {
    /*background: linear-gradient(90deg, #ff512f, #334da2);*/
    color: #fff;
    /*padding: 20px;*/
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

.container2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px;
    max-width: 1200px;
    margin: auto;
}

.job-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #334da2;
    margin-bottom: 5px;
}

.job-code {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.job-location {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.job-role {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.apply-btn {
    background: #334da2;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.apply-btn:hover {
    background: #ff512f;
}

@media (max-width: 768px) {
    .page-head video {
        /* min-height: 100%; */
        min-width: 100%;
        position: absolute;
        left: 0;
        top: 0 !important;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
        width: auto;
        height: 100vh;
    }

    .p-style-medium {
        text-align: center;
    }

    .title-style {
        font-size: 28px;
        text-align: center;
    }

    .p-style-small {
        text-align: center;
    }

    .large-title,
    .large-title-bold {
        font-size: 35px;
        text-align: center;
    }

    .flex-min-height-inner {
        width: 100%;
        height: 100%;
        min-height: 80vh;
    }
}