.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 50px;
    
}
.slider-card {
    min-width: calc(33.333% - 14px);
    flex-shrink: 0;
    height:100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    height:100%;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    grid-column: 1 / -1;
}
.job-opportunities-section {
    background: linear-gradient(135deg, #fef4e6 0%, #fce8c8 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.job-opportunities-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.job-opportunity-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

/* Left Content Styles */
.job-opp-left-content {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.job-opp-decorative-icon {
    margin-bottom: 20px;
    position: relative;
    left: 100%;
}

.job-opp-decorative-icon .sparkle {
    width: 40px;
    height: 40px;
}

.job-opprotunity-section-title {
    font-size: 48px;
    font-weight: 400;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 20px;
}

.job-opp-highlight {
    font-weight: 700;
    color: #2c3e50;
}

.job-opp-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 320px;
}

.job-opp-cta-button {
    background: #4ECDC4;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.job-opp-cta-button:hover {
    background: #45b8b0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

/* Slider Styles */





.job-opp-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s ease;
    color: #2c3e50;
}

.job-opp-slider-nav:hover {
    background: #4ECDC4;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.job-opp-slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.job-opp-prev-btn {
    left: 0;
}

.job-opp-next-btn {
    right: 0;
}


.job-opp-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.job-opp-slider-dot.active {
    background: #4ECDC4;
    width: 30px;
    border-radius: 5px;
}

/* Card Styles */
.job-opp-card-image {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.slider-card:hover .job-opp-card-image {
    transform: translateY(-10px);
}

.job-opp-flag-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 32px;
    background: white;
    border-radius: 6px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.job-opp-flag-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 3px;
}

.job-opp-card-overlay {
    margin-top: auto;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    
}

.job-opp-card-title {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    width: 100%;
    text-align: left;
}

.job-opp-card-pay {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    width: 100%;
    text-align: left;
}

.job-opp-explore-button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.job-opp-explore-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .job-opportunity-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .job-opp-left-content {
        text-align: center;
        padding-right: 0;
        align-items: center;
    }

    .job-opp-description {
        margin-left: auto;
        margin-right: auto;
    }

    .slider-card {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .job-opprotunity-section-title {
        font-size: 36px;
    }

    .slider-card {
        min-width: 100%;
    }

    .job-opp-card-image {
        height: 300px;
    }

    .job-opp-slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-wrapper {
        padding: 0 35px;
    }

    .job-opp-prev-btn {
        left: -5px;
    }

    .job-opp-next-btn {
        right: -5px;
    }
}

@media (max-width: 480px) {
    .job-opportunities-section {
        padding: 40px 15px;
    }

    .job-opprotunity-section-title {
        font-size: 32px;
    }
}