 :root {
        --primary: #0d6efd;
        --accent: #fd7e14;
        --success: #198754;
        --dark: #1a1a1a;
        --dark-gray: #495057;
        --light: #f8f9fa;
        --white: #ffffff;
        --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    }


    /* Navbar button base */
    .btn-navbar {
        padding: 8px 14px;
        border-radius: 999px;
        font-weight: 600;
        font-size: 0.95rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 0;
        transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
        cursor: pointer;
    }

    /* Post a Job button (outline -> filled on hover) */
    .btn-postjob {
        background: white;
        color: #6f42c1;
        border: 2px solid var(--bs-theme);
        box-shadow: 0 4px 10px rgba(111, 66, 193, 0.08);
        border: 2px solid #6f42c1;
    }

    .btn-postjob:hover {
        transform: translateY(-3px);
        background: linear-gradient(135deg, #6f42c1 0%, #8a5be0 100%);
        color: #fff;
        box-shadow: 0 12px 30px rgba(111, 66, 193, 0.18);
    }

    /* Login button (subtle, bordered) */
    .btn-login {
        background: transparent;
        color: var(--bs-theme);
        border: 2px solid rgba(111, 66, 193, 0.12);
        color: #6f42c1;
    }

    .btn-login:hover {
        transform: translateY(-2px);
        background: rgba(111, 66, 193, 0.06);
        box-shadow: 0 8px 20px rgba(111, 66, 193, 0.06);
    }

    /* Register button (gradient primary) */
    .btn-register {
        background: linear-gradient(135deg, #ff8fab 0%, #ff6b9d 100%);
        color: #fff;
        border: none;
        box-shadow: 0 6px 18px rgba(255, 107, 157, 0.18);
    }

    .btn-register:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(255, 107, 157, 0.26);
    }

    /* Icon sizing inside buttons */
    .btn-navbar i {
        font-size: 1rem;
        line-height: 1;
        display: inline-block;
    }

    /* Accessible focus state */
    .btn-navbar:focus {
        outline: none;
    }

    .btn-navbar:focus-visible {
        box-shadow: 0 0 0 4px rgba(111, 66, 193, 0.12), 0 6px 18px rgba(0, 0, 0, 0.06);
        transform: translateY(-1px);
    }

    /* Hero Section */
    .hero-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 80px 0;
        color: white;
        text-align: center;
    }

    .hero-section h1 {
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .hero-section .subtitle {
        font-size: 1.25rem;
        margin-bottom: 40px;
        opacity: 0.95;
    }

    .search-card {
        background: white;
        border-radius: 16px;
        padding: 30px;
        box-shadow: var(--shadow);
        max-width: 900px;
        margin: 0 auto;
    }

    .search-input {
        border-radius: 10px;
        padding: 14px 20px;
        border: 2px solid #e0e0e0;
        font-size: 1rem;
        transition: border-color 0.3s;
    }

    .search-input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
    }
      
      
      
      
      
      
      
      
      
      
      
      .categories-section {
        padding: 60px 0;
        background: var(--light);
    }

    .category-card {
        background: white;
        border-radius: 16px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: var(--shadow);
        transition: all 0.3s;
        cursor: pointer;
        border: 2px solid transparent;
    }

    .category-card:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: var(--shadow-hover);
        border-color: var(--primary);
    }

    .category-card i {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .category-card h5 {
        font-weight: 600;
        margin-bottom: 8px;
    }

    .badge-count {
        background: var(--primary);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
    }

    
    /* Featured Jobs */
    .featured-section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
        text-align: center;
    }

  .job-card {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    
}


    .job-card:hover {
    transform: translateY(-5px);
}

.job-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-logo {

    height: 50px;
    border-radius: 6px;
}


.company-name {
    font-weight: 600;
    display: block;
}

.verified-badge {
    color: green;
    font-size: 12px;
}

.job-title {
    margin: 12px 0;
    font-size: 18px;
}

.job-details {
    font-size: 14px;
    color: #555;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-tags {
    margin: 10px 0;
}

.tag {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.tag.primary {
    background: #e7f1ff;
    color: #0d6efd;
}

.tag.warning {
    background: #fff3cd;
    color: #856404;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.apply-btn {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.simple-banner{
  background-color: #6f42c1;
  padding: 50px;
} 

