        .job-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            border: none;
            animation: fadeIn 0.6s ease-out;
            margin-bottom: 25px;
            will-change: transform;
        }

        /* Smoother entrance animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.98);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Hover effect - using scale for smoother performance */
        .job-card:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 12px 25px rgba(67, 97, 238, 0.15);
        }

        /* Job Image */
        .job-image {
            padding: 0;
            overflow: hidden;
            position: relative;
            min-height: 250px;
        }

        .job-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            will-change: transform;
        }

        .job-card:hover .job-image img {
            transform: scale(1.08);
        }

        /* Job Info */
        .job-info {
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .job-date {
            display: inline-block;
            background-color: rgba(67, 97, 238, 0.1);
            color: #4361ee;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .job-card:hover .job-date {
            background-color: #007bff;
            color: white;
        }

        .job-info h3 {
            color: #212529;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 12px;
        }

        .job-info h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #007bff;
            border-radius: 3px;
            transition: width 0.4s ease;
        }

        .job-card:hover .job-info h3::after {
            width: 80px;
        }

        .job-info p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* Download Button */
        .btn-download {
            background-color: #007bff;
            border: none;
            color: white;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
            box-shadow: 0 4px 12px rgba(67, 97, 238, 0.2);
            position: relative;
            overflow: hidden;
        }

        .btn-download::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn-download:hover::before {
            left: 100%;
        }

        .btn-download:hover {
            background-color: #007bff;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(67, 97, 238, 0.25);
        }

        .btn-download:active {
            transform: translateY(0);
        }

        .btn-download i {
            margin-right: 8px;
            font-size: 1.1rem;
            transition: transform 0.3s ease;
        }

        .btn-download:hover i {
            transform: translateY(-1px);
        }

        /* Category tags */
        .category-tag {
            display: inline-block;
            background-color: rgba(76, 201, 240, 0.1);
            color: #007bff;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-right: 8px;
            margin-bottom: 8px;
            transition: all 0.3s ease;
        }

        .job-card:hover .category-tag {
            background-color: rgba(76, 201, 240, 0.2);
            transform: translateY(-1px);
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .job-card {
                margin-bottom: 20px;
            }

            .job-image {
                min-height: 300px;
                height: 300px;
            }

            .job-info {
                padding: 20px;
            }

            .job-info h3 {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 576px) {
            .job-info {
                padding: 18px;
            }

            .job-info h3 {
                font-size: 1.25rem;
            }

            .btn-download {
                width: 100%;
                padding: 14px 25px;
            }

            .job-image {
                min-height: 300px;
                height: 300px;
            }
        }

        /* For extra small devices */
        @media (max-width: 375px) {
            .job-info {
                padding: 15px;
            }

            .job-info h3 {
                font-size: 1.2rem;
            }

            .job-image {
                min-height: 160px;
                height: 160px;
            }
        }
