/* Jobs Page Styles */

/* Jobs Images Section */
.jobs-images-section {
    padding: 80px 0 40px 0;
    background: var(--cream-bg);
}

.jobs-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.job-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.job-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.job-image:hover .job-img {
    transform: scale(1.05);
}
.jobs-hero {
    padding: 32px 0 60px;
    background-color: var(--cream-bg);
    min-height: calc(100vh - 120px);
}

.jobs-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.jobs-hero-left,
.jobs-hero-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.jobs-section-card {
    padding: 0;
    height: fit-content;
    flex-grow: 1;
}

.jobs-section-title {
    background: var(--light-gray);
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: var(--text-2xl);
    text-align: center;
    padding: 28px 0;
    margin: 0;
    letter-spacing: 1px;
}

.jobs-title-wrapper{
    padding: 12px;
    border: 1px solid var(--dark-gray);
}

.jobs-content h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: var(--text-lg);
    color: #000000;
    margin: 30px 0 15px 0;
    line-height: 1.4;
}

.jobs-content h2:first-child {
    margin-top: 0;
}

.jobs-content p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: var(--text-sm);
    line-height: 1.6;
    color: #333333;
    margin-bottom: 20px;
}

.jobs-content p strong {
    font-weight: 600;
}

.jobs-cta {
    margin-top: 20px;
    text-align: center;
}

.btn-jobs {
    display: inline-block;
    background: #000000;
    color: var(--cream-bg);
    font-family: "Poppins", sans-serif;
    font-weight: var(--font-medium);
    font-size: var(--text-sm);
    text-decoration: none;
    padding: 15px 30px;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-jobs:hover {
    background:#333333;
}

.job-position {
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.job-position:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
}

.job-position h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: var(--text-base);
    color: #000000;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.job-position p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: var(--text-sm);
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .jobs-images-section {
        padding: 40px 0 20px 0;
    }

    .jobs-images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .job-img {
        height: 250px;
    }
    
    .jobs-hero {
        padding: 40px 0;
    }
    
    .jobs-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .jobs-section-card {
        padding: 30px 20px;
    }
    
    .jobs-section-title {
        padding: 15px;
        margin: 0 0 15px 0;
    }
    
    .jobs-content h2 {
        margin: 25px 0 12px 0;
    }
    
    
    .btn-jobs {
        padding: 12px 25px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .jobs-images-grid {
        gap: 20px;
    }

    .job-img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .jobs-section-card {
        padding: 0;
    }
    
    .jobs-section-title {
        margin: 0;
    }
    
