 :root {
            --primary-color: #4A90E2;
            --secondary-color: #357ABD;
            --accent-color: #6BB2FF;
            --text-dark: #2d3436;
            --text-medium: #5a6570;
        }
        /* Modern Header with Animation */
        .header-nav {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .header-nav.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Smooth transitions for elements */
section {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animation classes */
.section-hidden {
    opacity: 0;
    transform: translateY(20px);
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Job List CSS */

/* Filter Styles */
    .filter-select {
        border: 2px solid #1E90FF;
        border-radius: 8px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        color: #333;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E90FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 1em;
        transition: all 0.3s ease;
    }

    .filter-select:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.2);
        border-color: #1E90FF;
    }

    .filters-section {
        background: rgba(30, 144, 255, 0.05);
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    /* Jobs section started */


.job-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    margin-top: 80px;
}

.job-card {
    background: white;
    border-radius: 1px;
    padding: 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
}

.job-accent {
    width: 3px;
    background: #4B0082;
    flex-shrink: 0;
}

.job-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.job-title {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.title-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2d3436;
    margin-right: 0.5rem;
}

.badges {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}

.badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.best-badge {
    background: #B22222;
    color: white;
}

.power-badge {
    background: #FF8C00;
    color: white;
}

.code-badge {
    background: #6a2af5;
    color: #F5FFFA;
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.job-meta {
    display: flex;
    gap: 1.25rem;
    color: #5a6570;
    font-size: 0.875rem;
    margin: 0.75rem 0;
    flex-wrap: wrap;
}

.progress {
    height: 4px;
    background: #f1f2f6;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    background: #22ab92;
    height: 100%;
    transition: width 0.6s ease;
}

.job-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
}

.price-group {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3436;
    position: relative;
}

.original-price {
    font-size: 0.9rem;
    color: #8795a1;
    text-decoration: line-through;
    position: relative;
    top: -1px;
}

.duration {
    font-size: 0.875rem;
    color: #5a6570;
    background: rgba(74, 144, 226, 0.08);
    padding: 0.35rem 1rem;
    border-radius: 20px;
}

.btn-view-all {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    padding: 0.85rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
    }
    
    .job-accent {
        width: 100%;
        height: 4px;
    }
    
    .job-title {
        gap: 0.5rem;
    }
    
    .title-text {
        font-size: 0.95rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .job-meta {
        gap: 0.75rem;
        font-size: 0.8rem;
    }
    
    .current-price {
        font-size: 1.1rem;
    }
    
    .btn-view-all {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .job-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .duration {
        order: -1;
        align-self: flex-end;
    }
}




/* Footer Section */

.footer-section {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    padding: 60px 0;
}

.footer-section h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a.link-light-hover {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a.link-light-hover:hover {
    color: white;
}

.footer-section .form-control {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.footer-section .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, #6BB2FF, #4A90E2);
    border: none;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.social-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .footer-section h5 {
        font-size: 1.2rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }
}





.ad-space {
        background: rgba(30, 144, 255, 0.1);
        border: 2px dashed #1E90FF;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        margin: 15px 0;
    }

    .ad-placeholder {
        color: #1E90FF;
        font-weight: 500;
        padding: 30px 0;
    }

    .horizontal-ad { width: 100%; }
    .vertical-ad { min-height: 600px; }

    @media (max-width: 768px) {
        .job-section {
            margin-top: 60px;
        }
        
        .job-section h2 {
            font-size: 2rem !important;
        }
        
        .filter-select {
            width: 100%;
            margin-bottom: 10px;
        }
        
        .ad-space {
            margin: 10px 0;
            padding: 15px;
        }
    }









