 :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 Details CSS */

.job-details-container {
            padding: 40px 0;
            background: #f8f9fa;
            margin-top: 70px;
        }

        .main-content {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.05);
        }

        .job-sidebar {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.05);
        }

        .job-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
        }

        .job-meta {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            color: var(--text-medium);
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 2rem 0 1.5rem;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 0.5rem;
        }

        .proof-editor {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 15px;
            min-height: 200px;
            margin-bottom: 1.5rem;
        }

        .file-upload-wrapper {
            border: 2px dashed #e9ecef;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .file-upload-input {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
            top: 0;
            left: 0;
        }

        .uploaded-files {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .file-item {
            background: #f8f9fa;
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .advertisement {
            background: #f1f3f5;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin: 2rem 0;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 992px) {
            .job-title {
                font-size: 1.75rem;
            }
            
            .ad-desktop {
                display: none;
            }
        }

        @media (min-width: 993px) {
            .ad-mobile {
                display: none;
            }
        }

        .provider-details {
            border-top: 2px solid var(--primary-color);
            padding-top: 1.5rem;
            margin-top: 1.5rem;
        }

        .success-rate {
            font-size: 1.2rem;
            color: var(--primary-color);
            font-weight: 600;
        }

        .submit-proof-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 12px 35px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
        }

        .submit-proof-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
        }

/* 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;
    }
}











