﻿/*Job details cardt start here 
*/
:root {
    --primary: #00897b;
    --primary-dark: #00695C;
    --primary-light: #4db6ac;
    --primary-mid: #E0F2F1;
    --text-dark: #1A2332;
    --primary-ultra-light: #e0f2f1;
    --accent: #00bfa5;
    --accent-warm: #ffa726;
    --dark: #263238;
    --cream: #FFFFFF;
    --cream-warm: #fafaf8;
    --gray: #546e7a;
    --gray-light: #90a4ae;
    --border: #eceff1;
    --shadow-subtle: 0 2px 8px rgba(0, 137, 123, 0.06);
    --shadow-card: 0 4px 16px rgba(0, 137, 123, 0.08);
    --shadow-elevated: 0 8px 32px rgba(0, 137, 123, 0.12);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--cream-warm);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Alert Bar */
.alert-bar {
    background: var(--primary);
    color: white;
    padding: 0.7rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}

    
    .alert-bar a {
        color: white;
        text-decoration: underline;
        margin-left: 8px;
        font-weight: 700;
    }

/* Navigation */
nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    box-shadow: var(--shadow-subtle);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 137, 123, 0.25);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 600;
        font-size: 0.95rem;
        position: relative;
        transition: color 0.3s ease;
    }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nav-links a.active::after,
        .nav-links a:hover::after {
            width: 100%;
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid var(--border);
    background: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .search-btn:hover {
        border-color: var(--primary);
        background: var(--primary-ultra-light);
        transform: translateY(-2px);
    }

.btn-primary {
    padding: 0.85rem 1.75rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 137, 123, 0.2);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 137, 123, 0.3);
        background: var(--primary-light);
    }

/* Breadcrumb */
.breadcrumb-section {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

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

        .breadcrumb-container a:hover {
            text-decoration: underline;
        }

/* Main Container */
.job-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

/* Job Header */
.job-header {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.job-header-top {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.company-logo-large {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

    .company-logo-large img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 0.75rem;
    }

.job-header-content {
    flex: 1;
}

.job-title-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.company-name-main {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

    .company-name-main:hover {
        text-decoration: underline;
        cursor: pointer;
    }

.job-meta-main {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.meta-item-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--gray);
}

    .meta-item-main strong {
        color: var(--dark);
        font-weight: 600;
    }

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

.btn-save-large {
    padding: 1rem 2rem;
    padding: 0rem 1rem;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-save-large:hover {
        background: var(--primary-ultra-light);
    }

    .btn-save-large.saved {
        background: var(--primary);
        color: white;
    }

.btn-apply {
    /* padding: 1rem 3rem; */
    padding: 0.75rem 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 137, 123, 0.25);
}

    .btn-apply:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 137, 123, 0.35);
    }

/* Job Content */
.job-content {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.content-section {
    margin-bottom: 2.5rem;
}

    .content-section:last-child {
        margin-bottom: 0;
    }

.company-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

.content-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1rem;
}

.content-section ul {
    list-style: none;
    margin-left: 0;
}

    .content-section ul li {
        font-size: 1rem;
        line-height: 1.8;
        color: var(--gray);
        margin-bottom: 0.75rem;
        padding-left: 2rem;
        position: relative;
    }

        .content-section ul li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: 700;
            font-size: 1.2rem;
        }

.job-tags-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.job-tag-detail {
    padding: 0.6rem 1.25rem;
    background: var(--primary-ultra-light);
    color: var(--primary);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Sidebar */
.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

/* Job Summary Widget */
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

    .summary-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .summary-item:first-child {
        padding-top: 0;
    }

.summary-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.summary-value {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 600;
    text-align: right;
}

/* Company Info Widget */
.company-info-widget {
    background: linear-gradient(135deg, var(--primary-ultra-light) 0%, white 100%);
    border: 2px solid var(--primary);
}

.company-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.company-logo-sidebar {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    overflow: hidden;
}

    .company-logo-sidebar img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 0.5rem;
    }

