/* jobs.css */
        :root {
            --primary-color: #03dbfc;
            --secondary-color: #0066cc;
            --dark-color: #1a2b3c;
            --light-color: #f8f9fa;
            --accent-color: #ff6b35;
            --gradient-blue: linear-gradient(135deg, #03dbfc 0%, #0066cc 100%);
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8fafc;
            color: var(--dark-color);
            overflow-x: hidden;
            padding-top: 80px;
        }
        
        
        /* Page Header */
        .page-header {
            background: var(--gradient-blue);
            color: white;
            padding: 60px 0 40px;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
        }
        
        .page-header p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Stats Cards */
        .stats-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: -30px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .stat-card-small {
            background: white;
            border-radius: 15px;
            padding: 20px 25px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 15px;
            min-width: 180px;
            transition: all 0.3s;
        }
        
        .stat-card-small:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .stat-icon-small {
            width: 50px;
            height: 50px;
            background: var(--gradient-blue);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }
        
        .stat-content-small h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0;
            color: var(--dark-color);
            line-height: 1.2;
        }
        
        .stat-content-small p {
            margin-bottom: 0;
            color: #666;
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        .stat-card-small.expired {
            background: linear-gradient(135deg, #dc3545, #c82333);
        }
        
        .stat-card-small.expired .stat-content-small h3,
        .stat-card-small.expired .stat-content-small p {
            color: white;
        }
        
        .stat-card-small.expired .stat-icon-small {
            background: rgba(255,255,255,0.2);
        }
        
        /* Search Section */
        .search-section {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .search-form {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .search-input-group {
            flex: 1;
            min-width: 250px;
            position: relative;
        }
        
        .search-input-group i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-color);
        }
        
        .search-input {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .search-input:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(3, 219, 252, 0.1);
        }
        
        .category-select {
            padding: 15px 25px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            color: var(--dark-color);
            cursor: pointer;
            min-width: 200px;
        }
        
        .search-btn {
            background: var(--gradient-blue);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(3, 219, 252, 0.3);
        }
        
        .reset-btn {
            background: #f8f9fa;
            color: #666;
            border: 2px solid #e9ecef;
            padding: 15px 25px;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        
        .reset-btn:hover {
            background: #e9ecef;
            color: var(--dark-color);
        }
        
        /* Accredited Badge */
        .accredited-badge {
            display: inline-block;
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-left: 10px;
            text-transform: uppercase;
            white-space: nowrap;
        }
        
        /* Job Cards */
        .job-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            border-left: 5px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .job-card.direct {
            border-left-color: var(--secondary-color);
        }
        
        .job-card.agency {
            border-left-color: var(--accent-color);
        }
        
        .job-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .badge-direct {
            background: rgba(0, 102, 204, 0.1);
            color: var(--secondary-color);
        }
        
        .badge-agency {
            background: rgba(255, 107, 53, 0.1);
            color: var(--accent-color);
        }
        
        .job-company {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 10px;
            padding-right: 100px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .job-address {
            color: #666;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .job-address i {
            color: var(--primary-color);
            width: 20px;
        }
        
        .job-title {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
        }
        
        .job-title h5 {
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .job-title p {
            margin-bottom: 0;
            color: #666;
            white-space: pre-line;
        }
        
        .job-qualifications {
            margin-bottom: 20px;
        }
        
        .job-qualifications h6 {
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .job-qualifications h6 i {
            color: var(--primary-color);
        }
        
        .job-qualifications ul {
            list-style: none;
            padding-left: 25px;
            margin-bottom: 0;
        }
        
        .job-qualifications li {
            margin-bottom: 5px;
            color: #666;
            position: relative;
        }
        
        .job-qualifications li:before {
            content: "•";
            color: var(--primary-color);
            font-weight: bold;
            position: absolute;
            left: -15px;
        }
        
        .job-contact {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            padding: 15px 0;
            border-top: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
            margin-bottom: 15px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 0.9rem;
        }
        
        .contact-item i {
            color: var(--primary-color);
            width: 16px;
        }
        
        .contact-item a {
            color: #666;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .contact-item a:hover {
            color: var(--primary-color);
        }
        
        /* Expiry Info */
        .expiry-info {
            font-size: 0.8rem;
            color: #666;
            margin-bottom: 15px;
            padding: 8px 12px;
            background: #f8f9fa;
            border-radius: 8px;
            display: inline-block;
        }
        
        .expiry-info i {
            color: var(--primary-color);
            margin-right: 5px;
        }
        
        .expiry-info.valid {
            border-left: 3px solid #28a745;
        }
        
        /* Apply Button */
        .apply-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        
        .apply-btn {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
        }
        
        .apply-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
            color: white;
        }
        
        .apply-btn i {
            font-size: 1.1rem;
        }
        
        .form-note {
            color: #666;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .form-note i {
            color: var(--primary-color);
        }
        
        /* Pagination */
        .pagination-container {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            margin-bottom: 20px;
        }
        
        .pagination {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0;
            list-style: none;
        }
        
        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 10px;
            color: var(--secondary-color);
            background-color: white;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .page-link:hover {
            background: var(--gradient-blue);
            color: white;
            border-color: transparent;
            transform: translateY(-2px);
        }
        
        .page-item.active .page-link {
            background: var(--gradient-blue);
            color: white;
            border-color: transparent;
            font-weight: 600;
        }
        
        .page-item.disabled .page-link {
            color: #999;
            background-color: #f8f9fa;
            border-color: #e9ecef;
            pointer-events: none;
            opacity: 0.6;
        }
        
        /* No Results */
        .no-results {
            text-align: center;
            padding: 60px 20px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .no-results i {
            font-size: 4rem;
            color: #dee2e6;
            margin-bottom: 20px;
        }
        
        .no-results h3 {
            color: var(--dark-color);
            margin-bottom: 10px;
        }
        
        .no-results p {
            color: #999;
            margin-bottom: 20px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-primary-custom {
            background: var(--gradient-blue);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(3, 219, 252, 0.3);
            color: white;
        }
        
        /* Results Info */
        .results-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 10px;
            background: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .results-count {
            color: #666;
            font-size: 0.95rem;
        }
        
        .results-count strong {
            color: var(--secondary-color);
        }
        
        .badge-expired {
            background: #dc3545;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-left: 10px;
        }
        
        /* Footer */
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 70px 0 20px;
            margin-top: 60px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2rem;
            }
            
            .search-form {
                flex-direction: column;
            }
            
            .search-btn, .reset-btn {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            
            .job-company {
                font-size: 1.2rem;
                padding-right: 0;
                flex-direction: column;
                align-items: flex-start;
            }
            
            .job-badge {
                position: static;
                display: inline-block;
                margin-bottom: 10px;
            }
            
            .accredited-badge {
                margin-left: 0;
            }
            
            .stat-card-small {
                min-width: 150px;
                padding: 15px;
            }
            
            .stat-icon-small {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .stat-content-small h3 {
                font-size: 1.5rem;
            }
            
            .stat-content-small p {
                font-size: 0.8rem;
            }
            
            .apply-section {
                flex-direction: column;
                align-items: stretch;
            }
            
            .apply-btn {
                width: 100%;
                justify-content: center;
            }
            
            .form-note {
                justify-content: center;
            }
        }