
        :root {
            --primary: #FC253F;
            --primary-dark: #19326A;
            --heading: #081120;
            --accent: #0a7d3e;
            --success: #22c55e;
            --light: #f8fafc;
            --border: #e2e8f0;
            --muted: #64748b;
            --white: #ffffff;
             --background: #f5f7fa;
    --card-bg: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #6c757d;
    --border-color: #e9ecef;
    --success: #28a745;
    --tag-bg: #e8f4fd;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Figtree', sans-serif;
            background: var(--light);
            color: var(--heading);
            font-size: 14px;
            line-height: 1.6;
        }

        .navbar-modern {
            background: var(--white);
            box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.05);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .brand {
            font-weight: 800;
            font-size: 1.75rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .brand-job {
            color: var(--primary);
        }

        .brand-portal {
            color: var(--primary-dark);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-link-modern {
            color: var(--heading);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            padding: 0.5rem 0;
            position: relative;
        }

        .nav-link-modern:hover {
            color: var(--primary);
        }

        .nav-link-modern.premium {
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-link-modern.premium i {
            font-size: 0.85rem;
        }

        .btn-modern {
            padding: 0.75rem 1.75rem;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary-modern {
            background: linear-gradient(135deg, var(--primary) 0%, #ff4757 100%);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(252, 37, 63, 0.3);
        }

        .btn-primary-modern:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(252, 37, 63, 0.4);
            color: var(--white);
        }
        .company-name{
            display: none;
        }

        .btn-outline-modern {
            background: transparent;
            color: var(--primary-dark);
            border: 2px solid var(--primary-dark);
        }

        .btn-outline-modern:hover {
            background: var(--primary-dark);
            color: var(--white);
        }
        .hero-eyebrow{
    display: flex;
    flex-direction: column;
    align-items: center;
        }

        .hero-section {
            background: linear-gradient(135deg, rgb(252 37 63) 0%, rgb(25 50 106) 100%);
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(252, 37, 63, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-title {
            color: var(--white);
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            position: relative;text-align: center;
        }

        .hero-subtitle {
            color: rgba(255,255,255,0.8);
            font-size: 1.1rem;
            position: relative; position: relative;text-align: center;
        }

        .job-count-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            color: var(--white);
            font-weight: 500;
            font-size: 0.9rem;
            margin-top: 1rem;
        }

        .job-count-badge i {
            color: var(--success);
        }

        .search-bar-container {
            max-width: 700px;
            margin: 2rem auto 0;
            position: relative;
            z-index: 2;
        }

        .search-bar-modern {
            display: flex;
            background: var(--white);
            border-radius: 16px;
            padding: 0.5rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            gap: 0.5rem;
        }

        .search-input-wrapper {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 1rem;
            border-right: 1px solid var(--border);
        }

        .search-input-wrapper:last-of-type {
            border-right: none;
        }

        .search-input-wrapper i {
            color: var(--muted);
            font-size: 1.1rem;
        }

        .search-input-wrapper input {
            border: none;
            outline: none;
            width: 100%;
            font-size: 0.95rem;
            font-family: 'Figtree', sans-serif;
            color: var(--heading);
        }

        .search-input-wrapper input::placeholder {
            color: var(--muted);
        }

        .btn-search-modern {
            background: linear-gradient(135deg, var(--primary) 0%, #ff4757 100%);
            color: var(--white);
            border: none;
            padding: 0.85rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-search-modern:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 15px rgba(252, 37, 63, 0.4);
        }

        .main-content {
            padding: 2.5rem 0;
            min-height: calc(100vh - 200px);
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--heading);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .section-title::before {
            content: '';
            width: 4px;
            height: 24px;
            background: var(--primary);
            border-radius: 2px;
        }

        .job-card-modern {
            background: var(--white);
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border: 1px solid var(--border);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .job-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .job-card-modern:hover {
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transform: translateY(-4px);
            border-color: transparent;
        }

        .job-card-modern:hover::before {
            transform: scaleY(1);
        }

        .company-logo-modern {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--light) 0%, #e2e8f0 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--primary-dark);
            font-size: 0.9rem;
        }

        .job-title-modern {
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--heading);
            margin-bottom: 0.25rem;
            cursor: pointer;
            transition: color 0.2s ease;   
        }

        .job-title-modern:hover {
            color: var(--primary);
        }

        .company-name-modern {
            color: var(--muted);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .job-meta-modern {
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem;
            margin-top: 1rem;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--muted);
            font-size: 0.85rem;
            font-weight: 500;
        }

        .meta-item i {
            color: var(--primary-dark);
            font-size: 1rem;
        }

        .job-skills-modern {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .skill-chip {
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            color: var(--primary-dark);
            padding: 0.35rem 0.85rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .skill-chip:hover {
            background: var(--primary-dark);
            color: var(--white);
        }

        .job-actions-modern {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.25rem;
        }

        .btn-apply-modern {
            background: var(--primary);
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-apply-modern:hover {
            background: #e01f38;
            transform: translateY(-1px);
            color: var(--white);
        }

        .btn-save-modern {
            background: transparent;
            color: var(--muted);
            border: 1.5px solid var(--border);
            padding: 0.6rem 1rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .btn-save-modern:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(252, 37, 63, 0.05);
        }

        .register-card-modern {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid var(--border);
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            position: sticky;
            top: 100px;
        }

        .register-card-modern h4 {
            font-weight: 700;
            font-size: 1.35rem;
            color: var(--heading);
            margin-bottom: 0.5rem;
        }

        .register-card-modern .subtitle {
            color: var(--muted);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .form-group-modern {
            margin-bottom: 1.25rem;
        }

        .form-label-modern {
            font-weight: 600;
            color: var(--heading);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            display: block;
        }

        .form-control-modern {
            width: 100%;
            padding: 0.85rem 1rem;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            font-family: 'Figtree', sans-serif;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            background: var(--white);
        }

        .form-control-modern:focus {
            outline: none;
            border-color: var(--primary-dark);
            box-shadow: 0 0 0 4px rgba(25, 50, 106, 0.1);
        }

        .form-control-modern::placeholder {
            color: #94a3b8;
        }

        .file-upload-modern {
            border: 2px dashed var(--border);
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            background: var(--light);
        }

        .file-upload-modern:hover {
            border-color: var(--primary-dark);
            background: rgba(25, 50, 106, 0.02);
        }

        .file-upload-modern i {
            font-size: 2rem;
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
        }

        .file-upload-modern p {
            margin: 0;
            color: var(--muted);
            font-size: 0.85rem;
        }

        .btn-proceed-modern {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary) 0%, #ff4757 100%);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(252, 37, 63, 0.3);
        }

        .btn-proceed-modern:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(252, 37, 63, 0.4);
        }

        .modal-content-modern {
            border: none;
            border-radius: 20px;
            overflow: hidden;
        }

        .modal-header-modern {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2a4a8f 100%);
            color: var(--white);
            padding: 1.5rem;
            border: none;
        }

        .modal-header-modern .modal-title {
            font-weight: 700;
            font-size: 1.25rem;
        }

        .modal-header-modern .btn-close {
            filter: invert(1);
            opacity: 0.8;
        }

        .modal-body-modern {
            padding: 2rem;
        }

        .step-indicator-modern {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2rem;
            gap: 0;
        }

        .step-modern {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }

        .step-circle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--border);
            color: var(--muted);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .step-modern.active .step-circle {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2a4a8f 100%);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(25, 50, 106, 0.3);
        }

        .step-modern.completed .step-circle {
            background: var(--success);
            color: var(--white);
        }

        .step-label-modern {
            margin-top: 0.5rem;
            font-weight: 600;
            font-size: 0.75rem;
            color: var(--muted);
            text-align: center;
        }

        .step-modern.active .step-label-modern {
            color: var(--heading);
        }

        .step-connector {
            width: 80px;
            height: 3px;
            background: var(--border);
            margin: 0 -10px;
            margin-bottom: 1.5rem;
        }

        .step-connector.completed {
            background: var(--success);
        }

        .plan-card-modern {
            border: 2px solid var(--border);
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .plan-card-modern:hover, .plan-card-modern.selected {
            border-color: var(--primary-dark);
            background: rgba(25, 50, 106, 0.02);
        }

        .plan-card-modern.selected::after {
            content: '\f272';
            font-family: 'bootstrap-icons';
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--success);
            color: var(--white);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
        }

        .plan-card-modern.premium {
            border-color: var(--primary);
            background: linear-gradient(135deg, rgba(252, 37, 63, 0.02) 0%, rgba(252, 37, 63, 0.05) 100%);
        }

        .plan-badge {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
            position: absolute;
            top: -3px;
            left: 5px;
        }

        .plan-card-modern h6 {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--heading);
            margin-bottom: 0.5rem;
        }

        .plan-price {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .plan-price span {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--muted);
        }

        .plan-features {
            text-align: left;
            margin-top: 1rem;
        }

        .plan-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0;
            font-size: 0.85rem;
            color: var(--muted);
        }

        .plan-features li i {
            color: var(--success);
        }

        .pagination-modern {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .pagination-modern .page-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            border: 1.5px solid var(--border);
            color: var(--heading);
            font-weight: 600;
            transition: all 0.2s ease;
            background: var(--white);
        }

        .pagination-modern .page-link:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            color: var(--white);
        }

        .pagination-modern .page-item.active .page-link {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            color: var(--white);
        }

        footer {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #0f1f40 100%);
            color: var(--white);
            padding: 3rem 0 1.5rem;
            margin-top: 2rem;
        }

        footer h6 {
            font-weight: 700;
            margin-bottom: 1.25rem;
            font-size: 1rem;
        }

        footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        footer li {
            margin-bottom: 0.75rem;
        }

        footer a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }

        footer a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 0.85rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
            padding-left: 0;
        }

        .register-link {
            text-align: center;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
        }

        .register-link a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
        }

        .register-link a:hover {
            text-decoration: underline;
        }

        .payment-card {
            border-radius: 12px;
        }

        .section-title {
            font-weight: 600;
            color: #333;
        }

        @media (max-width: 991px) {
            .register-card-modern {
                position: static;
                margin-top: 2rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .step-connector {
                width: 40px;
            }

            .step-label-modern {
                display: none;
            }

            .nav-menu {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem 0;
            }

            .search-bar-modern {
                flex-direction: column;
            }

            .search-input-wrapper {
                border-right: none;
                border-bottom: 1px solid var(--border);
            }

            .search-input-wrapper:last-of-type {
                border-bottom: none;
            }
        }

        @media (max-width: 767px) {
            .job-actions-modern {
                flex-direction: column;
            }

            .btn-apply-modern, .btn-save-modern {
                width: 100%;
                justify-content: center;
            }

            .hero-title {
                font-size: 1.75rem;
            }

            .plan-card-modern {
                margin-bottom: 1rem;
            }
        }

        @media (min-width: 576px) {
            .modal-dialog {
                max-width: 556px;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .job-card-modern {
            animation: fadeInUp 0.5s ease forwards;
        }

        .job-card-modern:nth-child(1) { animation-delay: 0.1s; }
        .job-card-modern:nth-child(2) { animation-delay: 0.2s; }
        .job-card-modern:nth-child(3) { animation-delay: 0.3s; }
         .hero-title {
        
            font-weight: 800;
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            color: var(--white);
            line-height: 1.1;
            letter-spacing: -1.5px;
            margin-bottom: 1rem;
            animation: up 0.6s 0.1s ease both;
        }
         .hero-sub {
            color: rgba(255,255,255,0.5);
            font-size: 1rem;
            font-weight: 300;
            animation: up 0.6s 0.2s ease both;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 0.5rem;
            animation: up 0.6s 0.3s ease both;
        }

        .stat-num {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--white);
            line-height: 1;
        }

        .stat-lbl {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-top: 0.2rem;
        }

        .stat-div {
            width: 1px; height: 38px;
            background: rgba(255,255,255,0.12);
            align-self: center;
        }


        .hero-title em { font-style: normal; color: var(--red); }

        .hero-sub {
            color: rgba(255,255,255,0.5);
            font-size: 1rem;
            font-weight: 300;
            animation: up 0.6s 0.2s ease both;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 0.5rem;
            animation: up 0.6s 0.3s ease both;
        }

   
         /* Job Cards */
        .jobs-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .jobs-count {
            font-size: 1.1rem;
            color: var(--text-secondary);
        }

        .jobs-count strong {
            color: var(--text-primary);
        }

        .sort-dropdown select {
            border: 2px solid var(--border-color);
            border-radius: 8px;
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .job-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border: 2px solid transparent;
            cursor: pointer;
        }

        .job-card:hover {
            border-color: var(--primary);
            box-shadow: 0 5px 20px rgba(0, 102, 204, 0.15);
            transform: translateY(-2px);
        }

        .job-card-header {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .company-logo {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            background-color: var(--background);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary);
            flex-shrink: 0;
        }

        .job-info {
            flex: 1;
        }

        .job-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 0.25rem;
            text-decoration: none;
            display: block; padding-top: 10px;
        }

        .job-title:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .company-name {
            font-size: 0.95rem;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .company-rating {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            background-color: var(--success);
            color: white;
            padding: 0.1rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .job-meta-item {
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }

        .job-meta-item i {
            font-size: 1rem;
        }

        .job-description {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .job-tag {
            background-color: var(--tag-bg);
            color: var(--tag-text);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .job-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid var(--border-color);
        }

        .job-posted {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .job-actions {
            display: flex;
            gap: 0.75rem;
        }

        .btn-save {
            background-color: transparent;
            border: 2px solid var(--border-color);
            color: var(--text-secondary);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s;display: none;
        }

        .btn-save:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .btn-apply {
            background-color: var(--primary);
            border: none;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-apply:hover {
            background-color: var(--primary-dark);
            color: white;
        }

        /* Featured Badge */
        .featured-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: var(--secondary);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* Pagination */
        .pagination-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        .pagination .page-link {
            border: none;
            color: var(--text-primary);
            padding: 0.75rem 1rem;
            margin: 0 0.25rem;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .pagination .page-link:hover {
            background-color: var(--tag-bg);
            color: var(--primary);
        }
.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}
.job-tag {
    background-color: var(--tag-bg);
    color: var(--tag-text);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}
