/* Global Font Families */
body {
    font-family: 'Aeonik', sans-serif;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Blauer Nue', sans-serif;
}

.cereer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 0 0;
    margin: 0 auto;

}

/* Filters Sidebar */
.cereer-filters {
    flex: 1;
    min-width: 250px;
    background: transparent;
    padding-right: 0;
    padding-top: 10px;
}

.cereer-filters-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #787878ab;
}

.cereer-filters-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

/* Accordion */
.cereer-filter-accordion {
    border-bottom: 1px solid #7878789e;
    margin: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.cereer-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0 5px;
}

.cereer-accordion-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #323232;
}

.cereer-accordion-icon svg {
    display: block;
}

.cereer-accordion-content {
    display: none;
    padding-top: 10px;
}

.cereer-filter-accordion.open .cereer-accordion-content {
    display: block;
}

/* Custom Checkbox */
.cereer-checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 16px;
    color: #6E6E6E;
    letter-spacing: 0.5px;
    user-select: none;
}

.cereer-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.cereer-checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #f5f5f5;
    border: 1px solid #4C4C4D;
    border-radius: 4px;
}

.cereer-checkbox-container:hover input~.cereer-checkmark {
    background-color: #f5f5f5;
}

.cereer-checkbox-container input:checked~.cereer-checkmark {
    background-color: rgb(215 49 53 / 10%);
    border-color: #D73135;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDEyIDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xMS40ODI0IDEuMTA3NDJMNC4wNDQ5MiA4LjU0NDkyQzMuOTM1NTUgOC42ODE2NCAzLjc3MTQ4IDguNzM2MzMgMy42MDc0MiA4LjczNjMzQzMuNDE2MDIgOC43MzYzMyAzLjI1MTk1IDguNjgxNjQgMy4xNDI1OCA4LjU0NDkyTDAuMjA1MDc4IDUuNjA3NDJDLTAuMDY4MzU5NCA1LjM2MTMzIC0wLjA2ODM1OTQgNC45NTExNyAwLjIwNTA3OCA0LjcwNTA4QzAuNDUxMTcyIDQuNDMxNjQgMC44NjEzMjggNC40MzE2NCAxLjEwNzQyIDQuNzA1MDhMMy42MDc0MiA3LjE3NzczTDEwLjU4MDEgMC4yMDUwNzhDMTAuODI2MiAtMC4wNjgzNTk0IDExLjIzNjMgLTAuMDY4MzU5NCAxMS40ODI0IDAuMjA1MDc4QzExLjc1NTkgMC40NTExNzIgMTEuNzU1OSAwLjg2MTMyOCAxMS40ODI0IDEuMTA3NDJaIiBmaWxsPSIjRDczMTM1Ii8+Cjwvc3ZnPgo=");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px;
}

/* Main Content */
.cereer-list-wrapper {
    flex: 3;
    min-width: 300px;
}

.cereer-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cereer-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #787878;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.cereer-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cereer-sort select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    background: #fff;
    cursor: pointer;
}

/* Job Card (Listing Page) */
.cereer-listing-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 24px;
    margin-bottom: 20px;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0px 34px 14px rgba(140, 140, 140, 0.01), 0px 19px 12px rgba(140, 140, 140, 0.05), 0px 9px 9px rgba(140, 140, 140, 0.09), 0px 2px 5px rgba(140, 140, 140, 0.1);
    border-radius: 12px;
}

.cereer-listing-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.cereer-listing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3px;
}

.cereer-listing-header .cereer-title {
    font-size: 24px;
    font-weight: 400;
    color: #171717;
    margin: 0;
}

.cereer-listing-header .cereer-apply-btn {
    text-decoration: none;
    color: #D73135;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-decoration: underline;
}

.cereer-listing-header .cereer-apply-btn:hover {
    text-decoration: underline;
}

.cereer-listing-header .cereer-apply-btn svg {
    transition: 0.2s all;
}

.cereer-listing-header .cereer-apply-btn:hover svg {
    transform: rotate(45deg);
    transition: 0.2s all;
}

.cereer-toolbar .cereer-sort label {
    font-size: 18px;
    color: #4C4C4D;
    font-family: 'Blauer Nue';
    font-weight: 300;
    white-space: nowrap;
}

