:root {
  --bongo-blue: #0a2540;
  --bright-green: #00c984;
  --bg-soft: #f4f7f6;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --white: #ffffff;
  --border-light: #e2e8f0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      --vcy-primary-highlight: #00c853; 
    --vcy-deep-forest: #1b5e20;
    --vcy-pattern-trace: rgba(0, 200, 83, 0.06); 
    --vcy-base-tint: #f5fff9;
    --vcy-outer-radius: 15px;
    --vcy-bottom-fade: linear-gradient(135deg, #ffffff 0%, #f5fff9 100%);
    --vcy-edge-border: rgba(0, 201, 132, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  font-family: "Poppins", sans-serif;
  padding-top: 35px;
  background-color: var(--white);
  color: var(--text-main);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden; /* Hard block on horizontal scrolling */
  position: relative;
}



        .container { max-width: 1150px; margin: 0 auto; padding: 0 20px; }

                /* --- Short Header Banner --- */
        .short-banner {
            background-color: var(--bongo-blue);
            background-image: linear-gradient(45deg, 
                rgba(255, 255, 255, 0.03) 25%, 
                transparent 25%, 
                transparent 50%, 
                rgba(255, 255, 255, 0.03) 50%, 
                rgba(255, 255, 255, 0.03) 75%, 
                transparent 75%, 
                transparent);
            background-size: 8px 8px;
            color: var(--white);
            padding: 60px 0;
            margin-bottom: -40px;
        }

        .breadcrumbs { font-size: 0.8rem; margin-bottom: 10px; color: var(--bright-green); }
        .breadcrumbs a { color: var(--white); text-decoration: none; opacity: 0.7; }

        /* --- Filter Bar --- */
        .filter-container {
            position: relative;
            z-index: 10;
        }

        .filter-bar {
            background: var(--white);
            padding: 15px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
            border: 1px solid var(--border-light);
        }

        .filter-group {
            flex: 1;
            min-width: 200px;
            display: flex;
            align-items: center;
            background: var(--bg-soft);
            padding: 10px 15px;
            border-radius: 10px;
        }

        .filter-group i { color: var(--text-muted); margin-right: 10px; }

        .filter-group input, .filter-group select {
            border: none;
            background: transparent;
            width: 100%;
            outline: none;
            font-family: inherit;
            color: var(--text-main);
        }

        .btn-search {
            background: var(--bright-green);
            color: var(--white);
            border: none;
            padding: 12px 30px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .btn-search:hover { transform: translateY(-2px); }

        /* --- Main Layout --- */
        .main-page-layout {
            display: flex;
            gap: 40px;
            margin-top: 60px;
            padding-bottom: 80px;
        }

        .jobs-list { flex: 3; }

        /* --- Jobs Header Bar --- */
        .jobs-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-light);
        }

        .jobs-stats {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .jobs-stats strong { color: var(--bongo-blue); }

        .sort-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-soft);
            padding: 8px 15px;
            border-radius: 12px;
            border: 1px solid var(--border-light);
        }

        .sort-wrapper select {
            border: none;
            background: transparent;
            font-family: inherit;
            color: var(--bongo-blue);
            font-weight: 500;
            outline: none;
            cursor: pointer;
            font-size: 0.9rem;
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--bongo-blue);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-title::before {
            content: '';
            width: 4px;
            height: 24px;
            background: var(--bright-green);
            border-radius: 10px;
        }

        /* --- Job Card --- */
        .job-card {
            background: var(--white);
            border: 1px solid var(--border-light);
            border-left: 5px solid var(--bright-green);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: var(--shadow);
            transition: 0.3s;
        }

        .job-card:hover { border-color: var(--bright-green); transform: translateY(-3px); }

        .job-left { display: flex; align-items: center; gap: 20px; }

        .logo-placeholder {
            width: 60px;
            height: 60px;
            background: var(--bg-soft);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: var(--bongo-blue);
        }

        .job-title-box h3 { font-size: 1.1rem; color: var(--bongo-blue); margin-bottom: 2px; }
        .company-name { color: var(--bright-green); font-weight: 500; font-size: 0.9rem; }

        .job-center { display: flex; gap: 20px; color: var(--text-muted); font-size: 0.85rem; }
        .job-center span { display: flex; align-items: center; gap: 5px; }

        .job-right { display: flex; align-items: center; gap: 15px; }

        .icon-btn {
            color: var(--text-muted);
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.2s;
        }
        .icon-btn:hover { color: var(--bright-green); }

        .btn-apply {
            background: var(--bright-green);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* --- Sidebar --- */
        .sidebar {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .sidebar-widget {
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }

        .sidebar-widget h4 {
            font-size: 1.1rem;
            color: var(--bongo-blue);
            margin-bottom: 20px;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sidebar-list { list-style: none; }
        .sidebar-list li { margin-bottom: 12px; }

        .sidebar-list a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.95rem;
            padding: 10px 15px;
            border-radius: 12px;
            background: var(--bg-soft);
            transition: 0.3s;
        }

        .sidebar-list a:hover {
            background: var(--bongo-blue);
            color: var(--white);
            transform: translateX(5px);
        }

        .count-badge {
            background: var(--white);
            color: var(--bongo-blue);
            font-size: 0.75rem;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .sidebar-list a:hover .count-badge {
            background: var(--bright-green);
            color: var(--white);
        }

        .sidebar-view-all {
            display: block;
            text-align: center;
            text-decoration: none;
            color: var(--bongo-blue);
            font-size: 0.85rem;
            font-weight: 600;
            padding: 10px;
            margin-top: 15px;
            border: 1px dashed var(--border-light);
            border-radius: 12px;
            transition: 0.3s;
        }

        .sidebar-view-all:hover {
            border-color: var(--bright-green);
            color: var(--bright-green);
            background: rgba(0, 201, 132, 0.05);
        }

        .subscribe-widget {
            background: var(--bongo-blue);
            color: var(--white);
            text-align: center;
        }

        .subscribe-widget h4 { color: var(--white); justify-content: center; }

        .sub-input-group { display: flex; flex-direction: column; gap: 10px; }
        .sub-input-group input {
            padding: 12px 15px;
            border-radius: 10px;
            border: none;
            font-family: inherit;
        }

        .btn-subscribe {
            background: var(--bright-green);
            color: var(--white);
            border: none;
            padding: 12px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
        }

        /* --- Responsive --- */
        @media (max-width: 992px) {
            .main-page-layout { flex-direction: column; }
            .job-card { flex-direction: column; align-items: flex-start; gap: 20px; }
            .job-right { width: 100%; justify-content: space-between; border-top: 1px solid var(--border-light); padding-top: 15px; }
        }
        /* Compact Sidebar Styling */
        .sidebar-widget {
            padding: 15px; /* Reduced from 25px */
        }

        .sidebar-widget h4 {
            font-size: 0.95rem;
            margin-bottom: 12px;
        }

        .sidebar-list {
            max-height: 400px; /* Limits height */
            overflow-y: auto;  /* Adds internal scroll if too long */
            padding-right: 5px;
        }

        /* Custom Scrollbar for a cleaner look */
        .sidebar-list::-webkit-scrollbar { width: 4px; }
        .sidebar-list::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 10px; }

        .sidebar-list li { margin-bottom: 5px; } /* Tightened spacing */

        .sidebar-list a {
            font-size: 0.8rem; /* Smaller text */
            padding: 6px 10px; /* Slimmer buttons */
            white-space: nowrap; /* Forces one line */
            display: flex;
            align-items: center;
        }

        .sidebar-list a i {
            width: 18px; /* Fixed width for icons to align text */
            font-size: 0.75rem;
            margin-right: 8px;
        }

        .count-badge {
            font-size: 0.65rem;
            padding: 1px 6px;
            margin-left: auto; /* Pushes badge to the far right */
        }
        
        /* --- Job Listings Section --- */

.job-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between cards */
}

.vcy-listing-container {
    width: 100%;
    background: white;
    border-radius: var(--vcy-outer-radius);
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1.5px solid #ececec;
    border-left: 5px solid var(--vcy-primary-highlight);
    overflow: hidden;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 12px,
        var(--vcy-pattern-trace) 12px,
        var(--vcy-pattern-trace) 13px
    );
}