.company-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.company-jobs-count {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.company-description {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.btn-view-company {
    display: block;
    width: 100%;
    padding: 0.85rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

    .btn-view-company:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 137, 123, 0.25);
    }

/* Share Widget */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.share-btn {
    padding: 0.85rem;
    background: var(--cream-warm);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .share-btn:hover {
        border-color: var(--primary);
        background: var(--primary-ultra-light);
    }

/* Similar Jobs Widget */
.similar-job {
    padding: 1.25rem;
    background: var(--cream-warm);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .similar-job:last-child {
        margin-bottom: 0;
    }

    .similar-job:hover {
        border-color: var(--primary);
        background: white;
        transform: translateX(5px);
    }

.similar-job-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.similar-job-company {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.similar-job-meta {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Alert Box */
.alert-box {
    background: var(--primary-ultra-light);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.alert-box-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.alert-box p {
    font-size: 0.95rem;
    color: var(--dark);
    margin: 0;
}

.job-expired-bar {
    background: #fff2f0;
    border: 1px solid #ffccc7;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.expired-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.expired-icon {
    font-size: 18px;
}

.expired-title {
    font-weight: 700;
    color: #a8071a;
    font-size: 15px;
}

.expired-sub {
    font-size: 13px;
    color: #8c8c8c;
}

.expired-badge {
    background: #cf1322;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .job-detail-container {
        grid-template-columns: 1fr;
    }

    .job-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .job-header-top {
        flex-direction: column;
    }

    .job-title-main {
        font-size: 1.5rem;
    }

    .job-actions-header {
        flex-direction: column;
    }

    .share-buttons {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
/*Job details card end here */

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


/*Job listing card start here */

/* Main Layout */
.jobs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 300px 1fr 320px;
    gap: 2rem;
    align-items: start;
}

.jobs-h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Left Sidebar - Filters */
.company-filters-sidebar {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    position: relative;
    top: 100px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

    .filters-header h3 {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--dark);
    }

.clear-filters {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

    .clear-filters:hover {
        text-decoration: underline;
    }

.filter-group {
    margin-bottom: 1rem;
}

    .filter-group:last-child {
        margin-bottom: 0;
    }

.filter-label {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

    .filter-input:focus,
    .filter-select:focus {
        outline: none;
        border-color: var(--primary);
        background: var(--primary-ultra-light);
    }

.filter-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-scroll-box {
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    padding: 8px 10px;
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

    .checkbox-scroll-box::-webkit-scrollbar {
        width: 6px;
    }

    .checkbox-scroll-box::-webkit-scrollbar-thumb {
        background: #cfd8dc;
        border-radius: 4px;
    }

    .checkbox-scroll-box::-webkit-scrollbar-track {
        background: transparent;
    }

.filter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 2px 0;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
}

    .filter-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        min-width: 18px;
        margin-top: 2px;
        accent-color: var(--primary);
        cursor: pointer;
    }

    .filter-checkbox label {
        font-size: 0.9rem;
        color: var(--dark);
        cursor: pointer;
        line-height: 1.45;
        word-break: break-word;
        overflow-wrap: anywhere;
        flex: 1;
    }

.filter-count {
    margin-left: auto;
    font-size: 12px;
    color: #90a4ae;
    white-space: nowrap;
    padding-left: 6px;
}

.apply-filters-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .apply-filters-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 137, 123, 0.3);
    }

/* Main Content - Job Listings */
.jobs-main {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}

.jobs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.jobs-count {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

    .jobs-count strong {
        color: var(--primary);
        font-weight: 700;
    }

.sort-by {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .sort-by label {
        font-size: 0.9rem;
        color: var(--gray);
        font-weight: 600;
    }

    .sort-by select {
        padding: 0.6rem 1rem;
        border: 2px solid var(--border);
        border-radius: 8px;
        font-size: 0.9rem;
        font-family: 'Plus Jakarta Sans', sans-serif;
        cursor: pointer;
        background: #fff;
    }

/* Job Card - Horizontal Layout */
.job-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    align-items: start;
}

    .job-card:hover {
        border-color: var(--primary);
        box-shadow: 0 2px 12px rgba(0, 137, 123, 0.1);
    }

/* Logo on left */
.company-logo {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    flex-shrink: 0;
    overflow: hidden;
}

    .company-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 0.5rem;
    }

.company-logo-text {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary);
}

/* Main content */
.job-card-main {
    min-width: 0;
    max-width: 109%;
    margin-left : 35px;
}

.job-title {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

    .job-title a {
        text-decoration: none;
        color: #263238;
    }

.company-name {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.85rem;
}

    .company-name a {
        text-decoration: none;
        color: var(--primary);
    }

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 0.85rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--gray);
}

    .meta-item strong {
        color: var(--dark);
        font-weight: 600;
    }

.job-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.job-tag {
    padding: 0.35rem 0.85rem;
    background: var(--primary-ultra-light);
    color: var(--primary);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Right side - Actions */
.job-card-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    flex-shrink: 0;
    margin-top: 3rem;
}

.posted-time {
    font-size: 0.85rem;
    color: var(--gray-light);
    white-space: nowrap;
    margin-top: 1rem;
}

.btn-save-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid var(--primary-light);
    background: #fff;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

    .btn-save-icon:hover {
        border-color: var(--primary);
        background: var(--primary-ultra-light);
    }

    .btn-save-icon.saved {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
    }

.new-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    padding: 0.35rem 0.75rem;
    background: var(--accent-warm);
    color: #fff;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Remove old unused layout pieces */
/*.job-card-header,
.job-card-footer,
.job-actions,
.btn-save,
.btn-view {
    display: none;
}*/

/* Right Sidebar */
.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    top: 100px;
}

.listing-sidebar-widget {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.listing-widget-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

/* Featured Employers */
.featured-employer {
    padding: 1.5rem;
    background: var(--cream-warm);
    border: 2px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 230px;
}

    .featured-employer:last-child {
        margin-bottom: 0;
    }

    .featured-employer:hover {
        border-color: var(--primary);
        background: #fff;
        transform: translateX(5px);
    }

.employer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.employer-logo {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    overflow: hidden;
}

    .employer-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 0.4rem;
    }

.employer-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.employer-jobs {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.employer-description {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

.featured-employer h4 a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
}

/* Ad Widget */
.ad-widget {
    background: linear-gradient(135deg, var(--primary-ultra-light) 0%, #fff 100%);
    border: 2px solid var(--primary);
    text-align: center;
    padding: 3rem 2rem;
}

    .ad-widget h4 {
        font-size: 1.25rem;
        color: var(--dark);
        margin-bottom: 1rem;
    }

    .ad-widget p {
        font-size: 0.95rem;
        color: var(--gray);
        margin-bottom: 1.5rem;
    }

.ad-cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

    .ad-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 137, 123, 0.3);
    }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    color: var(--dark);
    background: white;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .pagination-btn:hover {
        border-color: var(--primary);
        background: var(--primary-ultra-light);
    }

    .pagination-btn.active {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }

    .pagination-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.company-link {
    color: #0f766e;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .company-link:hover {
        color: #0d9488;
        text-decoration: underline;
    }

.right-sidebar .open-positions-link,
.right-sidebar .open-positions-link:hover {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* =========================
   Responsive
   ========================= */


@media (max-width: 768px) {
    .jobs-container {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }

    .filters-sidebar {
        display: block;
        position: static;
        top: auto;
        width: 100%;
        padding: 1rem;
        border-radius: 14px;
        margin-bottom: 0.5rem;
    }

    .filters-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

        .filters-header h3 {
            font-size: 1rem;
        }

    .filter-group {
        margin-bottom: 1rem;
    }

    .filter-label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .filter-input,
    .filter-select {
        font-size: 0.9rem;
        padding: 0.7rem 0.85rem;
    }

    .checkbox-scroll-box {
        max-height: 160px;
        padding: 8px;
    }

    .filter-checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }

    .filter-checkbox label {
        font-size: 0.88rem;
        line-height: 1.4;
    }

    .filter-count {
        font-size: 11px;
    }

    .apply-filters-btn {
        margin-top: 1rem;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .right-sidebar {
        display: none;
    }

    .jobs-main {
        width: 100%;
        min-width: 0;
    }

    .jobs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .sort-by {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

        .sort-by select {
            width: 100%;
        }

    .job-card {
        grid-template-columns: 56px 1fr;
        gap: 0.85rem;
        padding: 1rem;
        align-items: start;
    }

    .company-logo {
        width: 56px;
        height: 56px;
    }

        .company-logo img {
            padding: 0.35rem;
        }

    .job-card-main {
        min-width: 0;
        max-width: 100%;
    }

    .job-title {
        font-size: 1rem;
        line-height: 1.35;
        margin-bottom: 0.35rem;
        word-break: break-word;
    }

        .job-title a {
            display: inline;
            word-break: break-word;
        }

    .company-name {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        line-height: 1.35;
    }

    .job-meta {
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .meta-item {
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .job-description {
        font-size: 0.84rem;
        line-height: 1.45;
        margin-bottom: 0.5rem;
        -webkit-line-clamp: 2;
    }

    .job-tags {
        gap: 0.35rem;
    }

    .job-tag {
        font-size: 0.74rem;
        padding: 0.28rem 0.6rem;
    }

    .job-card-actions {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 0.75rem;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
    }

    .posted-time {
        font-size: 0.78rem;
        margin-top: 0;
        white-space: normal;
    }

    .btn-save-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .featured-employer {
        height: auto;
    }

    .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.45rem;
        margin-top: 1rem;
    }

    .pagination-btn {
        min-width: 38px;
        height: 38px;
        padding: 0.55rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 8px;
        line-height: 1;
    }
}

@media (max-width: 480px) {
    .jobs-container {
        padding: 0.75rem;
    }

    .filters-sidebar {
        padding: 0.9rem;
        border-radius: 12px;
    }

    .job-card {
        grid-template-columns: 52px 1fr;
        padding: 0.9rem;
    }

    .company-logo {
        width: 52px;
        height: 52px;
    }

    .job-title {
        font-size: 0.95rem;
    }

    .company-name {
        font-size: 0.86rem;
    }

    .job-description {
        font-size: 0.8rem;
    }

    .meta-item {
        font-size: 0.78rem;
    }
    .pagination {
        gap: 0.35rem;
    }

    .pagination-btn {
        min-width: 34px;
        height: 34px;
        padding: 0.45rem 0.65rem;
        font-size: 0.8rem;
        border-radius: 7px;
    }
}

/* =========================
   Job listing end here
   ========================= */

/*Job listing end here */

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*Login model start here */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(38, 50, 56, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.modal-content {
    background: white;
    border-radius: 24px;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-elevated);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: var(--border);
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    .modal-close:hover {
        background: var(--gray-light);
        transform: rotate(90deg);
    }

.modal-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.modal-tab {
    flex: 1;
    padding: 0.75rem;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

    .modal-tab.active {
        color: var(--primary);
        border-bottom-color: var(--primary);
    }

.modal-body {
    padding: 2rem;
}

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }


#apiMessageModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
}

.api-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999999;
    align-items: center;
    justify-content: center;
}

.api-modal-box {
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

    .api-modal-box button {
        margin-top: 15px;
        padding: 8px 20px;
        border: none;
        background: #007bff;
        color: white;
        border-radius: 6px;
        cursor: pointer;
    }

.api-message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    MUST be higher than login modal
}

    .api-message-overlay .modal-content {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        width: 400px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
/* User Dropdown (for logged in state - commented out by default) */
.user-dropdown {
    position: relative;
    display: block; MUST be visible /* Hidden by default - show when logged in */
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

    .user-dropdown-toggle:hover {
        border-color: var(--primary);
        background: var(--primary-ultra-light);
    }

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-elevated);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border);
}

.user-dropdown.active .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown-item {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
}

    .user-dropdown-item:hover {
        background: var(--primary-ultra-light);
    }

    .user-dropdown-item:last-child {
        border-bottom: none;
        border-radius: 0 0 16px 16px;
    }

    .user-dropdown-item:first-child {
        border-radius: 16px 16px 0 0;
    }

    .user-dropdown-item.logout {
        color: #d32f2f;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--dark);
    }

    .form-group input {
        width: 100%;
        padding: 0.875rem 1.25rem;
        border: 2px solid var(--border);
        border-radius: 12px;
        font-size: 1rem;
        transition: all 0.3s ease;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
            background: var(--primary-ultra-light);
        }

/* .social-login {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .social-login-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 0.875rem;
            border: 2px solid var(--border);
            border-radius: 12px;
            background: white;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .social-login-btn:hover {
            border-color: var(--primary);
            background: var(--primary-ultra-light);
            transform: translateY(-2px);
        } */

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--gray-light);
    font-size: 0.875rem;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid var(--border);
    }

    .divider span {
        padding: 0 1rem;
    }

.forgot-password {
    text-align: right;
    margin-bottom: 1.5rem;
}

    .forgot-password a {
        color: var(--primary);
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 600;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 137, 123, 0.3);
    }

