 /* Hero Section with Parallax Effect */
 .hero-section {
    background: linear-gradient(160deg, var(--primary-color), var(--secondary-color));
    padding: 100px 0;
    color: white;
    overflow: hidden;
    position: relative;
}

/* Animated Particles Background */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: particleFloat 8s infinite linear;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0.5); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1.2); opacity: 0; }
}

/* Interactive Task Cards */
.task-card {
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.task-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1));
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.task-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.task-card:hover::before {
    left: 120%;
}

/* Progress Animation */
.progress-wave {
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: white;
    width: var(--progress);
    position: relative;
    transition: width 0.8s ease;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.4), 
        transparent);
    animation: wave 2s infinite linear;
}

@keyframes wave {
    100% { left: 200%; }
}

/* Mobile Optimized Animations */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }

    .task-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .task-card::before {
        animation: mobileShine 2s infinite;
    }

    @keyframes mobileShine {
        0%, 100% { left: -50%; }
        50% { left: 120%; }
    }

    .particle {
        animation-duration: 5s;
    }
}

/* Stats Section Started */
.tasks-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.stats-section {
background: rgba(255, 255, 255, 0.98);
position: relative;
overflow: hidden;
}

.stat-card {
background: white;
border-radius: 15px;
padding: 2rem;
position: relative;
overflow: hidden;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
width: 60px;
height: 60px;
background: var(--primary-color);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
}

.stat-icon i {
color: white;
font-size: 1.5rem;
}

.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 0.5rem;
}

.stat-label {
color: #636e72;
font-size: 1.1rem;
margin-bottom: 0;
}

.stat-wave {
position: absolute;
bottom: -30px;
left: -10px;
right: -10px;
height: 60px;
background: rgba(74, 144, 226, 0.05);
transform: rotate(-3deg);
z-index: -1;
}

@media (max-width: 768px) {
.stat-card {
padding: 1.5rem;
}

.stat-number {
font-size: 2rem;
}

.stat-label {
font-size: 1rem;
}
}

@keyframes waveFlow {
0% { transform: rotate(-3deg) translateX(-100%); }
100% { transform: rotate(-3deg) translateX(100%); }
}





/* Jobs section started */


.job-section {
background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
}

.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: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
color: white;
}

.power-badge {
background: linear-gradient(135deg, #ff9f43 0%, #ff8a00 100%);
color: white;
}

.code-badge {
background: #191970;
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: 6px;
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;
}
}



.payment-section {
    background: #f8f9fb;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3436;
    letter-spacing: -0.03em;
}

.payment-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.method-header {
    padding: 1.5rem;
    background: #1E90FF;
    border-bottom: 1px solid #eceff1;
    display: flex;
    align-items: center;
}

.method-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFAFA;
}

.method-header i {
    color: #FFFAFA;
    font-size: 1.4rem;
}

.methods-grid {
    padding: 1.5rem;
}

.method-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #f1f2f6;
    transition: all 0.2s ease;
}

.method-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: #f8f9fb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.method-icon i {
    color: #4A90E2;
}

.method-details {
    flex: 1;
}

.method-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.25rem;
}

.method-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #5a6570;
}

.processing i {
    margin-right: 0.4rem;
    color: #4A90E2;
}

.fee {
    color: #e74c3c;
    font-weight: 500;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .method-card {
        padding: 0.75rem;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }
    
    .method-meta {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 576px) {
    .method-header {
        padding: 1rem;
    }
    
    .methods-grid {
        padding: 1rem;
    }
    
    .method-details h4 {
        font-size: 1rem;
    }
    
    .method-meta {
        font-size: 0.85rem;
    }
}









.blog-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3436;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #4A90E2, #6BB2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.blog-image .image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
}

.blog-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #5a6570;
    margin-bottom: 1rem;
}

.post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-excerpt {
    color: #5a6570;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #4A90E2;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #357ABD;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .blog-image .image-placeholder {
        height: 180px;
    }
    
    .post-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .blog-content {
        padding: 1.25rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}









.categories-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3436;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #4A90E2, #6BB2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(74, 144, 226, 0.2);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2 0%, #6BB2FF 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    color: white;
    font-size: 1.8rem;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.75rem;
}

.category-description {
    color: #5a6570;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.category-count {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-view-all {
    background: linear-gradient(135deg, #4A90E2 0%, #6BB2FF 100%);
    color: white;
    padding: 0.85rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .category-card {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 1.5rem;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .category-card {
        margin-bottom: 1rem;
    }
}



.opportunities-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #4A90E2, #6BB2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: #5a6570;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.opportunity-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid transparent;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.freelancer-card {
    border-top-color: #4A90E2;
}

.buyer-card {
    border-top-color: #6BB2FF;
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 2rem;
    color: #4A90E2;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 1rem;
}

.card-text {
    color: #5a6570;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-cta {
    background: linear-gradient(135deg, #4A90E2 0%, #6BB2FF 100%);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .opportunity-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