.vcy-listing-container:hover {
    border-color: var(--vcy-primary-highlight);
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.vcy-main-body {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.vcy-brand-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.vcy-text-stack { flex-grow: 1; }

.vcy-position-title {
    color: var(--vcy-deep-forest);
    font-size: 1.15rem; /* Adjusted for better fit in lists */
    font-weight: 700;
    margin: 0 0 6px 0;
}

.vcy-info-row {
    color: #555;
    font-size: 0.9rem;
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vcy-info-row i { color: var(--vcy-primary-highlight); width: 16px; }

.vcy-meta-column { text-align: right; }

.vcy-status-label {
    background: #101840;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    white-space: nowrap;
}

.vcy-time-stamp {
    display: block;
    margin-top: 8px;
    color: #999;
    font-size: 0.8rem;
}

.vcy-lower-section {
    background: var(--vcy-bottom-fade);
    padding: 12px 24px;
    border-top: 1px solid var(--vcy-edge-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vcy-sector-pill {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vcy-primary-highlight);
    background: rgba(0, 200, 83, 0.08);
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
}

.vcy-action-trigger {
    text-decoration: none;
    color: var(--vcy-deep-forest);
    font-weight: 700;
    font-size: 0.9rem;
}

.vcy-premium-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--vcy-primary-highlight), var(--vcy-deep-forest));
    color: white;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-bottom-left-radius: 12px;
    letter-spacing: 1px;
    z-index: 2;
}

.vcy-is-featured {
    border-color: rgba(0, 200, 83, 0.3);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.08);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .vcy-main-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .vcy-meta-column {
        text-align: left;
        width: 100%;
        border-top: 1px dashed #eee;
        padding-top: 10px;
        display: flex;
        justify-content: space-between;
    }

/* --- Modern VCY Pagination --- */
.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination-btn {
    background: #ffffff;
    color: var(--vcy-deep-forest);
    border: 1.5px solid var(--vcy-edge-border);
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.pagination-btn i {
    font-size: 0.8rem;
    color: var(--vcy-primary-highlight);
}

.pagination-btn:hover:not(.disabled) {
    background: var(--vcy-base-tint);
    border-color: var(--vcy-primary-highlight);
    color: var(--vcy-primary-highlight);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.12);
}

.page-numbers {
    display: flex;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    padding: 6px;
    border-radius: 14px;
    border: 1.5px solid #eee;
    gap: 5px;
}

.page-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #64748b;
    transition: all 0.2s ease;
}