.cereer-toolbar span.cereer-count {
    font-size: 18px;
    color: #4C4C4D;
    font-family: 'Aeonik';
    font-weight: 400;
    letter-spacing: 0.5px;
}

.cereer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    margin-bottom: 0;
    font-size: 16px;
    color: #6E6E6E;
    padding-bottom: 15px;
    padding-top: 5px;
}

.cereer-list .cereer-meta span svg {
    width: 18px;
    height: 18px;
}

a.cereer-apply-btn svg {
    width: 20px;
    height: 20px;
}

.cereer-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: normal;
    font-family: 'Aeonik';
    font-weight: 400;
    font-size: 18px;
}

.cereer-description {
    font-size: 18px;
    color: #6E6E6E;
    line-height: 150%;
    font-family: 'Aeonik' !important;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding-top: 2%;
}

/* Pagination */
.cereer-pagination {
    margin-top: 40px;
    text-align: center;
}

.cereer-pagination button {
    background: #fff;
    border: 1px solid #eee;
    /* Light gray border */
    color: #333;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    margin: 0 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.cereer-pagination button:hover {
    background: #f5f5f5;
}

.cereer-pagination button.active {
    background: #D73135;
    color: #fff;
    border-color: #D73135;
}

/* Mobile Filter Drawer */
.cereer-mobile-filter-toggle {
    display: none;
    width: 100%;
    margin-bottom: 20px;
}

#cereer-mobile-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #D73135;
    cursor: pointer;
    padding: 0;
}

.cereer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

/* Loader */
.cereer-loader {
    display: none;
    text-align: center;
    padding: 40px 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cereer-loader.active {
    display: flex;
}

.cereer-spinner-icon {
    width: 24px;
    height: 24px;
    border: 3px solid #eee;
    border-top-color: #D73135;
    border-radius: 50%;
    animation: cereer-spin 0.8s linear infinite;
}

.cereer-loading-text {
    font-size: 16px;
    color: #666;
}

@keyframes cereer-spin {
    to {
        transform: rotate(360deg);
    }
}


@media (max-width: 768px) {
    .cereer-mobile-filter-toggle {
        display: block;
        margin: 0;
        width: auto;
    }

    .cereer-toolbar {
        padding-bottom: 10px;
    }

    .cereer-filters {
        position: fixed;
        bottom: -100%;
        /* Hidden by default */
        left: 0;
        width: 100%;
        height: 80%;
        /* 80% height */
        background: #fff;
        z-index: 999;
        padding: 20px;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        border-radius: 20px 20px 0 0;
        overflow-y: auto;
        transition: bottom 0.3s ease-in-out;
        box-sizing: border-box;
    }

    .cereer-filters.active {
        bottom: 0;
    }

    .cereer-overlay.active {
        display: block;
    }

    .cereer-filters-header {
        justify-content: space-between;
    }
}

.cereer-top-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* Header Section */
.cereer-top-header-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.cereer-top-badge {
    display: inline-block;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.cereer-top-title {
    font-size: 36px;
    font-weight: 300;
    color: #333;
    line-height: 1.2;
    margin: 0 0 15px 0;
}

.cereer-highlight {
    color: #d32f2f;
    font-weight: 600;
}

.cereer-top-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cereer-view-all-btn {
    display: inline-flex;
    align-items: center;
    background-color: #d32f2f;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.cereer-view-all-btn:hover {
    background-color: #b71c1c;
    color: #fff;
}

.cereer-view-all-btn .arrow {
    margin-left: 8px;
    font-size: 16px;
}

/* Grid Section */
.cereer-top-grid {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cereer-top-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
}

.cereer-top-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.cereer-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0 0 10px 0;
}

span.cereer-card-location {
    font-size: 16px;
    font-family: 'Aeonik';
    font-weight: 400;
    color: #6E6E6E;
}

.cereer-top-card .cereer-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #171717;
    margin: 0;
    font-family: 'Blauer Nue';
    padding-bottom: 10px;
}

span.cereer-card-exp {
    color: #6E6E6E;
    font-family: 'Aeonik';
    font-weight: 400;
    font-size: 16px;
}