.form-footer {
    text-align: center;
    margin-top: 1.25rem;
    color: var(--gray);
    font-size: 0.875rem;
}

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

        .form-footer a:hover {
            text-decoration: underline;
        }
/*Login model end here */

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* Footer start here */
footer {
    background: #24323a;
    color: rgba(255, 255, 255, 0.72);
    padding: 4rem 2.5rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1rem;
}

    .footer-logo img {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: block;
        object-fit: cover;
    }

    .footer-logo h3 {
        margin: 0;
        font-family: 'Playfair Display', serif;
        font-size: 2.2rem;
        font-weight: 500;
        line-height: 1;
        color: #fff;
    }

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer-section h4 {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

    .footer-links li {
        margin-bottom: 0.85rem;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.78);
        text-decoration: none;
        font-size: 0.98rem;
        transition: color 0.25s ease, transform 0.25s ease;
        display: inline-block;
    }

        .footer-links a:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

.social-links {
    display: flex;
    gap: 0.9rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

    .social-links a {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        font-size: 1.1rem;
        transition: all 0.25s ease;
    }

        .social-links a:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-3px);
        }

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
    }

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

    .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.62);
        text-decoration: none;
        transition: color 0.25s ease;
    }

        .footer-bottom-links a:hover {
            color: #fff;
        }

/* Tablet */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-links {
        gap: 1.25rem;
    }
}

/* Mobile */
@media (max-width: 576px) {
    footer {
        padding: 3rem 1.25rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-logo h3 {
        font-size: 1.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}
/* Footer end here */

/* ===== Mobile header auth/menu changes only ===== */

.btn-primary.desktop-auth-btn {
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
    border-radius: 10px;
    min-height: 40px;
}

.mobile-menu-wrapper {
    display: none;
    position: relative;
}

.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #d9e2e7;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
    transition: all 0.2s ease;
    padding: 0;
}


    .mobile-menu-btn:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
    }

.hamburger-line {
    display: block;
    width: 18px;
    height: 2px;
    background: #6b7280;
    border-radius: 2px;
}

.mobile-menu-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 180px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    display: none;
    z-index: 2000;
    padding: 0;
}

    .mobile-menu-dropdown.show {
        display: block;
    }

.mobile-menu-link {
    display: block;
    width: 100%;
    padding: 13px 18px;
    background: #ffffff;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

    .mobile-menu-link:hover {
        background: #f7fbfb;
        color: var(--primary);
        text-decoration: none;
    }

    .mobile-menu-link.active {
        background: #dcefee;
        color: var(--primary);
        font-weight: 600;
    }

.mobile-menu-auth-row {
    display: flex;
    gap: 8px;
    padding: 12px 12px 10px;
    border-top: 1px solid #edf2f7;
    background: #ffffff;
}

.mobile-auth-btn {
    flex: 1;
    height: 36px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .mobile-auth-btn.login-btn {
        background: var(--primary);
        color: #ffffff;
        border: none;
        min-width: 0;
    }

        .mobile-auth-btn.login-btn:hover {
            background: #0b7f74;
        }

    .mobile-auth-btn.signup-btn {
        background: #ffffff;
        color: #415a63;
        border: 2px solid #7bbcb8;
        min-width: 0;
    }

        .mobile-auth-btn.signup-btn:hover {
            background: var(--primary-ultra-light);
            color: var(--primary);
        }

    .mobile-auth-btn.logout-btn {
        background: var(--primary);
        color: #ffffff;
        border: none;
        width: 100%;
    }

        .mobile-auth-btn.logout-btn:hover {
            background: #0b7f74;
        }

@media (max-width: 768px) {
    .desktop-auth-btn,
    .desktop-user-dropdown,
    .btn-primary,
    .user-dropdown,
    .nav-links {
        display: none !important;
    }

    .mobile-menu-wrapper {
        display: block;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .nav-actions {
        position: relative;
    }

    .nav-container {
        padding: 0 1rem;
        height: 72px;
    }

    .logo {
        font-size: 1.85rem;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

        .logo-icon img {
            width: 42px;
            height: 42px;
        }
}

@media (max-width: 480px) {
    .mobile-menu-dropdown {
        width: 170px;
    }

    .mobile-menu-link {
        padding: 12px 16px;
        font-size: 15px;
    }

    .mobile-auth-btn {
        height: 34px;
        font-size: 11px;
    }
}

/*Mobile header end here */
/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/*Company details start here */

.company-details-header {
    background: linear-gradient(135deg, var(--primary-ultra-light) 0%, white 100%);
    padding: 3rem 2rem;
    border-bottom: 1px solid var(--border);
}

.company-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.company-logo-large {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--border);
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

    .company-logo-large img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 1rem;
    }

.company-header-content {
    flex: 1;
}

.company-details-name-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.company-tagline {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.company-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.company-actions {
    display: flex;
    gap: 1rem;
}

.btn-follow {
    padding: 0.85rem 2rem;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-follow:hover {
        background: var(--primary-ultra-light);
    }

    .btn-follow.following {
        background: var(--primary);
        color: white;
    }

.btn-view-all-jobs {
    padding: 0.85rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 137, 123, 0.25);
}

    .btn-view-all-jobs:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 137, 123, 0.35);
    }

/* Main Container */
.company-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

/* Main Content */
.company-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.coampny-company-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1rem;
}

/* Industry Tags */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.industry-tag {
    padding: 0.6rem 1.25rem;
    background: var(--primary-ultra-light);
    color: var(--primary);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Open Jobs Section */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.job-item {
    background: var(--cream-warm);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .job-item:hover {
        border-color: var(--primary);
        background: white;
        box-shadow: var(--shadow-card);
        transform: translateX(5px);
    }

.job-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
}

.job-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.job-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

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

.job-item-description {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

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

    .btn-view-job:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 137, 123, 0.25);
    }

/* Sidebar */
.company-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.company-sidebar-widget {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
}

.company-widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

/* Articles Section */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.article-item {
    padding: 1.75rem;
    background: var(--cream-warm);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .article-item:hover {
        background: white;
        border-color: var(--primary);
        box-shadow: var(--shadow-card);
        transform: translateY(-4px);
    }

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.article-tag {
    background: var(--primary-ultra-light);
    color: var(--primary);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
}

.article-date {
    color: var(--gray-light);
    font-weight: 600;
}

.article-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.article-excerpt {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.article-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    text-decoration: none;
}

    .article-link:hover {
        text-decoration: underline;
    }


/* Contact Info */
.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

    .contact-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .contact-item:first-child {
        padding-top: 0;
    }

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-ultra-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 600;
    word-break: break-word;
}

    .contact-value a {
        color: var(--primary);
        text-decoration: none;
    }

        .contact-value a:hover {
            text-decoration: underline;
        }

/* Social Links */
.social-links-widget {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--cream-warm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-link:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: white;
        transform: translateY(-3px);
    }

/* Quick Stats Widget */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.quick-stat {
    text-align: center;
    padding: 1rem;
    background: var(--cream-warm);
    border-radius: 10px;
}

.quick-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.quick-stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .company-detail-container {
        grid-template-columns: 1fr;
    }

    .company-sidebar {
        position: relative;
        top: 0;
    }

    .company-header-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .company-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/*Compnay details page end here */

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*Compan list page start here*/

.companies-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Filters Sidebar */
.filters-sidebar {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    position: relative;
    top: 100px;
}

.company-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

    .company-filters-header h3 {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--dark);
    }

.company-filter-group {
    margin-bottom: 1.75rem;
}

.company-filter-label {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.filter-input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
}

    .filter-input:focus {
        outline: none;
        border-color: var(--primary);
        background: var(--primary-ultra-light);
    }

.company-filter-select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

    .company-filter-select:focus {
        outline: none;
        border-color: var(--primary);
    }