.page-link.active {
    background: linear-gradient(135deg, var(--vcy-primary-highlight), var(--vcy-deep-forest));
    color: white;
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.3);
}

.page-link:hover:not(.active) {
    background: var(--vcy-pattern-trace);
    color: var(--vcy-deep-forest);
}

/* Mobile Sophistication */
@media (max-width: 600px) {
    .pagination-container {
        gap: 8px;
    }
    .pagination-btn {
        padding: 10px;
    }
    .pagination-btn span {
        display: none; /* Icon only for cleaner mobile look */
    }
    .page-numbers {
        gap: 2px;
    }
    .page-link {
        width: 34px;
        height: 34px;
    }
}


/* --- Job Details Css --- */

        /* --- Header Card --- */
        .detail-header-card {
            background: var(--white);
            border-radius: 20px;
            padding: 30px;
            margin-top: -60px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            border: 1px solid var(--border-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
            position: relative;
        }

        .company-info { display: flex; align-items: center; gap: 20px; }
        .company-logo-placeholder {
            width: 80px; height: 80px;
            background: var(--bongo-blue);
            color: var(--bright-green);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .header-text h1 { font-size: 1.6rem; color: var(--bongo-blue); margin-bottom: 5px; }
        .header-text p { color: var(--text-muted); font-weight: 500; display: flex; align-items: center; gap: 8px; }

        /* --- Layout --- */
        .main-page-layout { display: flex; gap: 40px; margin-top: 40px; padding-bottom: 80px; }
        .details-content { flex: 2.5; }
        .sidebar { flex: 1; }

        /* --- Meta Grid --- */
        .job-meta-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .meta-item {
            background: var(--bg-soft);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
        }
        .meta-item i { color: var(--bright-green); font-size: 1.3rem; margin-bottom: 10px; display: block; }
        .meta-item label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; }
        .meta-item p { font-weight: 600; font-size: 0.95rem; color: var(--bongo-blue); }

        /* --- Content Sections --- */
        .content-card { margin-bottom: 40px; }
        .content-card h3 { 
            font-size: 1.3rem; 
            margin-bottom: 20px; 
            color: var(--bongo-blue);
            border-left: 4px solid var(--bright-green);
            padding-left: 15px;
        }
        .description-text { font-size: 1rem; color: #445566; line-height: 1.8; }
        .description-text ul { padding-left: 20px; margin: 15px 0; }
        .description-text li { margin-bottom: 10px; }

        /* --- Buttons --- */
        .btn-apply-lg {
            background: var(--bright-green);
            color: var(--white);
            padding: 16px 35px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: 0.3s ease;
        }
        .btn-apply-lg:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 201, 132, 0.3); }

        .btn-outline {
            border: 1px solid var(--border-light);
            padding: 12px 20px;
            border-radius: 12px;
            background: transparent;
            font-family: inherit;
            cursor: pointer;
            color: var(--text-muted);
            margin-right: 10px;
        }

        /* --- Application Info Box --- */
        #application-info {
            background: #f0fdf4;
            border: 1px solid #dcfce7;
            padding: 25px;
            border-radius: 15px;
            margin-top: 10px;
        }

        /* --- Responsive --- */
        @media (max-width: 992px) {
            .main-page-layout { flex-direction: column; }
            .job-meta-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .detail-header-card { flex-direction: column; text-align: center; gap: 20px; }
            .company-info { flex-direction: column; }
            .job-meta-grid { grid-template-columns: 1fr; }
        }