.cereer-card-meta {
    display: flex;
    gap: 25px;
    font-size: 16px;
    color: #6E6E6E;
    padding-bottom: 15px;
}

.cereer-card-meta i {
    color: #999;
    margin-right: 4px;
}

.cereer-card-excerpt {
    font-size: 16px;
    color: #6E6E6E;
    line-height: 150%;
    letter-spacing: 0;
    margin-bottom: 15px;
    font-family: 'Aeonik';
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cereer-card-apply {
    color: #d32f2f;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.cereer-card-apply:hover {
    text-decoration: underline;
}

a.cereer-card-apply {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-family: 'Blauer Nue';
    font-weight: 400;
}

a.cereer-card-apply p {
    margin: 0;
    text-decoration: underline;
    font-size: 16px;
}

a.cereer-card-apply svg {
    width: 20px;
    height: 20px;
}

a.cereer-card-apply:hover svg {
    filter: grayscale(1);
}

.cereer-top-card:last-child {
    position: absolute;
    left: 15%;
    top: 65px;
}

.cereer-top-card:nth-child(2) {
    position: absolute;
    left: 51%;
    top: -125px;
    background: #EAEAEA;
    z-index: 1;
}

.cereer-top-card:first-child {
    bottom: 0;
    position: absolute;
    left: 0;
}

.elementor-element.elementor-element-bb9ff24.e-con-full.e-flex.e-con.e-child {
    height: 550px;
    position: relative;
    display: flex;
    justify-content: center;
}


.cereer-filter-accordion:last-child {
    border-bottom: 0px;
    margin: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}


span.cereer-count.desktop-bar {
    display: block;
}

.mobile-pagination-top-bar {
    display: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .cereer-top-container {
        flex-direction: column;
    }

    .cereer-listing-header .cereer-title {
        font-size: 18px;
    }

    .cereer-top-header-wrapper,
    .cereer-top-grid {
        width: 100%;
        max-width: none;
        padding-top: 5%;
    }

    .cereer-top-card {
        width: 100%;
    }

    .elementor-element.elementor-element-bb9ff24.e-con-full.e-flex.e-con.e-child {
        height: 100%;
        padding: 0;
    }

    .cereer-top-card:first-child,
    .cereer-top-card:nth-child(2),
    .cereer-top-card:last-child {
        position: unset;
    }

    .cereer-top-card .cereer-card-title {
        padding-bottom: 0px;
    }

    .cereer-card-meta {
        padding-top: 2px;
    }

    span.cereer-card-location,
    span.cereer-card-exp {
        font-size: 14px;
    }

    .cereer-meta span {
        gap: 5px;
        font-size: 14px;
    }

    .cereer-list .cereer-meta span svg {
        width: 16px;
        height: 14px;
    }

    .cereer-meta {
        gap: 10px;
        padding-bottom: 20px;
        padding-top: 5px;
    }

    .cereer-listing-header {
        margin-bottom: 0;
    }

    .cereer-listing-header .cereer-apply-btn {
        font-size: 14px;
    }

    a.cereer-apply-btn svg {
        width: 16px;
        height: 16px;
    }

    .cereer-description {
        font-size: 14px;
        color: #6E6E6E;
        line-height: 150%;
        font-family: 'Aeonik' !important;
        font-weight: 400;
        letter-spacing: 0.1px;
        padding-top: 2%;
    }

    span.cereer-count.desktop-bar {
        display: none;
    }

    .mobile-pagination-top-bar {
        display: block;
        padding: 0 0 10px 5px;
        font-size: 16px;
        color: #000000ab;
    }

    .cereer-toolbar .cereer-sort label {
        font-size: 14px;
    }
}

/* Single Career Page */
.cereer-single-container {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 150px 0;
    width: 100%;
    max-width: 1440px;
}

.cereer-single-content {
    flex: 2;
    min-width: 300px;
}

.cereer-single-sidebar {
    flex: 1;
    display: block;
    min-width: 450px;
    max-width: 450px;
}

/* Single Header */
.cereer-single-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    border: 1px solid #eee;
}

.cereer-single-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
    padding-bottom: 30px;
}