.filter-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.company-filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
}

    .company-filter-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        min-width: 18px;
        margin: 2px 0 0 0;
        accent-color: var(--primary);
        cursor: pointer;
        flex-shrink: 0;
    }

    .company-filter-checkbox label {
        margin: 0;
        font-size: 0.9rem;
        color: var(--dark);
        line-height: 1.45;
        cursor: pointer;
        flex: 1;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

.filter-count {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--gray-light);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Main Content */
.companies-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.companies-count {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

    .companies-count strong {
        color: var(--primary);
        font-weight: 700;
    }


.sort-by {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .sort-by label {
        font-size: 0.9rem;
        color: var(--gray);
        font-weight: 600;
    }

    .sort-by select {
        padding: 0.6rem 1rem;
        border: 2px solid var(--border);
        border-radius: 8px;
        font-size: 0.9rem;
        font-family: 'Plus Jakarta Sans', sans-serif;
        cursor: pointer;
        background: white;
    }

/* Companies Grid */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Company Card */
.company-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

    .company-card:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-card);
        transform: translateY(-4px);
    }

.company-card-header {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.company-logo {
    width: 80px;
    height: 80px;
    background: var(--cream-warm);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    flex-shrink: 0;
    overflow: hidden;
}

    .company-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 0.5rem;
    }

.company-logo-text {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary);
}

.company-info {
    flex: 1;
    min-width: 0;
}

.company-company-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.company-tagline {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.company-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
}

    .company-meta span {
        display: flex;
        align-items: center;
        gap: 0.35rem;
    }

.company-description {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.company-tag {
    padding: 0.35rem 0.85rem;
    background: var(--primary-ultra-light);
    color: var(--primary);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.jobs-count {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 600;
}

    .jobs-count strong {
        color: var(--primary);
        font-weight: 700;
        font-size: 1.1rem;
    }

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

    .btn-view-jobs:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 137, 123, 0.25);
    }

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    background: var(--accent-warm);
    color: white;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1200px) {
    .companies-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }

    .filters-sidebar {
        position: relative;
        top: 0;
    }

    .company-filters-sidebar {
        position: static !important;
        top: 0 !important;
    }

    .companies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.45rem;
        margin-top: 1rem;
    }

    .pagination-btn {
        min-width: 38px;
        height: 38px;
        padding: 0.55rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 8px;
        line-height: 1;
    }
    .company-filters-sidebar {
        position: static !important;
        top: 0 !important;
    }
}
.company-card-header.clickable,
.company-card-header.clickable:hover,
.company-card-header.clickable:focus,
.company-card-header.clickable:visited {
    text-decoration: none !important;
    color: inherit;
}

    .company-card-header.clickable .company-name,
    .company-card-header.clickable .company-name:hover,
    .company-card-header.clickable .company-name:focus,
    .company-card-header.clickable .company-name:visited {
        text-decoration: none !important;
        color: var(--dark);
    }

    .company-card-header.clickable .company-tagline,
    .company-card-header.clickable .company-tagline:hover,
    .company-card-header.clickable .company-tagline:focus,
    .company-card-header.clickable .company-tagline:visited {
        text-decoration: none !important;
        color: var(--gray);
    }

.company-description,
.company-description a,
.company-description a:hover,
.company-description a:focus,
.company-description a:visited {
    text-decoration: none !important;
    color: var(--gray);
}

/*company list end here */

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* about page start here */
/* ============================================================
           HERO SECTION
        ============================================================ */
.about-hero {
    background: linear-gradient(135deg, var(--text-dark) 0%, #0F1923 100%);
    color: white;
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .about-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 20%, rgba(77,182,172,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0,137,123,0.1) 0%, transparent 50%);
        pointer-events: none;
    }

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(77,182,172,0.2);
    border: 1px solid rgba(77,182,172,0.4);
    color: var(--primary-mid);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-hero .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero-pillars {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-pillar {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 14px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    margin-top: 16px;
    letter-spacing: 0.01em;
}
/* ============================================================
           MISSION SECTION
        ============================================================ */
.mission-section {
    padding: 80px 24px;
    background: var(--bg-light);
}

.mission-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.08rem;
    color: var(--text-body);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.mission-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.3s;
}

    .mission-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
        border-color: var(--primary-mid);
    }

.mission-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: block;
}

.mission-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.mission-card p {
    color: var(--text-body);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================================
           WHY BIOKSHA SECTION
        ============================================================ */
.why-section {
    padding: 80px 24px;
    background: white;
}

.why-container {
    max-width: 1100px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.why-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

    .why-card:hover {
        background: white;
        border-color: var(--primary-light);
        box-shadow: var(--shadow-card);
    }

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}

.why-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
           STORY SECTION
        ============================================================ */
.story-section {
    padding: 80px 24px;
    background: var(--primary-mid);
}

.story-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

    .story-image img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        display: block;
    }

.story-content {
}

    .story-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 20px;
        letter-spacing: -0.01em;
    }

    .story-content p {
        font-size: 0.95rem;
        color: var(--text-body);
        line-height: 1.8;
        margin-bottom: 16px;
    }

/* ============================================================
           VALUES SECTION
        ============================================================ */
.values-section {
    padding: 80px 24px;
    background: white;
}

.values-container {
    max-width: 1100px;
    margin: 0 auto;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.value-item {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 28px 32px;
    transition: all 0.3s;
}

    .value-item:hover {
        background: white;
        box-shadow: var(--shadow-card);
        transform: translateX(4px);
    }

    .value-item h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .value-item p {
        font-size: 0.9rem;
        color: var(--text-body);
        line-height: 1.7;
    }

/* ============================================================
           WHAT'S LIVE SECTION
        ============================================================ */
.phase-section {
    padding: 80px 24px;
    background: var(--text-dark);
    color: white;
}

.phase-container {
    max-width: 1100px;
    margin: 0 auto;
}

.phase-section .section-label {
    color: var(--primary-mid);
}

.phase-section .section-title {
    color: white;
}

.phase-section .section-subtitle {
    color: rgba(255,255,255,0.75);
}

.phase-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.phase-feature {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s;
}

    .phase-feature:hover {
        background: rgba(255,255,255,0.08);
        border-color: rgba(77,182,172,0.4);
        transform: translateY(-2px);
    }

.phase-feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.phase-feature-icon {
    font-size: 1.6rem;
}

.phase-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.phase-feature p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 12px;
}

.phase-status {
    display: inline-block;
    background: rgba(77,182,172,0.2);
    color: var(--primary-mid);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 4px;
}

/* ============================================================
           TEAM SECTION
        ============================================================ */
.team-section {
    padding: 80px 24px;
    background: var(--bg-light);
}

.team-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-placeholder {
    background: white;
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    margin-top: 48px;
}

.team-placeholder-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.team-placeholder h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.team-placeholder p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
           CTA SECTION
        ============================================================ */
.cta-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    padding: 14px 32px;
    background: white;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

    .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255,255,255,0.2);
    }

