
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes heroZoom {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.1);
        }
    }

    .product-hero {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 140px 0;
        position: relative;
        overflow: hidden;
    }


    .product-hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: inherit;
        background-size: cover;
        background-position: center;
        z-index: -1;
    }

    @keyframes heroZoom {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.05);
        }
    }

    .product-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .product-hero .container {
        position: relative;
        z-index: 2;
    }

    .product-hero h1 {
        font-size: 3rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 16px;
        max-width: 800px;
        opacity: 0;
        animation: fadeInDown 0.8s ease forwards 0.3s;
    }

    .product-hero p {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 800px;
        margin-top: 20px;
        position: relative;
        opacity: 0;
        animation: fadeInUp 0.8s ease forwards 0.6s;
    }

    .breadcrumb {
        font-size: 14px;
        color: #fff;
        margin-bottom: 20px;
        margin-top: 20px;
        position: absolute;
        top: 110px;
        padding: 0px;
        opacity: 0;
        animation: fadeInDown 0.6s ease forwards 0.1s;
    }

    .breadcrumb a {
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .breadcrumb a:hover {
        color: #0ea3df;
    }

    .action-section {
        padding: 80px 0 80px;
        background: #ffffff;
        overflow: hidden;
    }

    .section-header {
        text-align: center;
        max-width: 1300px;
        margin: 0 auto 60px;
    }

    .section-title {
        font-size: 38px;
        font-weight: 700;
        color: #1a1a2e;
        letter-spacing: -0.5px;
        margin-bottom: 40px;
        position: relative;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .section-title.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #4A90D9, #0ea3df);
        transition: width 0.8s ease;
    }

    .section-title.visible::after {
        width: 80px;
    }

    .contact-wrap {
        margin-top: 50px;
    }

    .contact-form-desc {
        color: #666;
        line-height: 1.7;
        margin-bottom: 40px;
        font-size: 16px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s ease 0.3s;
    }

    .contact-form-desc.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .bg-gray {
        background-color: #f8faff;
    }

    .job-grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }

    .job-card {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 0;
        transform: translateY(40px);
    }

    .job-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .job-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }

    .job-card:hover .job-logo img {
        transform: rotate(10deg) scale(1.1);
    }

    .job-card-header {
        padding: 24px 24px 16px;
    }

    .job-card-top {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .job-logo img {
        width: 50px;
        height: 50px;
        transition: transform 0.4s ease;
    }

    .job-title {
        font-size: 20px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0;
        transition: color 0.3s ease;
    }

    .job-card:hover .job-title {
        color: #4A90D9;
    }

    .job-summary-label {
        font-size: 13px;
        color: #999;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .job-summary-list {
        padding-left: 18px;
        margin: 0 0 12px 0;
        font-size: 14px;
        color: #555;
        line-height: 1.8;
    }

    .job-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #f0f0f0;
        padding-top: 14px;
    }

    .job-salary {
        font-size: 18px;
        font-weight: 700;
        color: #E84C3D;
        transition: transform 0.3s ease;
    }

    .job-card:hover .job-salary {
        transform: scale(1.05);
    }

    .job-actions {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .btn-expand {
        display: inline-block;
        padding: 6px 18px;
        background: #4A90D9;
        color: #fff;
        border-radius: 20px;
        font-size: 13px;
        text-decoration: none;
        cursor: pointer;
        border: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .btn-expand:hover {
        background: #357ABD;
        color: #fff;
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(74, 144, 217, 0.35);
    }

    .btn-expand:active {
        transform: scale(0.95);
    }

    .btn-expand.hidden {
        display: none;
    }

    .btn-more {
        display: inline-block;
        padding: 6px 18px;
        background: transparent;
        color: #4A90D9;
        border: 1px solid #4A90D9;
        border-radius: 20px;
        font-size: 13px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-more:hover {
        background: #4A90D9;
        color: #fff;
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(74, 144, 217, 0.25);
    }

    .btn-more:active {
        transform: scale(0.95);
    }

    .job-detail {
        display: none;
        padding: 0 24px 24px;
        border-top: 1px solid #f5f5f5;
        background: #fafcff;
        animation: fadeInUp 0.4s ease;
    }

    .job-detail-inner {
        padding-top: 18px;
    }

    .job-detail-section {
        font-size: 14px;
        color: #333;
        line-height: 1.9;
    }

    .job-detail-section .label {
        font-weight: 600;
        margin: 0 0 6px 0;
        color: #1a1a2e;
    }

    .job-detail-section ol,
    .job-detail-section ul {
        padding-left: 20px;
        margin: 0 0 16px 0;
        color: #555;
    }

    .job-detail-section li {
        opacity: 0;
        transform: translateX(-10px);
        animation: fadeInRight 0.4s ease forwards;
    }

    .job-detail-section li:nth-child(1) {
        animation-delay: 0.05s;
    }

    .job-detail-section li:nth-child(2) {
        animation-delay: 0.10s;
    }

    .job-detail-section li:nth-child(3) {
        animation-delay: 0.15s;
    }

    .job-detail-section li:nth-child(4) {
        animation-delay: 0.20s;
    }

    .job-detail-section li:nth-child(5) {
        animation-delay: 0.25s;
    }

    .job-detail-section li:nth-child(6) {
        animation-delay: 0.30s;
    }

    .job-detail-salary {
        font-size: 14px;
        color: #333;
        line-height: 1.9;
        background: #fff;
        padding: 14px 18px;
        border-radius: 8px;
        border-left: 3px solid #E84C3D;
        opacity: 0;
        transform: translateY(10px);
        animation: fadeInUp 0.5s ease 0.2s forwards;
    }

    .job-detail-salary .label {
        font-weight: 600;
        margin: 0 0 4px 0;
        color: #1a1a2e;
    }

    .job-detail-salary p {
        margin: 0;
        color: #555;
        font-size: 13px;
    }

    @media (max-width: 992px) {
        .action-section {
            padding: 60px 0 80px;
        }

        .job-grid {
            grid-template-columns: 1fr 1fr;
        }

        .section-title {
            font-size: 30px;
        }
    }

    @media (max-width: 768px) {
        .action-section {
            padding: 40px 0 60px;
        }

        .job-grid {
            grid-template-columns: 1fr;
            padding: 0 16px;
        }

        .product-hero h1 {
            font-size: 2rem;
            animation: fadeInDown 0.6s ease forwards 0.2s;
        }

        .product-hero p {
            font-size: 0.95rem;
        }

        .section-title {
            font-size: 24px;
        }

        .job-card-header {
            padding: 18px 18px 12px;
        }

        .job-title {
            font-size: 17px;
        }

        .job-salary {
            font-size: 16px;
        }
    }

    @media (max-width: 992px) {
        .product-hero {
            padding: 100px 0 60px;
            min-height: 280px;
            background-position: center;
        }

        .product-hero::after {
            background-position: center;
        }

        .breadcrumb {
            position: relative;
            top: 0;
            margin-top: 0;
            margin-bottom: 12px;
        }

        .product-hero h1 {
            font-size: 2.4rem;
        }

        .product-hero p {
            font-size: 1rem;
        }
    }

    @media (max-width: 768px) {
        .product-hero {
            padding: 80px 0 50px;
            min-height: 240px;
            background-position: center;
            background-size: cover;
        }

        .product-hero::after {
            background-position: center;
            background-size: cover;
        }

        .product-hero h1 {
            font-size: 2rem;
            animation: fadeInDown 0.6s ease forwards 0.2s;
        }

        .product-hero p {
            font-size: 0.95rem;
            margin-top: 12px;
        }

        .breadcrumb {
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .product-hero {
            padding: 60px 0 40px;
            min-height: 200px;
            background-position: center;
            background-size: cover;
        }

        .product-hero::after {
            background-position: center;
            background-size: cover;
        }

        .product-hero h1 {
            font-size: 1.6rem;
        }

        .product-hero p {
            font-size: 0.85rem;
            margin-top: 10px;
        }

        .breadcrumb {
            font-size: 12px;
            margin-bottom: 8px;
        }
    }

    @media (max-width: 380px) {
        .product-hero {
            padding: 50px 0 30px;
            min-height: 160px;
        }

        .product-hero h1 {
            font-size: 1.3rem;
        }

        .product-hero p {
            font-size: 0.78rem;
        }

        .breadcrumb {
            font-size: 11px;
        }
    }