.cereer-single-title {
    font-family: 'Blauer Nue' !important;
    font-style: normal;
    font-weight: 400 !important;
    font-size: 40px !important;
    line-height: 110% !important;
    letter-spacing: 0.01em !important;
    color: #D73135 !important;
    margin: 0;
}

.cereer-single-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.cereer-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cereer-apply-btn-large {
    background: #D73135;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    height: fit-content;
}

.cereer-apply-btn-large:hover {
    background: #b71c1c;
    color: #fff;
}

/* Details Table */
.cereer-details-table {
    margin-bottom: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #787878;
    border-top: 1px solid #787878;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cereer-detail-row {
    display: flex;
    margin-bottom: 0;
}

.cereer-detail-label {
    width: 150px;
    font-weight: 500;
    color: #4C4C4D;
    font-size: 18px;
    font-family: 'Aeonik' !important;
    line-height: normal;
}

.cereer-detail-value {
    color: #4C4C4D;
    font-size: 16px;
    line-height: normal;
    font-family: 'Aeonik' !important;
    font-weight: 400 !important;
}

/* Content Body */
.cereer-content-body h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.cereer-content-body ul {
    margin: 0;
    padding-left: 20px;
    font-family: 'Blauer Nue';
    font-weight: 300;
    font-size: 18px;
    color: #5A5A5A;
}

.cereer-content-body strong {
    font-size: 24px;
    font-family: 'Blauer Nue';
    font-weight: 500;
    color: #5D5D5D;
    padding-bottom: 8px !important;
    display: inline-block;
}

.cereer-content-body li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

/* Sidebar - Other Openings */
.cereer-sidebar-title {
    font-family: 'Blauer Nue' !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-size: 32px !important;
    line-height: 38px !important;
    letter-spacing: 0.01em !important;
    color: #5D5D5D !important;
    margin: 0;
    border-bottom: 1px solid #787878;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.cereer-other-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    transition: transform 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.cereer-other-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cereer-other-link {
    text-decoration: none;
    display: block;
}

.cereer-other-title {
    font-size: 20px !important;
    color: #171717 !important;
    font-family: 'Blauer Nue' !important;
    font-weight: 400 !important;
    margin: 0;
}

.cereer-other-meta {
    display: flex;
    gap: 15px;
    font-size: 16px;
    color: #6E6E6E;
    margin-bottom: 15px;
}

.cereer-other-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.cereer-single-meta.cereer-meta {
    padding-bottom: 0px;
}

.cereer-single-meta.cereer-meta {
    gap: 25px;
    padding-top: 10px;
}

.cereer-content-body li::marker {
    color: #E30016;
}

.cereer-top-section .cereer-top-container .cereer-top-grid .cereer-top-card {
    width: 400px;
}

@media screen and (max-width: 1024px) {
    .cereer-single-sidebar {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width:1440px) {
    .cereer-single-container {
        padding: 5% 6%;
    }
}

/* Responsive Single */
@media screen and (max-width: 768px) {
    .cereer-single-container {
        flex-direction: column;
        padding: 50px 25px;
    }

    .cereer-single-header {
        flex-direction: column;
        gap: 20px;
        padding-bottom: 40px;
    }

    .cereer-detail-row {
        flex-direction: column;
        margin-bottom: 0;
    }

    .cereer-detail-label {
        width: 100%;
        margin-bottom: 4px;
        color: #888;
        font-size: 14px;
    }

    .cereer-detail-value {
        font-weight: 500;
        color: #333;
    }

    .cereer-single-card {
        padding: 25px 20px;
    }

    .cereer-content-body strong {
        font-size: 18px;
    }

    .cereer-content-body li {
        margin-bottom: 5px;
    }

    .cereer-content-body ul {
        font-size: 14px;
    }

    .cereer-details-table {
        margin-bottom: 30px;
        border: 1px solid #c6c6c657;
        display: flex;
        flex-direction: column;
        gap: 20px;
        border-bottom: 1px solid #c6c6c640;
        background: #e9e9e930;
        padding: 20px 25px;
        border-radius: 10px;
    }

    .cereer-single-meta.cereer-meta {
        padding-top: 5px;
        justify-content: flex-start;
        gap: 10px;
    }

}