.btn-outline-white {
    padding: 14px 32px;
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    border-radius: var(--radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

    .btn-outline-white:hover {
        border-color: white;
        background: rgba(255,255,255,0.1);
    }

@media (max-width: 900px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .story-container {
        grid-template-columns: 1fr;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .phase-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .hero-pillars {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/*About page end here*/

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*Profile page start here */

/* Profile Container */
.profile-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Profile Card */
.profile-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

/* Form Groups */
.form-group {
    margin-bottom: 1.75rem;
}

    .form-group:last-child {
        margin-bottom: 0;
    }

.form-label {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

    .form-label .required {
        color: #d32f2f;
        margin-left: 0.25rem;
    }

.form-input {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

    .form-input:focus {
        outline: none;
        border-color: var(--primary);
        background: var(--primary-ultra-light);
    }

    .form-input::placeholder {
        color: var(--gray-light);
    }

.form-help {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* Resume Upload */
.resume-upload-area {
    border: 2px dashed var(--border);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    background: var(--cream-warm);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .resume-upload-area:hover,
    .resume-upload-area.dragover {
        border-color: var(--primary);
        background: var(--primary-ultra-light);
    }

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.upload-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.upload-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.upload-formats {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.btn-upload {
    padding: 0.75rem 2rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

    .btn-upload:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 137, 123, 0.25);
    }

.file-input {
    display: none;
}

/* Uploaded File Display */
.uploaded-file {
    display: none;
    background: var(--primary-ultra-light);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 1.25rem;
    margin-top: 1rem;
}

    .uploaded-file.visible {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

.file-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.file-info {
    flex: 1;
    min-width: 0;
}

.file-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
    word-break: break-word;
}

.file-size {
    font-size: 0.85rem;
    color: var(--gray);
}

.btn-remove-file {
    padding: 0.5rem 1rem;
    background: #fff;
    color: #d32f2f;
    border: 2px solid #d32f2f;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-remove-file:hover {
        background: #d32f2f;
        color: #fff;
    }

/* Privacy Settings */
.privacy-setting {
    background: var(--cream-warm);
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
}

.privacy-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.privacy-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-ultra-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.privacy-content {
    flex: 1;
}

.privacy-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.privacy-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

.privacy-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.privacy-option {
    min-width: 0;
}

.radio-card {
    border: 3px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    min-height: 140px;
    display: flex;
    align-items: center;
}

    .radio-card:hover {
        border-color: var(--primary);
        transform: translateY(-2px);
        box-shadow: var(--shadow-card);
    }

    .radio-card.selected {
        border-color: var(--primary);
        background: var(--primary-ultra-light);
    }

    .radio-card input[type="radio"] {
        display: none;
    }

.radio-label {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    cursor: pointer;
    width: 100%;
}

.radio-custom {
    width: 28px;
    height: 28px;
    border: 3px solid var(--border);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.radio-card:hover .radio-custom {
    border-color: var(--primary);
}

.radio-card.selected .radio-custom {
    border-color: var(--primary);
    background: #fff;
}

.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 14px;
    height: 14px;
    background: var(--primary);
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.radio-card.selected .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
}

.radio-text {
    flex: 1;
    min-width: 0;
}

.radio-title {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.radio-subtitle {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Action Buttons */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
    flex-wrap: wrap;
}

.btn-cancel {
    padding: 0.85rem 2rem;
    background: #fff;
    color: var(--gray);
    border: 2px solid var(--border);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-cancel:hover {
        border-color: var(--gray);
        color: var(--dark);
    }

.btn-save {
    padding: 0.85rem 2.5rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 137, 123, 0.25);
}

    .btn-save:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 137, 123, 0.35);
    }

/* Toast Messages */
.success-message,
.error-message {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 9999;
    width: min(420px, calc(100vw - 32px));
    display: none;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    animation: toastSlideIn 0.25s ease;
}

.success-message {
    background: #22c55e;
    color: #fff;
}

.error-message {
    background: #ef4444;
    color: #fff;
}

.success-icon,
.error-icon {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

.success-text,
.error-text {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.error-close {
    width: 18px;
    height: 18px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

    .error-close::before,
    .error-close::after {
        content: "";
        position: absolute;
        top: 8px;
        left: 1px;
        width: 16px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
    }

    .error-close::before {
        transform: rotate(45deg);
    }

    .error-close::after {
        transform: rotate(-45deg);
    }

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px) translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .profile-container {
        padding: 1rem;
    }

    .profile-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
    }

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

    .form-input {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .resume-upload-area {
        padding: 1.25rem;
    }

    .upload-icon {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }

    .upload-title {
        font-size: 1rem;
    }

    .upload-subtitle,
    .upload-formats {
        font-size: 0.85rem;
    }

    .uploaded-file.visible {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-remove-file {
        width: 100%;
        text-align: center;
    }

    .privacy-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .privacy-options {
        grid-template-columns: 1fr;
    }

    .radio-card {
        min-height: auto;
        padding: 1rem;
    }

    .radio-label {
        gap: 1rem;
        align-items: flex-start;
    }

    .radio-title {
        font-size: 1.05rem;
    }

    .radio-subtitle {
        font-size: 0.88rem;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .btn-cancel,
    .btn-save {
        width: 100%;
    }

    .success-message,
    .error-message {
        top: 76px;
        right: 12px;
        left: 12px;
        width: auto;
    }

    .nav-links {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/*Profile card end here */

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*Saved job start here*/

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-ultra-light) 0%, white 100%);
    padding: 2.5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.page-header-content {
    max-width: 1000px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
}

.saved-jobs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Actions Bar */
.actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.jobs-count {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

    .jobs-count strong {
        color: var(--primary);
        font-weight: 700;
    }

.bulk-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.select-all-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 600;
}

    .select-all-checkbox input {
        width: 18px;
        height: 18px;
        cursor: pointer;
        accent-color: var(--primary);
    }

.btn-remove-selected {
    padding: 0.7rem 1.5rem;
    background: white;
    color: #d32f2f;
    border: 2px solid #d32f2f;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}

    .btn-remove-selected.visible {
        display: inline-block;
    }

    .btn-remove-selected:hover {
        background: #d32f2f;
        color: white;
    }

.sort-by {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .sort-by label {
        font-size: 0.9rem;
        color: var(--gray);
        font-weight: 600;
    }

    .sort-by select {
        padding: 0.6rem 1rem;
        border: 2px solid var(--border);
        border-radius: 8px;
        font-size: 0.9rem;
        font-family: 'Plus Jakarta Sans', sans-serif;
        cursor: pointer;
        background: white;
    }

/* Jobs List */
.saved-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Job Card */
.saved-job-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: grid;
    grid-template-columns: auto 80px 1fr auto;
    gap: 1.5rem;
    align-items: start;
}

    .saved-job-card:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-card);
    }

/* Checkbox */
.job-checkbox {
    display: flex;
    align-items: center;
    padding-top: 0.25rem;
}

    .job-checkbox input {
        width: 20px;
        height: 20px;
        cursor: pointer;
        accent-color: var(--primary);
    }

/* Logo */
.job-logo {
    width: 80px;
    height: 80px;
    background: var(--cream-warm);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
    flex-shrink: 0;
    overflow: hidden;
}

    .job-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 0.5rem;
    }

.job-logo-text {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary);
}

/* Main content */
.job-main {
    min-width: 0;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    word-break: break-word;
}

.company-name {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.85rem;
    word-break: break-word;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 0.85rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--gray);
}

    .meta-item strong {
        color: var(--dark);
        font-weight: 600;
    }

.job-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.job-tag {
    padding: 0.35rem 0.85rem;
    background: var(--primary-ultra-light);
    color: var(--primary);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Right side actions */
.job-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
}

.saved-date {
    font-size: 0.85rem;
    color: var(--gray-light);
    white-space: nowrap;
}

.btn-unsave {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    color: var(--primary);
}

    .btn-unsave:hover {
        border-color: #d32f2f;
        background: #ffebee;
        color: #d32f2f;
    }

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

    .btn-apply-saved:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 137, 123, 0.25);
    }

/* Empty State */
.empty-state {
    background: white;
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.empty-description {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.btn-browse-jobs {
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 137, 123, 0.25);
}

    .btn-browse-jobs:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 137, 123, 0.35);
    }

.status {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    min-width: 80px;
    text-align: center;
    display: inline-block;
}
.status.active {
    background-color: #E6FBF4;
    color: #0E9F6E;
}

Expired – Red
.status.expired {
    background-color: #FDE8E8;
    color: #E02424;
}

Draft – Yellow
.status.draft {
    background-color: #FEF3C7;
    color: #D97706;
}

/* Expired Card */
.expired-card {
    opacity: 0.6;
    background-color: #f9fafb;
}

    .expired-card .job-title a,
    .expired-card .company-link,
    .expired-card .job-description,
    .expired-card .job-meta span,
    .expired-card .company-name {
        color: #6b7280 !important;
    }

    .expired-card img {
        filter: grayscale(30%);
    }

    .expired-card:hover {
        opacity: 0.7;
    }

/* Tablet */
@media (max-width: 1200px) {
    .saved-job-card {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
    }

    .job-logo {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .saved-jobs-container {
        padding: 1rem;
    }

    .page-header {
        padding: 1.5rem 1rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .actions-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .bulk-actions {
        justify-content: space-between;
        width: 100%;
    }

    .sort-by {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

        .sort-by select {
            width: 100%;
        }

    .saved-job-card {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        padding: 1rem;
    }

    .job-checkbox {
        padding-top: 0;
    }

    .job-logo {
        display: none;
    }

    .job-main {
        width: 100%;
    }

    .job-title {
        font-size: 1.05rem;
        margin-bottom: 0.35rem;
    }

    .company-name {
        font-size: 0.92rem;
        margin-bottom: 0.55rem;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.45rem;
        margin-bottom: 0.6rem;
    }

    .meta-item {
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .job-description {
        font-size: 0.85rem;
        line-height: 1.45;
        margin-bottom: 0.65rem;
    }

    .job-tags {
        gap: 0.35rem;
    }

    .job-tag {
        font-size: 0.72rem;
        padding: 0.28rem 0.6rem;
    }

    .job-actions {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .saved-date {
        font-size: 0.76rem;
        white-space: normal;
    }

    .btn-unsave {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .btn-apply-saved {
        padding: 0.6rem 1rem;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .empty-state {
        padding: 2.5rem 1rem;
    }

    .empty-title {
        font-size: 1.2rem;
    }

    .empty-description {
        font-size: 0.92rem;
    }

    .btn-browse-jobs {
        width: 100%;
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }

    .nav-links {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
/*Saved jobs end here*/

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*Account start here*/

.settings-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

/* Settings Card */
.settings-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

/* Form Groups */
.form-group {
    margin-bottom: 1.75rem;
}

    .form-group:last-child {
        margin-bottom: 0;
    }

.form-label {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

    .form-label .required {
        color: #d32f2f;
        margin-left: 0.25rem;
    }

.form-input {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

    .form-input:focus {
        outline: none;
        border-color: var(--primary);
        background: var(--primary-ultra-light);
    }

    .form-input::placeholder {
        color: var(--gray-light);
    }

.form-help {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* Toggle Switch */
.toggle-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--cream-warm);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 1rem;
}

    .toggle-group:last-child {
        margin-bottom: 0;
    }

.toggle-info {
    flex: 1;
}

.toggle-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.toggle-description {
    font-size: 0.9rem;
    color: var(--gray);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    flex-shrink: 0;
}

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-light);
    transition: 0.3s;
    border-radius: 34px;
}

    .toggle-slider:before {
        position: absolute;
        content: "";
        height: 24px;
        width: 24px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: 0.3s;
        border-radius: 50%;
    }

input:checked + .toggle-slider {
    background-color: var(--primary);
}

    input:checked + .toggle-slider:before {
        transform: translateX(28px);
    }

/* Action Buttons */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.btn-cancel {
    padding: 0.85rem 2rem;
    background: white;
    color: var(--gray);
    border: 2px solid var(--border);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-cancel:hover {
        border-color: var(--gray);
        color: var(--dark);
    }

.btn-save {
    padding: 0.85rem 2.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 137, 123, 0.25);
}

    .btn-save:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 137, 123, 0.35);
    }

/* Danger Zone */
.danger-zone {
    background: #ffebee;
    border: 2px solid #ef5350;
    border-radius: 12px;
    padding: 2rem;
}

.danger-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c62828;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.danger-description {
    font-size: 0.95rem;
    color: #d32f2f;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-danger {
    padding: 0.85rem 2rem;
    background: white;
    color: #d32f2f;
    border: 2px solid #d32f2f;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-danger:hover {
        background: #d32f2f;
        color: white;
    }



/* Password Strength Indicator */
.password-strength {
    margin-top: 0.75rem;
    display: none;
}

    .password-strength.visible {
        display: block;
    }

.strength-bar {
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    width: 0%;
    background: #d32f2f;
    transition: all 0.3s ease;
}

    .strength-fill.weak {
        width: 33%;
        background: #d32f2f;
    }

    .strength-fill.medium {
        width: 66%;
        background: #ffa726;
    }

    .strength-fill.strong {
        width: 100%;
        background: #4caf50;
    }

.strength-text {
    font-size: 0.85rem;
    font-weight: 600;
}

    .strength-text.weak {
        color: #d32f2f;
    }

    .strength-text.medium {
        color: #ffa726;
    }

    .strength-text.strong {
        color: #4caf50;
    }
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .btn-cancel,
    .btn-save {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .toggle-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/*Account end here */

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*Forget password start here*/

.forgot-password-page {
    --fp-primary: #00897b;
    --fp-primary-dark: #00695c;
    --fp-primary-light: #dff3ef;
    --fp-text-dark: #1f2937;
    --fp-text-muted: #6b7280;
    --fp-border: #e5e7eb;
    --fp-bg: #f3f4f6;
    --fp-white: #ffffff;
    --fp-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    --fp-radius-lg: 22px;
    --fp-radius-md: 12px;
    --fp-radius-sm: 10px;
}

    .forgot-password-page .fp-page-wrapper {
        min-height: calc(100vh - 80px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 48px 16px;
        background: #f1f3f4;
    }

    .forgot-password-page .fp-card {
        width: 100%;
        max-width: 460px;
        smaller modal background: var(--fp-white);
        border: 1px solid var(--fp-border);
        border-radius: var(--fp-radius-lg);
        box-shadow: var(--fp-shadow);
        overflow: hidden;
    }

    .forgot-password-page .fp-card-header {
        background: linear-gradient(180deg, var(--fp-primary) 0%, var(--fp-primary-dark) 100%);
        padding: 42px 34px 30px;
        text-align: center;
    }

        .forgot-password-page .fp-card-header h1 {
            margin: 0 0 12px;
            font-family: 'Playfair Display', serif;
            font-size: 2.15rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.15;
        }

        .forgot-password-page .fp-card-header p {
            margin: 0;
            color: rgba(255, 255, 255, 0.94);
            font-size: 1rem;
            line-height: 1.7;
            max-width: 330px;
            margin-inline: auto;
        }

    .forgot-password-page .fp-card-body {
        padding: 34px 36px 34px;
    }

    .forgot-password-page .fp-help-text {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        background: #dff1ee;
        border: 1.5px solid #5ec4b4;
        color: #0f766e;
        border-radius: 10px;
        padding: 16px 18px;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 26px;
    }

    .forgot-password-page .fp-help-icon {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .forgot-password-page .fp-form-group {
        margin-bottom: 20px;
    }

        .forgot-password-page .fp-form-group label {
            display: block;
            margin-bottom: 10px;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--fp-text-dark);
            text-align: center;
        }

    .forgot-password-page .fp-input-wrapper {
        position: relative;
    }

    .forgot-password-page .fp-input-icon {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: #b8b2c8;
        font-size: 1rem;
        pointer-events: none;
    }

    .forgot-password-page .fp-input-wrapper input {
        width: 100%;
        height: 54px;
        border: 1.5px solid #d9dde3;
        border-radius: 10px;
        background: #fff;
        padding: 0 16px 0 46px;
        font-size: 1rem;
        color: var(--fp-text-dark);
        outline: none;
        transition: all 0.25s ease;
    }

        .forgot-password-page .fp-input-wrapper input::placeholder {
            color: #a0a7b4;
        }

        .forgot-password-page .fp-input-wrapper input:focus {
            border-color: var(--fp-primary);
            box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.08);
        }

        .forgot-password-page .fp-input-wrapper input.input-error {
            border-color: #ef4444;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
        }

    .forgot-password-page .fp-validation-message {
        display: block;
        margin-top: 8px;
        min-height: 18px;
        color: #dc2626;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .forgot-password-page .fp-btn-submit {
        width: 100%;
        height: 54px;
        border: none;
        border-radius: 10px;
        background: linear-gradient(180deg, var(--fp-primary) 0%, var(--fp-primary-dark) 100%);
        color: #fff;
        font-size: 1rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        transition: all 0.25s ease;
        box-shadow: 0 8px 20px rgba(0, 137, 123, 0.18);
    }

        .forgot-password-page .fp-btn-submit:hover {
            transform: translateY(-1px);
        }

        .forgot-password-page .fp-btn-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

    .forgot-password-page .fp-divider {
        position: relative;
        text-align: center;
        margin: 26px 0 18px;
        color: var(--fp-text-muted);
        font-size: 0.95rem;
    }

        .forgot-password-page .fp-divider::before,
        .forgot-password-page .fp-divider::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 38%;
            height: 1px;
            background: #d9dde3;
        }

        .forgot-password-page .fp-divider::before {
            left: 0;
        }

        .forgot-password-page .fp-divider::after {
            right: 0;
        }

        .forgot-password-page .fp-divider span {
            background: #fff;
            padding: 0 12px;
        }

    .forgot-password-page .fp-back-link {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        color: var(--fp-primary);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 600;
    }

        .forgot-password-page .fp-back-link:hover {
            text-decoration: underline;
        }

    .forgot-password-page .fp-success-state {
        display: none;
        text-align: center;
        padding-top: 6px;
    }

    .forgot-password-page .fp-success-icon {
        display: inline-block;
        font-size: 3rem;
        margin-bottom: 12px;
    }

    .forgot-password-page .fp-success-state h2 {
        font-family: 'Playfair Display', serif;
        font-size: 1.75rem;
        color: var(--fp-text-dark);
        margin-bottom: 12px;
    }

    .forgot-password-page .fp-success-state p {
        color: var(--fp-text-muted);
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .forgot-password-page .fp-success-subtext a {
        color: var(--fp-primary);
        font-weight: 600;
        text-decoration: none;
    }

        .forgot-password-page .fp-success-subtext a:hover {
            text-decoration: underline;
        }

    .forgot-password-page .fp-btn-outline {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 180px;
        height: 46px;
        border: 1.5px solid var(--fp-primary);
        border-radius: 10px;
        color: var(--fp-primary);
        text-decoration: none;
        font-weight: 700;
        background: #fff;
        transition: all 0.25s ease;
    }

        .forgot-password-page .fp-btn-outline:hover {
            background: #ecfdf5;
        }

@media (max-width: 576px) {
    .forgot-password-page .fp-page-wrapper {
        padding: 24px 12px;
    }

    .forgot-password-page .fp-card {
        max-width: 100%;
        border-radius: 18px;
    }

    .forgot-password-page .fp-card-header {
        padding: 34px 22px 26px;
    }

        .forgot-password-page .fp-card-header h1 {
            font-size: 1.8rem;
        }

    .forgot-password-page .fp-card-body {
        padding: 24px 20px 26px;
    }

    .forgot-password-page .fp-help-text {
        font-size: 0.9rem;
        padding: 14px 14px;
    }
}

/*Forget password start here*/

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*Reset password start here*/

.reset-password-page {
    --rp-primary: #00897B;
    --rp-primary-dark: #00695C;
    --rp-primary-light: #E0F2F1;
    --rp-primary-mid: #4DB6AC;
    --rp-text-dark: #1A2332;
    --rp-text-body: #374151;
    --rp-text-muted: #6B7280;
    --rp-text-light: #9CA3AF;
    --rp-bg-white: #FFFFFF;
    --rp-bg-light: #F9FAFB;
    --rp-bg-subtle: #F3F4F6;
    --rp-border: #E5E7EB;
    --rp-error: #EF4444;
    --rp-error-light: #FEF2F2;
    --rp-success: #10B981;
    --rp-success-light: #D1FAE5;
    --rp-shadow-card: 0 4px 16px rgba(0,0,0,0.08);
    --rp-shadow-hover: 0 8px 32px rgba(0,137,123,0.15);
    --rp-radius-sm: 8px;
    --rp-radius-lg: 16px;
    min-height: 100vh;
    background: var(--rp-bg-light);
}

.reset-password-page .rp-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    margin: 0;
    background: var(--rp-bg-light);
}

.reset-password-page .rp-card {
    background: var(--rp-bg-white);
    border: 1px solid var(--rp-border);
    border-radius: var(--rp-radius-lg);
    box-shadow: var(--rp-shadow-card);
    width: 100%;
    max-width: 480px;
    overflow: hidden;
}

.reset-password-page .rp-card-header {
    background: linear-gradient(135deg, var(--rp-primary) 0%, var(--rp-primary-dark) 100%);
    padding: 36px 36px 32px;
    text-align: center;
}

    .reset-password-page .rp-card-header h1 {
        font-family: 'Playfair Display', serif;
        font-size: 1.75rem;
        font-weight: 700;
        color: white;
        letter-spacing: -0.02em;
        margin-bottom: 8px;
    }

    .reset-password-page .rp-card-header p {
        font-size: 0.88rem;
        color: rgba(255,255,255,0.82);
        line-height: 1.6;
        margin: 0;
    }

.reset-password-page .rp-card-body {
    padding: 32px 36px 36px;
}

.reset-password-page .rp-form-group {
    margin-bottom: 20px;
}

    .reset-password-page .rp-form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--rp-text-dark);
        margin-bottom: 7px;
    }

.reset-password-page .rp-input-wrapper {
    position: relative;
}

.reset-password-page .rp-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    pointer-events: none;
}

.reset-password-page .rp-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--rp-text-muted);
    padding: 4px;
    line-height: 1;
}

.reset-password-page .rp-form-group input {
    width: 100%;
    padding: 12px 42px 12px 42px;
    border: 1.5px solid var(--rp-border);
    border-radius: var(--rp-radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--rp-text-dark);
    background: var(--rp-bg-white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .reset-password-page .rp-form-group input:focus {
        outline: none;
        border-color: var(--rp-primary);
        box-shadow: 0 0 0 3px rgba(0,137,123,0.1);
    }

    .reset-password-page .rp-form-group input.input-error {
        border-color: var(--rp-error);
        box-shadow: 0 0 0 3px rgba(239,68,68,0.08);
    }

    .reset-password-page .rp-form-group input.input-success {
        border-color: var(--rp-success);
        box-shadow: 0 0 0 3px rgba(16,185,129,0.08);
    }

    .reset-password-page .rp-form-group input::placeholder {
        color: var(--rp-text-light);
    }

.reset-password-page .rp-field-error {
    display: none;
    font-size: 0.78rem;
    color: var(--rp-error);
    margin-top: 6px;
    font-weight: 500;
}

    .reset-password-page .rp-field-error.visible {
        display: block;
    }

.reset-password-page .rp-strength-bar-wrap {
    margin-top: 10px;
    display: none;
}

    .reset-password-page .rp-strength-bar-wrap.visible {
        display: block;
    }

.reset-password-page .rp-strength-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

    .reset-password-page .rp-strength-label-row span {
        font-size: 0.75rem;
        color: var(--rp-text-muted);
        font-weight: 500;
    }

    .reset-password-page .rp-strength-label-row .rp-strength-text {
        font-weight: 700;
        font-size: 0.75rem;
    }

.reset-password-page .rp-strength-track {
    height: 5px;
    background: var(--rp-bg-subtle);
    border-radius: 99px;
    overflow: hidden;
}

.reset-password-page .rp-strength-fill {
    height: 100%;
    border-radius: 99px;
    width: 0%;
    transition: width 0.4s ease, background 0.3s;
}

.reset-password-page .rp-rules-list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.reset-password-page .rp-rule-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--rp-text-muted);
    transition: color 0.2s;
}

    .reset-password-page .rp-rule-item.passed {
        color: var(--rp-success);
    }

    .reset-password-page .rp-rule-item.failed {
        color: var(--rp-error);
    }

.reset-password-page .rp-rule-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--rp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    transition: all 0.2s;
}

.reset-password-page .rp-rule-item.passed .rp-rule-dot {
    background: var(--rp-success);
    border-color: var(--rp-success);
    color: white;
}

.reset-password-page .rp-rule-item.failed .rp-rule-dot {
    background: var(--rp-error-light);
    border-color: var(--rp-error);
    color: var(--rp-error);
}

.reset-password-page .rp-btn-submit {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--rp-primary) 0%, var(--rp-primary-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--rp-radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .reset-password-page .rp-btn-submit:hover:not(:disabled) {
        transform: translateY(-1px);
        box-shadow: var(--rp-shadow-hover);
    }

    .reset-password-page .rp-btn-submit:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

.reset-password-page .rp-divider {
    text-align: center;
    position: relative;
    margin: 24px 0 20px;
    color: var(--rp-text-muted);
    font-size: 0.82rem;
}

    .reset-password-page .rp-divider::before,
    .reset-password-page .rp-divider::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 38%;
        height: 1px;
        background: var(--rp-border);
    }

    .reset-password-page .rp-divider::before {
        left: 0;
    }

    .reset-password-page .rp-divider::after {
        right: 0;
    }

    .reset-password-page .rp-divider span {
        background: var(--rp-bg-white);
        padding: 0 10px;
    }

.reset-password-page .rp-back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--rp-primary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    transition: gap 0.2s;
}

    .reset-password-page .rp-back-link:hover {
        gap: 10px;
    }

.reset-password-page .rp-success-state {
    display: none;
    text-align: center;
    padding: 8px 0 4px;
}

.reset-password-page .rp-success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.reset-password-page .rp-success-state h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rp-text-dark);
    margin-bottom: 12px;
}

.reset-password-page .rp-success-state p {
    font-size: 0.88rem;
    color: var(--rp-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.reset-password-page .rp-btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--rp-primary) 0%, var(--rp-primary-dark) 100%);
    color: white;
    border-radius: var(--rp-radius-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

    .reset-password-page .rp-btn-login:hover {
        transform: translateY(-1px);
        box-shadow: var(--rp-shadow-hover);
    }

.reset-password-page .rp-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 28px;
    border: 1.5px solid var(--rp-primary);
    border-radius: var(--rp-radius-sm);
    color: var(--rp-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

    .reset-password-page .rp-btn-outline:hover {
        background: var(--rp-primary-light);
    }

@media (max-width: 640px) {
    .reset-password-page .rp-card-body {
        padding: 24px;
    }

    .reset-password-page .rp-card-header {
        padding: 28px 24px 24px;
    }
}
/*Reset password end here*/

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


/*Categories start here*/



.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-intro h1 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 1rem;
    }

    .section-intro p {
        font-size: 1.1rem;
        color: var(--gray);
        max-width: 700px;
        margin: 0 auto;
    }

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Category Card */
.category-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

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

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

    .category-card:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-card);
        transform: translateY(-4px);
    }

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-ultra-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.category-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.category-description {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.category-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.category-jobs-count {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 600;
}

    .category-jobs-count strong {
        color: var(--primary);
        font-size: 1.15rem;
        font-weight: 700;
    }

.category-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.category-card:hover .category-arrow {
    transform: translateX(5px);
}

/* View All Categories Section */
.all-categories-section {
    margin-top: 4rem;
}

.section-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    margin-bottom: 3rem;
}

