:root {
    --yellow: #FFD700; /* Gold */
    --yellow-dark: #FFC000; /* Darker gold */
    --gray: #333333; /* Dark gray */
    --gray-light: #F5F5F5; /* Light gray background */
    --gray-medium: #DDDDDD; /* Borders */
    --white: #FFFFFF;
    --black: #000000;
}

.job {
    margin-top: 0;
    padding: 80px 0;
    background: var(--gray-light);
    font-family: 'Roboto', sans-serif;
}

.job .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: var(--gray);
    font-family: 'Montserrat', sans-serif;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--yellow);
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.header-decoration {
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

.dot.yellow {
    background-color: var(--yellow);
}

.dot.gray {
    background-color: var(--gray);
}

.job-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.job-col {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-medium);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
}

.job-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--yellow);
}

.job-col a {
    text-decoration: none;
    display: block;
    height: 100%;
    color: inherit;
}

.job-icon {
    font-size: 36px;
    color: var(--yellow);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.job-col:hover .job-icon {
    transform: scale(1.1);
    color: var(--yellow-dark);
}

.job-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--gray);
    margin: 0;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.job-col:hover .job-title {
    color: var(--black);
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .job-col {
        flex: 0 0 calc(33.33% - 13.33px);
        max-width: calc(33.33% - 13.33px);
    }
}

@media (max-width: 992px) {
    .job-col {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .job {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .job-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 12px;
    }
}