/* Job Listings Styles */
.jobs-container {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item.about-service-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.service-item.about-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Loading State */
.loading-message {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    color: #666;
    animation: pulse 1.5s infinite;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .jobs-container {
        padding: 1rem;
        gap: 1rem;
    }

    .service-content {
        padding: 1rem;
    }

    .service-content h3.title {
        font-size: 1.2rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    /* Add content labels for mobile */
    .service-content p strong::before {
        content: attr(data-label);
        display: block;
        margin-top: 0.5rem;
        color: #666;
    }
}

/* Staggered Animation Delays */
.service-item.about-service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service-item.about-service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-item.about-service-item:nth-child(3) {
    animation-delay: 0.3s;
}

.service-item.about-service-item:nth-child(4) {
    animation-delay: 0.4s;
}

.service-item.about-service-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* No Jobs State */
.no-jobs-message {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.2rem;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 600px;
}

/* Error State */
.error-message {
    text-align: center;
    padding: 2rem;
    color: #dc3545;
    background: #fff;
    border: 1px solid #dc3545;
    border-radius: 8px;
    margin: 2rem auto;
    max-width: 600px;
}