.all-categories-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .all-categories-header h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 0.75rem;
    }

    .all-categories-header p {
        font-size: 1.1rem;
        color: var(--gray);
    }

.btn-expand-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 2rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-expand-all:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 137, 123, 0.25);
    }

.expand-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-expand-all.expanded .expand-icon {
    transform: rotate(180deg);
}

.all-categories-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

    .all-categories-list.expanded {
        max-height: 10000px;
    }

.category-group {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.group-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.category-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    background: var(--cream-warm);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .category-link:hover {
        background: var(--primary-ultra-light);
        border-color: var(--primary);
        transform: translateX(5px);
    }

.link-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.link-count {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
}

.category-link:hover .link-name {
    color: var(--primary);
}

.category-link:hover .link-count {
    color: var(--primary);
}

/* Popular Tag */
.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    background: var(--accent-warm);
    color: white;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
/* Responsive */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .category-links {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-links {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
/*Category end herw*/

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* Category job with start here  */
/* Category Header */
.categories-category-header {
    background: linear-gradient(135deg, var(--primary-ultra-light) 0%, white 100%);
    padding: 2.5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.categories-category-header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.categories-category-info {
    flex: 1;
}

.categories-category-icon-large {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.categories-category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.categories-category-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.categories-category-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.categories-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.categories-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.categories-stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Main Container */
.categories-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Jobs Content */
.categories-jobs-content {
    min-height: 500px;
}

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

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

    .categories-jobs-count strong {
        color: var(--dark);
        font-weight: 700;
    }

.categories-sort-dropdown {
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

    .categories-sort-dropdown:focus {
        outline: none;
        border-color: var(--primary);
    }

/* Job Card */
.categories-job-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    position: relative;
}

    .categories-job-card:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow-card);
        transform: translateY(-2px);
    }

.categories-job-logo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    flex-shrink: 0;
}

    .categories-job-logo img {
        max-width: 70px;
        max-height: 70px;
    }

.categories-job-details {
    flex: 1;
}

.categories-job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
}

.categories-job-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}
    .categories-job-title a {
    text-decoration: none;
    color: #263238;
    }

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

.categories-job-company {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 600;
}

.categories-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.categories-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray);
}

.categories-meta-icon {
    font-size: 1.1rem;
}

.categories-job-description {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.categories-job-tag {
    padding: 0.35rem 0.85rem;
    background: var(--primary-ultra-light);
    color: var(--primary);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.categories-job-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.categories-btn-save {
    background: white;
    border: 2px solid var(--border);
    color: var(--gray);
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .categories-btn-save:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: var(--primary-ultra-light);
    }

    .categories-btn-save.categories-saved {
        border-color: var(--accent-warm);
        color: var(--accent-warm);
        background: #fff3e0;
    }

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

    .categories-btn-apply:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 137, 123, 0.25);
    }

.categories-job-posted {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-left: auto;
}

/* Pagination */
.categories-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.categories-pagination-btn {
    padding: 0.75rem 1.25rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

    .categories-pagination-btn.categories-active {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }
/* Responsive */
@media (max-width: 768px) {
    .categories-nav-links {
        display: none;
    }

    .categories-category-header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .categories-job-card {
        flex-direction: column;
    }

    .categories-job-logo {
        width: 60px;
        height: 60px;
    }

    .categories-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .categories-footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .pagination {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.45rem;
        margin-top: 1rem;
    }

    .pagination-btn {
        min-width: 38px;
        height: 38px;
        padding: 0.55rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 8px;
        line-height: 1;
    }
}

/* Category job with end here  */

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* joblisting page Disciplines count  with start here  */

.filter-checkbox.disabled-filter {
    opacity: 1;
    cursor: default;
}

    .filter-checkbox.disabled-filter span {
        color: inherit;
        opacity: 1;
    }

    .filter-checkbox.disabled-filter input[type="checkbox"] {
        opacity: 0.4;
        cursor: not-allowed;
    }
/* joblisting page Disciplines count  with end  here  */

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* joblisting page Browse all job categorieswith start  here  */

 .browse-categories-box {
    margin-top: 32px;
    padding: 0;
}

    .browse-categories-box p {
        margin: 0 0 12px 0;
        font-size: 18px;
        font-weight: 500;
        color: #1f2937;
    }

    .browse-categories-box a {
        font-size: 18px;
        font-weight: 500;
        color: #2563eb;
        text-decoration: underline;
        text-underline-offset: 4px;
    }

        .browse-categories-box a:hover {
            color: #1d4ed8;
        } 
/* joblisting page Browse all job categories with end  here  */

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* Prefrence css in profile page start here  */
.show-error {
    color: #dc3545 !important;
    font-size: 14px;
    margin-top: 6px;
    display: block;
}

.location-group {
    position: relative;
}

.location-autocomplete-wrap {
    position: relative;
}

#locationInput {
    width: 100%;
}

.loc-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 20;
    display: none;
    max-height: 280px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 6px 0;
}

.loc-item {
    padding: 12px 16px;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .loc-item:hover {
        background: #f5f7fb;
    }

.selected-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.location-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #0f6986;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.location-chip-text {
    line-height: 1;
}

.location-chip-remove {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.choices {
    margin-bottom: 0;
}

.choices__inner {
    min-height: 54px;
    border: 1px solid #d9d9d9;
    border-radius: 14px;
    background: #fff;
    padding: 8px 12px !important;
    font-size: 16px;
}

.choices.is-focused .choices__inner,
.choices.is-open .choices__inner {
    border-color: #0f6986;
}

.choices__list--multiple .choices__item {
    background: #0f6986;
    border: 1px solid #0f6986;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.choices[data-type*="select-multiple"] .choices__button,
.choices[data-type*="text"] .choices__button {
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    margin-left: 8px;
    padding-left: 8px;
}

.choices__list--dropdown,
.choices__list[aria-expanded] {
    border: 1px solid #d9d9d9;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 8px;
    z-index: 30;
}

    .choices__list--dropdown .choices__item,
    .choices__list[aria-expanded] .choices__item {
        padding: 12px 16px;
        font-size: 16px;
    }

    .choices__list--dropdown .choices__item--selectable.is-highlighted,
    .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
        background: #f3f6f9;
    }

#applicationUrl:disabled,
#applicationEmail:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .choices__inner {
        min-height: 50px;
    }

    .loc-suggestions {
        max-height: 220px;
    }

    .location-chip {
        max-width: 100%;
    }
}
/* Prefrence css in profile page end here  */

/*/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/*Prfile page banner fro new user start here*/

.profile-welcome-banner {
    background: #14b8a6;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.profile-welcome-banner-content {
    font-size: 15px;
    line-height: 1.5;
    flex: 1 1 420px;
}

.profile-welcome-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.profile-welcome-skip {
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: transparent;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

    .profile-welcome-skip:hover {
        background: rgba(255, 255, 255, 0.12);
    }

.profile-welcome-close {
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

@media (max-width: 768px) {
    .profile-welcome-banner {
        align-items: flex-start;
    }

    .profile-welcome-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/*Prfile page banner fro new user end here*/
