
/*-----------------------------------------------------------------------------------*/
/* Job Search Page Styles
/*-----------------------------------------------------------------------------------*/

/* Hide default H1 title */
body.job-search-page .content-area .site-main header.entry-header {
    display: none;
}

/* Allow sticky in job search - no overflow clip (style.css sets div#page overflow:hidden) */
body.job-search-page div#page,
body.job-search-page .content-area,
body.job-search-page .site-main,
body.job-search-page .entry-content,
body.job-search-page .wpb-content-wrapper,
body.job-search-page .site-main article,
body.job-search-page .site-main .post,
body.job-search-page .site-main > *,
body.job-search-page .entry-content > * {
    overflow: visible !important;
}

/* Black background for job search page */
body.job-search-page {
    background-color: #000000;
}

/* Job Search Page Layout - Complete Reset */
body.job-search-page .job-search-main-section {
    margin: 0 !important;
    padding: 0 !important;
}

body.job-search-page .job-search-main-section .vc_row,
body.job-search-page .job-search-main-section .vc_row.wpb_row,
body.job-search-page .job-search-main-section .wpb_row {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    min-height: calc(100vh - 200px);
    width: 100% !important;
}

body.job-search-page .job-search-main-section .vc_column_container,
body.job-search-page .job-search-main-section .wpb_column {
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
}

body.job-search-page .job-search-main-section .vc_col-sm-5,
body.job-search-page .job-search-main-section .vc_col-sm-7 {
    padding: 0 !important;
    margin: 0 !important;
}

/* Step 4: Right column (job-detail-panel) sticky below search bar */
body.job-search-page .job-search-main-section .vc_col-sm-7 {
    align-self: start;
    overflow: visible;
    position: sticky !important;
    top: var(--job-search-header-height, 220px) !important;
    z-index: 20 !important;
}

body.job-search-page .job-search-main-section .vc_column-inner {
    padding: 0 !important;
    margin: 0 !important;
    height: 100%;
}

/* Right column: allow sticky panel - no overflow that would break sticky */
body.job-search-page .job-search-main-section .vc_col-sm-7 .vc_column-inner,
body.job-search-page .job-search-main-section .vc_col-sm-7 .wpb_wrapper,
body.job-search-page .job-search-main-section .vc_col-sm-7 .wpb_raw_code.wpb_raw_html,
body.job-search-page .job-search-main-section .vc_col-sm-7 .wpb_raw_code .wpb_wrapper {
    overflow: visible !important;
}

body.job-search-page .wpb_raw_code.wpb_raw_html.wpb_content_element,
body.job-search-page .wpb_content_element {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

body.job-search-page .wpb_wrapper {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

body.job-search-page .job-search-bar {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

/* Search Bar Section - Combined Panel */
.job-search-bar {
    padding: 50px 30px 20px;
    background-color: #2e0037;
    margin: 0 !important;
    border-radius: 0;
    transition: padding-top 0.25s ease;
}
body.job-search-bar-stuck .job-search-bar {
    padding-top: 20px;
}

.job-search-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
}

.search-inputs-wrapper {
    display: contents;
}

.search-input-group {
    position: relative;
}

.search-input-group .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #737373;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.search-input-group input[type="search"] {
    width: 100%;
    height: 48px;
    padding: 12px 16px 12px 48px;
    border: none;
    background: #FFFFFF;
    border-radius: 30px;
    color: #737373;
    font-family: Manrope;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.search-input-group input[type="search"]::placeholder {
    color: #737373;
    opacity: 0.8;
}

.search-input-group input[type="search"]:focus {
    outline: none;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-submit-btn {
    height: 48px;
    padding: 12px 32px;
    background: #000000;
    border: none;
    border-radius: 30px;
    color: #FFFFFF;
    font-family: Manrope;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.search-submit-btn .search-icon {
    width: 18px;
    height: 18px;
    color: #2e0037;
}

.search-submit-btn:hover {
    background: linear-gradient(90deg, #0044FF -26.52%, #D500FF 96%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 68, 255, 0.35);
}

.search-submit-btn:hover .search-icon {
    color: #FFFFFF;
}

/* Responsive Search Bar */
@media screen and (max-width: 1400px) {
    .job-filters-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .job-search-bar {
        padding: 25px 15px 25px;
    }
    
    .job-search-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .search-submit-btn {
        width: 100%;
    }
    
    .job-filters-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 0 0;
    }
}

/* Filters Row - Part of same panel */
.job-filters-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 0 0;
    background: transparent;
}

/* Override parent theme dark mode styles for filter dropdowns */
.is-dark-theme .filter-dropdown,
body.job-search-page .filter-dropdown {
    background: transparent !important;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
}

.filter-dropdown-wrapper {
    border: 1px solid #FFFFFF;
    border-radius: 25px;
    padding: 4px;
    display: flex;
    background-color: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.filter-dropdown {
    width: 100%;
    height: auto;
    padding: 8.5px 32px 8.5px 12px;
    border: none;
    background: transparent;
    border-radius: 0;
    color: #FFFFFF;
    font-family: Manrope;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    position: relative;
    z-index: 1;
}

.filter-dropdown-wrapper:hover {
    background: linear-gradient(90deg, #0044FF -26.52%, #D500FF 96%);
    border-color: transparent;
}

.filter-dropdown:focus {
    outline: none;
}

.filter-dropdown option {
    background: #000000;
    color: #FFFFFF;
    padding: 10px;
}


/*-----------------------------------------------------------------------------------*/
/* Job Cards List Section
/*-----------------------------------------------------------------------------------*/

.job-cards-list-wrapper {
    padding: 30px 30px 100px 30px;
    background: linear-gradient(180deg, #8B3A8B 0%, #6B2D6B 100%);
    border-radius: 0;
    min-height: 100%;
}

/* Header with count and sort */
.job-cards-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.job-count h4 {
    font-family: Manrope;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.job-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-sort label {
    font-family: Manrope;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
}

.job-sort-dropdown,
.is-dark-theme .job-sort-dropdown,
body.job-search-page .job-sort-dropdown {
    padding: 0 18px 0 0 !important;
    border: none !important;
    background: transparent !important;
    color: #FFFFFF !important;
    font-family: Manrope;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23FFFFFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
}

.job-sort-dropdown:focus {
    outline: none;
}

/* Job Cards List Container */
.job-cards-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}


/* Job Card Wrapper */
.job-card-wrapper {
    position: relative;
    padding: 25px 24px;
    border: none;
    border-bottom: 1px solid #737373;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #FFFFFF;
    z-index: 1;
}

.job-card-wrapper:first-child {
    border-radius: 3px 3px 0 0;
}

.job-card-wrapper:last-child {
    border-radius: 0 0 3px 3px;
    border-bottom: none;
}

.job-card-wrapper:only-child {
    border-radius: 3px;
}

.job-card-wrapper:hover {
    background: #F5F5F5;
}

/* Active card - gradient background like CTA button */
.job-card-wrapper.active {
    background: linear-gradient(90deg, #0052CC 0%, #B24DFF 50%, #FF6EC7 100%);
    border-bottom: none;
    border-radius: 3px;
    margin-bottom: 0;
}

/* Badges */
.job-badges {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 2;
}

.job-badge {
    padding: 5px 14px;
    border-radius: 20px;
    font-family: Manrope;
    font-size: 11px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.job-badge.featured {
    background: linear-gradient(90deg, #8B008B 0%, #4B0082 100%);
    color: #FFFFFF;
}

/* Featured badge white on active card */
.job-card-wrapper.active .job-badge.featured {
    background: #FFFFFF;
    color: #000000;
}

.job-badge.new {
    background: linear-gradient(90deg, #0044FF 0%, #D500FF 100%);
    color: #FFFFFF;
}

/* Simple white text for New badge on active card */
.job-card-wrapper.active .job-badge.new {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: capitalize;
}

/* Job Card Inner */
.job-card-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Job Card Header */
.job-card-header {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

/* Job Thumbnail */
.job-thumbnail {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    border: none;
    background: #F5F5F5;
}

.job-card-wrapper.active .job-thumbnail {
    background: rgba(255, 255, 255, 0.1);
}

.job-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Job Card Meta */
.job-card-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.job-department {
    font-family: Manrope;
    font-size: 16px;
    font-weight: 500;
    color: #737373;
    margin: 0;
}

.job-card-wrapper.active .job-department {
    color: #FFFFFF;
}

.job-title {
    font-family: Manrope;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #737373;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.job-card-wrapper.active .job-title {
    color: #FFFFFF;
}

.job-location-type {
    display: flex;
    gap: 12px;
    align-items: center;
    font-family: Manrope;
    font-size: 15px;
    font-weight: 400;
    color: #737373;
}

.job-location-type span:not(:last-child)::after {
    content: "•";
    margin-left: 12px;
    opacity: 0.5;
}

/* Orange color for location in active card */
.job-card-wrapper.active .job-location-type span:first-child {
    color: #FFA726;
}

/* White color for type in active card */
.job-card-wrapper.active .job-location-type span:last-child {
    color: #FFFFFF;
}

.job-card-wrapper.active .job-location-type {
    color: #FFFFFF;
}

.job-salary {
    font-family: Manrope;
    font-size: 16px;
    font-weight: 400;
    color: #737373;
    margin: 0;
}

.job-card-wrapper.active .job-salary {
    color: #FFFFFF;
}

/* Job Tags */
.job-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-tag {
    padding: 6px 14px;
    border: 1px solid #737373;
    border-radius: 20px;
    font-family: Manrope;
    font-size: 13px;
    font-weight: 400;
    color: #737373;
    background: transparent;
    transition: all 0.3s ease;
}

.job-card-wrapper:hover .job-tag {
    border-color: rgba(245, 239, 235, 0.6);
}

/* Blue/purple background for tags in active card */
.job-card-wrapper.active .job-tag {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
}

/* Job Card Arrow */
.job-card-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #737373;
    opacity: 1;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(181, 181, 181, 0.2);
    border-radius: 50%;
}

.job-card-wrapper.active .job-card-arrow {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #FFFFFF;
}

.job-card-wrapper:hover .job-card-arrow {
    transform: translateY(-50%) translateX(3px);
}

/* No Jobs Found */
.no-jobs-found {
    padding: 60px 20px;
    text-align: center;
}

.no-jobs-found p {
    font-family: Manrope;
    font-size: 18px;
    color: #F5EFEB;
    opacity: 0.6;
}

/* Responsive Job Cards */
@media screen and (max-width: 768px) {
    .job-cards-list-wrapper {
        padding: 20px 15px;
    }
    
    .job-cards-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .job-count h4 {
        font-size: 20px;
    }
    
    .job-card-wrapper {
        padding: 16px;
    }
    
    .job-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .job-title {
        font-size: 18px;
    }
    
    .job-badges {
        top: 10px;
        right: 10px;
    }
    
    .job-badge {
        font-size: 10px;
        padding: 3px 10px;
    }
}

/*-----------------------------------------------------------------------------------*/
/* Job Detail Panel Section
/*-----------------------------------------------------------------------------------*/

.job-detail-panel {
    padding: 30px;
    background: #FFFFFF;
    border: none;
    border-radius: 0;
    min-height: 100%;
}

/* Sticky is on .vc_col-sm-7 (right column), not on panel */

/* Loading State */
.job-detail-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.job-detail-loading p {
    font-family: Manrope;
    font-size: 16px;
    color: #737373;
}

/* Detail Content */
.job-detail-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: opacity 0.2s ease;
}

/* Hide Large Image - using thumbnail instead */
.job-detail-image {
    display: none;
}

/* Header Section */
.job-detail-header {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E0E0;
    align-items: start;
}

/* Header Thumbnail */
.job-detail-header .job-thumbnail {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    background: #F5F5F5;
    grid-row: 1 / 4;
}

.job-detail-header .job-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Posted Date */
.job-posted-date {
    font-family: Manrope;
    font-size: 13px;
    font-weight: 500;
    color: #A78BFA;
    grid-column: 3;
    grid-row: 1;
    text-align: right;
}

/* Header Content Wrapper */
.job-detail-header-content {
    grid-column: 2;
    grid-row: 1 / 4;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.job-detail-department {
    font-family: Manrope;
    font-size: 14px;
    font-weight: 500;
    color: #737373;
    letter-spacing: 0.3px;
}

.job-detail-department:empty,
.job-detail-salary:empty,
.job-detail-meta-row .job-meta-item:empty {
    display: none;
}

.job-detail-title {
    font-family: Manrope;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #8B3A8B;
    margin: 0;
    text-transform: uppercase;
}

.job-detail-meta-row {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: Manrope;
    font-size: 15px;
    font-weight: 400;
    color: #737373;
}

.job-meta-item .meta-icon {
    display: none;
}

.job-detail-salary {
    font-family: Manrope;
    font-size: 16px;
    font-weight: 400;
    color: #737373;
}

/* Detail Tags */
.job-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 0;
    border-bottom: none;
}

.job-detail-tag {
    padding: 0;
    border: none;
    border-radius: 0;
    font-family: Manrope;
    font-size: 14px;
    font-weight: 400;
    color: #737373;
    background: transparent;
}

/* Content Sections */
.job-detail-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.job-detail-section .section-title {
    font-family: Manrope;
    font-size: 16px;
    font-weight: 700;
    color: #737373;
    margin: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.job-detail-section .section-content {
    font-family: Manrope;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #737373;
}

.job-detail-section .section-content p {
    line-height: 1.7;
}

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

.job-detail-section .section-content ul,
.job-detail-section .section-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.job-detail-section .section-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.job-detail-section .section-content h4,
.job-detail-section .section-content h5 {
    color: #8B3A8B;
    margin: 20px 0 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.job-detail-content-title {
    color: #8B3A8B !important;
    font-family: Manrope;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 16px 0 !important;
}

.job-detail-section .section-content p {
    color: #737373;
}

.job-detail-section .section-content strong {
    color: #737373;
    font-weight: 700;
}

/* CTA Button */
.job-detail-cta {
    margin-top: 30px;
    padding-top: 0;
    border-top: none;
}

.job-detail-button {
    display: block !important;
    width: 20%;
    padding: 16px 32px !important;
    background: linear-gradient(90deg, #8B3A8B 0%, #6B2D6B 100%);
    color: #FFFFFF;
    font-family: Manrope;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.job-detail-button:hover {
    background: linear-gradient(90deg, #6B2D6B 0%, #8B3A8B 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 58, 139, 0.3);
}

/* Empty State */
.job-detail-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.job-detail-empty p {
    font-family: Manrope;
    font-size: 18px;
    color: #737373;
}

/* Responsive Detail Panel */
@media screen and (max-width: 768px) {
    .job-detail-panel {
        padding: 15px;
    }
    
    
    .job-detail-image {
        height: 200px;
    }
    
    .job-detail-title {
        font-size: 26px;
    }
    
    .job-detail-salary {
        font-size: 18px;
    }
    
    .job-detail-section .section-title {
        font-size: 20px;
    }
    
    .job-detail-section .section-content {
        font-size: 15px;
    }
}

/*-----------------------------------------------------------------------------------*/
/* Job Search Page - Layout (sticky removed for now)
/*-----------------------------------------------------------------------------------*/

/* Reset spacing for job search section */
section.job-search-main-section,
section.vc_section.job-search-main-section {
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

section.job-search-main-section .vc_row,
section.job-search-main-section .vc_row.wpb_row,
section.job-search-main-section .vc_row-fluid {
    overflow: visible !important;
}

section.job-search-main-section .vc_row,
section.job-search-main-section .vc_row.wpb_row,
section.job-search-main-section .vc_row-fluid,
section.job-search-main-section div.vc_row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

section.job-search-main-section .vc_col-sm-5,
section.job-search-main-section .vc_col-sm-7,
section.job-search-main-section .wpb_column,
section.job-search-main-section .vc_column_container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

section.job-search-main-section .vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Step 2: Search bar section sticky at top; no top padding to avoid gap when sticky */
body.job-search-page section.job-search-header-section,
body.job-search-page section.vc_section.job-search-header-section {
    position: sticky !important;
    top: 0 !important;
    z-index: 21 !important;
    overflow: visible !important;
    padding-top: 0 !important;
}
body.job-search-page section.job-search-header-section .vc_row,
body.job-search-page section.job-search-header-section .vc_column-inner,
body.job-search-page section.vc_section.job-search-header-section .vc_row,
body.job-search-page section.vc_section.job-search-header-section .vc_column-inner,
body.job-search-page section.job-search-header-section [class*="vc_custom"],
body.job-search-page section.vc_section.job-search-header-section [class*="vc_custom"] {
    padding-top: 0 !important;
}

body.job-search-page .job-search-bar {
    margin: 0 !important;
}

body.job-search-page section.job-search-main-section .wpb_wrapper {
    padding: 0 !important;
    margin: 0 !important;
}


/*-----------------------------------------------------------------------------------*/
/* Hire Page - Form Section Styles
/*-----------------------------------------------------------------------------------*/

.hire-page-form-section {
    position: relative;
    padding: 100px 20px 250px 20px;
    background-color: #2E0037;
    text-align: center;
    overflow: hidden;
}

.hire-page-form-container {
    max-width: 1124px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 35px 0;
    background-image: url(/wp-content/uploads/2025/09/up.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
}

.hire-page-form-container::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100px;
    background-image: url(/wp-content/uploads/2025/09/down.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
}

.form-section-title {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    font-family: Manrope;
    margin-bottom: 20px;
    text-align: center;
}

.form-section-subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.4;
    color: #F5EFEB;
    margin-bottom: 60px;
    font-weight: 400;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact form wrapper - left align */
.hire-page-form-section .contact-form {
    text-align: left;
}

/* Responsive styles for Form Section */
@media screen and (max-width: 1024px) {
    .hire-page-form-section {
        padding: 80px 20px 200px 20px;
    }
    
    .form-section-title {
        font-size: 40px;
        margin-bottom: 18px;
    }
    
    .form-section-subtitle {
        font-size: 18px;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 768px) {
    .hire-page-form-section {
        padding: 60px 20px 150px 20px;
    }
    
    .form-section-title {
        font-size: 35px;
        margin-bottom: 15px;
    }
    
    .form-section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 576px) {
    .hire-page-form-section {
        padding: 50px 15px 100px 15px;
    }
    
    .form-section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .form-section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

/*-----------------------------------------------------------------------------------*/
/* Hire Page - General Styles
/*-----------------------------------------------------------------------------------*/

body.single-hire-page .site-content {
    padding-top: 0 !important;
}

/* Remove default article child margins from parent theme */
.hire-page-single > section,
.hire-page-single > div,
.hero-content-wrapper,
.hire-page-features-section,
.hire-page-workflow-section,
.hire-page-key-points-section,
.hire-page-comparison-section,
.hire-page-case-studies-section,
.hire-page-team-section,
.hire-page-faq-section,
.hire-page-blog-section,
.hire-page-form-section,
.hire-page-hero-section,
.hire-page-content-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/*-----------------------------------------------------------------------------------*/
/* Hire Page - Hero + Content Wrapper with Background
/*-----------------------------------------------------------------------------------*/

.hero-content-wrapper {
    position: relative;
    background-color: #2E0037;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Dark overlay for both sections */
.hero-content-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(46, 0, 55, 0.85) 0%, rgba(46, 0, 55, 0.6) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content-wrapper > * {
    position: relative;
    z-index: 2;
}

/*-----------------------------------------------------------------------------------*/
/* Hire Page - Hero Section Styles
/*-----------------------------------------------------------------------------------*/

.hire-page-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: transparent;
    overflow: visible;
}

/* Override default banner-section pseudo-elements for hire page */
.hire-page-hero-section::before,
.hire-page-hero-section::after {
    content: none !important;
}

.hire-page-hero-section .main-heading {
    font-size: clamp(45px, 5vw, 80px);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.hire-page-hero-section .forth-heaidng {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.4;
    color: #F5EFEB;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: 0;
    font-weight: 600;
}

.hire-page-hero-section .hero-description {
    max-width: 700px;
}

.hire-page-hero-section .hero-description p {
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.6;
    color: #F5EFEB;
    margin-bottom: 20px;
    font-weight: 400;
}

.hire-page-hero-section .hero-description p:last-child {
    margin-bottom: 0;
}

.hire-page-hero-section .hero-description strong {
    font-weight: 700;
    color: #fff;
}

.hire-page-hero-section .hero-description em {
    font-style: italic;
}

.hire-page-hero-section .hero-description a {
    color: #0044FF;
    text-decoration: underline;
}

.hire-page-hero-section .hero-button-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: start;
}

/* Responsive styles for Hero Section */
@media screen and (max-width: 1024px) {
    .hire-page-hero-section {
        min-height: 70vh;
    }
    
    .hire-page-hero-section .banner-section-container {
        padding-top: 80px !important;
        padding-bottom: 50px !important;
    }
}

@media screen and (max-width: 768px) {
    .hire-page-hero-section {
        min-height: 60vh;
    }
    
    .hire-page-hero-section .banner-section-container {
        padding-top: 60px !important;
        padding-bottom: 40px !important;
    }
    
    .hire-page-hero-section .forth-heaidng {
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .hire-page-hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hire-page-hero-section .main-heading {
        font-size: 35px;
    }
    
    .hire-page-hero-section .wpb_wrapper p {
        font-size: 14px;
    }
}

/*-----------------------------------------------------------------------------------*/
/* Hire Page - Content Section Styles
/*-----------------------------------------------------------------------------------*/

.hire-page-content-section {
    position: relative;
    padding: 100px 20px;
    background: transparent;
    text-align: center;
    overflow: hidden;
}

/* Gradient overlay effect for content section */
.hire-page-content-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(46, 0, 55, 0.4) 30%, rgba(26, 26, 62, 0.6) 70%, rgba(10, 10, 32, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.hire-page-content-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.content-section-title {
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    font-family: Manrope;
    margin-bottom: 40px;
    text-align: center;
}

.content-section-description {
    max-width: 900px;
    margin: 0 auto 40px;
}

.content-section-description p {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.7;
    color: #F5EFEB;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: center;
}

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

.content-section-description strong {
    font-weight: 700;
    color: #fff;
}

.content-section-description em {
    font-style: italic;
}

.content-section-description a {
    color: #0044FF;
    text-decoration: underline;
}

.content-section-description ul,
.content-section-description ol {
    text-align: left;
    max-width: 700px;
    margin: 20px auto;
    padding-left: 20px;
}

.content-section-description li {
    color: #F5EFEB;
    margin-bottom: 10px;
}

/* Content Section Button */
.hire-page-content-section .content-button-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* Responsive styles for Content Section */
@media screen and (max-width: 1024px) {
    .hire-page-content-section {
        padding: 80px 20px;
    }
    
    .content-section-title {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .hire-page-content-section {
        padding: 60px 20px;
    }
    
    .content-section-title {
        font-size: 35px;
        margin-bottom: 25px;
    }
    
    .content-section-description {
        max-width: 100%;
    }
    
    .content-section-description p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media screen and (max-width: 576px) {
    .hire-page-content-section {
        padding: 50px 15px;
    }
    
    .content-section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .hire-page-content-section .content-button-wrapper {
        margin-top: 30px;
    }
    
    .hire-page-content-section .vc_btn3-container .vc_general {
        padding: 14px 30px;
    }
}

/*-----------------------------------------------------------------------------------*/
/* Hire Page - Features Section Styles
/*-----------------------------------------------------------------------------------*/

.hire-page-features-section {
    position: relative;
    padding: 100px 20px;
    background-color: #0C0C0D;
    text-align: center;
    overflow: hidden;
}

.hire-page-features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.features-section-title {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    font-family: Manrope;
    margin-bottom: 20px;
    text-align: center;
}

.features-section-subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.4;
    color: #F5EFEB;
    margin-bottom: 60px;
    font-weight: 400;
    text-align: center;
}

/* Features Grid - 2 columns */
.features-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    padding: 10px;
}

.feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text {
    flex: 1;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.6;
    color: #F5EFEB;
    font-weight: 400;
}

/* Features Section Button */
.hire-page-features-section .features-button-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

/* Responsive styles for Features Section */
@media screen and (max-width: 1024px) {
    .hire-page-features-section {
        padding: 80px 20px;
    }
    
    .features-section-subtitle {
        margin-bottom: 50px;
    }
    
    .features-items-grid {
        gap: 25px 30px;
    }
}

@media screen and (max-width: 768px) {
    .hire-page-features-section {
        padding: 60px 20px;
    }
    
    .features-section-title {
        font-size: 35px;
        margin-bottom: 15px;
    }
    
    .features-section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .features-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .feature-item {
        gap: 12px;
        padding: 8px;
    }
    
    .feature-icon {
        width: 28px;
        height: 28px;
    }
    
    .feature-text {
        font-size: 15px;
    }
}

@media screen and (max-width: 576px) {
    .hire-page-features-section {
        padding: 50px 15px;
    }
    
    .features-section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .features-section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .features-items-grid {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
    }
    
    .feature-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .hire-page-features-section .features-button-wrapper {
        margin-top: 40px;
    }
    
    .hire-page-features-section .vc_btn3-container .vc_general {
        padding: 14px 30px;
    }
}

/*-----------------------------------------------------------------------------------*/
/* Hire Page - Workflow Section Styles
/*-----------------------------------------------------------------------------------*/

.hire-page-workflow-section {
    position: relative;
    padding: 100px 20px;
    background: #000000;
    text-align: center;
    overflow: hidden;
}

/* Gradient overlay effect */
.hire-page-workflow-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 800px 600px at 0% 20%, rgba(213, 0, 255, 0.4) 0%, rgba(0, 68, 255, 0.35) 30%, transparent 60%),
                radial-gradient(ellipse 800px 600px at 100% 80%, rgba(213, 0, 255, 0.4) 0%, rgba(0, 68, 255, 0.35) 30%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hire-page-workflow-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.workflow-section-title {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    font-family: Manrope;
    margin-bottom: 20px;
    text-align: center;
}

.workflow-section-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.5;
    color: #F5EFEB;
    margin-bottom: 60px;
    font-weight: 400;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Workflow Steps List */
.workflow-steps-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 650px;
    margin: 0 auto 60px;
}

.workflow-step-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    text-align: left;
    padding: 0;
    width: 100%;
}

.workflow-step-number {
    flex-shrink: 0;
    font-size: 70px;
    line-height: 1;
    font-weight: 700;
    font-family: Manrope;
    background: linear-gradient(90deg, #D500FF 0%, #0044FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 100px;
}

.workflow-step-content {
    flex: 1;
    padding-top: 10px;
}

.workflow-step-title {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.3;
    color: #fff;
    font-weight: 700;
    font-family: Manrope;
    margin-bottom: 10px;
}

.workflow-step-description {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    color: #F5EFEB;
    font-weight: 400;
    margin: 0;
}

/* Workflow Section Button */
.hire-page-workflow-section .workflow-button-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

/* Responsive styles for Workflow Section */
@media screen and (max-width: 1024px) {
    .hire-page-workflow-section {
        padding: 80px 20px;
    }
    
    .workflow-section-subtitle {
        margin-bottom: 50px;
    }
    
    .workflow-steps-list {
        gap: 35px;
    }
}

@media screen and (max-width: 768px) {
    .hire-page-workflow-section {
        padding: 60px 20px;
    }
    
    .workflow-section-title {
        font-size: 35px;
        margin-bottom: 15px;
    }
    
    .workflow-section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .workflow-steps-list {
        gap: 30px;
    }
    
    .workflow-step-item {
        gap: 20px;
    }
    
    .workflow-step-number {
        font-size: 60px;
        min-width: 80px;
    }
    
    .workflow-step-title {
        font-size: 18px;
    }
    
    .workflow-step-description {
        font-size: 14px;
    }
}

@media screen and (max-width: 576px) {
    .hire-page-workflow-section {
        padding: 50px 15px;
    }
    
    .workflow-section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .workflow-section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .workflow-steps-list {
        gap: 25px;
    }
    
    .workflow-step-item {
        gap: 15px;
    }
    
    .workflow-step-number {
        font-size: 50px;
        min-width: 70px;
    }
    
    .workflow-step-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .workflow-step-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .hire-page-workflow-section .workflow-button-wrapper {
        margin-top: 40px;
    }
}

/*-----------------------------------------------------------------------------------*/
/* Hire Page - Key Points Section Styles
/*-----------------------------------------------------------------------------------*/

.hire-page-key-points-section {
    position: relative;
    padding: 100px 20px;
    background-color: #000000;
    text-align: center;
    overflow: hidden;
}

.hire-page-key-points-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.key-points-section-title {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    font-family: Manrope;
    margin-bottom: 60px;
    text-align: center;
}

/* Key Points Grid - 2 columns */
.key-points-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.key-point-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.key-point-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.key-point-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.key-point-text {
    flex: 1;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.6;
    color: #fff;
    font-weight: 400;
}

.key-points-section-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.6;
    color: #A0A0A0;
    margin-top: 40px;
    font-weight: 400;
    text-align: center;
}

/* Responsive styles for Key Points Section */
@media screen and (max-width: 1024px) {
    .hire-page-key-points-section {
        padding: 80px 20px;
    }
    
    .key-points-section-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
    
    .key-points-items-grid {
        gap: 25px 40px;
        margin-bottom: 50px;
    }
    
    .key-point-icon {
        width: 28px;
        height: 28px;
    }
    
    .key-point-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .hire-page-key-points-section {
        padding: 60px 20px;
    }
    
    .key-points-section-title {
        font-size: 35px;
        margin-bottom: 40px;
    }
    
    .key-points-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .key-point-item {
        gap: 15px;
    }
    
    .key-point-icon {
        width: 26px;
        height: 26px;
    }
    
    .key-point-text {
        font-size: 15px;
    }
}

@media screen and (max-width: 576px) {
    .hire-page-key-points-section {
        padding: 50px 15px;
    }
    
    .key-points-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .key-points-items-grid {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .key-point-icon {
        width: 24px;
        height: 24px;
    }
    
    .key-point-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .key-points-section-subtitle {
        font-size: 14px;
        margin-top: 30px;
    }
}

/*-----------------------------------------------------------------------------------*/
/* Hire Page - Comparison Section Styles
/*-----------------------------------------------------------------------------------*/

.hire-page-comparison-section {
    position: relative;
    padding: 100px 20px;
    background-color: #000000;
    text-align: center;
    overflow: hidden;
}

.hire-page-comparison-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.comparison-section-title {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    font-family: Manrope;
    margin-bottom: 60px;
    text-align: center;
}

/* Comparison Cards Grid - 2 columns */
.comparison-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-card {
    padding: 10px 8px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    height: 330px;
}

.comparison-card:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(46, 0, 55, 0.2) 100%);
    border-radius: 5px;
    border: 1px solid #FFFFFF;
}

.comparison-card-inner {
    position: relative;
    padding: 40px 30px;
    background: transparent;
    text-align: left;
    z-index: 1;
    height: 100%;
    transition: background 0.4s ease;
}

.comparison-card:hover .comparison-card-inner {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(46, 0, 55, 0.2) 100%), linear-gradient(0deg, rgba(245, 239, 235, 0.4), rgba(245, 239, 235, 0.4));
}

/* Decorative corner borders via SVG - top corners */
.comparison-card-inner::before {
    content: "";
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("/wp-content/uploads/2025/09/down.svg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
    z-index: -1;
}

/* Decorative corner borders via SVG - bottom corners */
.comparison-card-inner::after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("/wp-content/uploads/2025/09/up.svg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    z-index: -1;
}

.comparison-card-title {
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.3;
    color: #fff;
    font-weight: 700;
    font-family: Manrope;
    margin-bottom: 20px;
}

/* Highlight colored text in title */
.comparison-card-title .highlight {
    color: #D500FF;
}

.comparison-card-description {
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.6;
    color: #fff;
    font-weight: 400;
    margin: 0;
}

/* Responsive styles for Comparison Section */
@media screen and (max-width: 1024px) {
    .hire-page-comparison-section {
        padding: 80px 20px;
    }
    
    .comparison-section-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
    
    .comparison-cards-grid {
        gap: 30px;
    }
    
    .comparison-card-inner {
        padding: 35px 25px;
    }
    
    .comparison-card-title {
        font-size: 24px;
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 768px) {
    .hire-page-comparison-section {
        padding: 60px 20px;
    }
    
    .comparison-section-title {
        font-size: 35px;
        margin-bottom: 40px;
    }
    
    .comparison-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .comparison-card-inner {
        padding: 30px 20px;
    }
    
    .comparison-card-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .comparison-card-description {
        font-size: 15px;
    }
}

@media screen and (max-width: 576px) {
    .hire-page-comparison-section {
        padding: 50px 15px;
    }
    
    .comparison-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .comparison-cards-grid {
        gap: 20px;
    }
    
    .comparison-card-inner {
        padding: 25px 18px;
    }
    
    .comparison-card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .comparison-card-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

/*-----------------------------------------------------------------------------------*/
/* Hire Page - Case Studies Section Styles
/*-----------------------------------------------------------------------------------*/

.hire-page-case-studies-section {
    position: relative;
    padding: 100px 20px;
    background-color: #000000;
    text-align: center;
    overflow: hidden;
}

.hire-page-case-studies-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.case-studies-section-title {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    font-family: Manrope;
    margin-bottom: 20px;
    text-align: center;
}

.case-studies-section-subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.4;
    color: #F5EFEB;
    margin-bottom: 60px;
    font-weight: 400;
    text-align: center;
}

.case-studies-listing {
    width: 100%;
}

/* Search bar styles */
.hire-page-case-studies-section .search-bar {
    margin-bottom: 60px;
}

.hire-page-case-studies-section .search-bar form {
    display: flex;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
}

.hire-page-case-studies-section .search-bar input[type="search"] {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    color: #F5EFEB;
    font-size: 16px;
    font-family: Manrope;
}

.hire-page-case-studies-section .search-bar input[type="search"]::placeholder {
    color: #F5EFEB;
    opacity: 0.7;
}

/* Case studies grid */
.hire-page-case-studies-section .case-studies-listing .media_hub_part {
    display: flex !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
}

.hire-page-case-studies-section .case-studies-listing .media_hub_part .media-wrapper {
    width: 100% !important;
    max-width: calc((100% - 32px) / 3) !important;
    padding: 10px 8px !important;
    border: 1px solid transparent !important;
    transition: all 0.4s ease !important;
}

.hire-page-case-studies-section .case-studies-listing .media_hub_part .media-wrapper:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(46, 0, 55, 0.2) 100%) !important;
    border: 1px solid #FFFFFF !important;
    backdrop-filter: blur(60px) !important;
    border-radius: 5px !important;
}

.hire-page-case-studies-section .case-studies-listing .media_hub_part .media-wrapper .blog-slide-main {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.hire-page-case-studies-section .case-studies-listing .media_hub_part .media-wrapper .blog-slide-btn {
    margin-top: 30px !important;
}

/* Responsive styles for Case Studies Section */
@media screen and (max-width: 1024px) {
    .hire-page-case-studies-section {
        padding: 80px 20px;
    }
    
    .case-studies-section-title {
        font-size: 40px;
        margin-bottom: 18px;
    }
    
    .case-studies-section-subtitle {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    .hire-page-case-studies-section .case-studies-listing .media_hub_part .media-wrapper {
        max-width: calc((100% - 16px) / 2) !important;
    }
}

@media screen and (max-width: 768px) {
    .hire-page-case-studies-section {
        padding: 60px 20px;
    }
    
    .case-studies-section-title {
        font-size: 35px;
        margin-bottom: 15px;
    }
    
    .case-studies-section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .hire-page-case-studies-section .search-bar {
        margin-bottom: 40px;
    }
    
    .hire-page-case-studies-section .search-bar form {
        flex-direction: column;
        gap: 15px;
    }
    
    .hire-page-case-studies-section .case-studies-listing .media_hub_part .media-wrapper {
        max-width: 100% !important;
    }
}

@media screen and (max-width: 576px) {
    .hire-page-case-studies-section {
        padding: 50px 15px;
    }
    
    .case-studies-section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .case-studies-section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .hire-page-case-studies-section .search-bar {
        margin-bottom: 30px;
    }
    
    .hire-page-case-studies-section .search-bar input[type="search"] {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/*-----------------------------------------------------------------------------------*/
/* Case Studies Listing Shortcode - Universal Styles (for WPBakery pages)
/*-----------------------------------------------------------------------------------*/

/* Search bar for case studies shortcode - works with nested wpb_wrapper */
body:not(.media-hub-listing) .wpb_wrapper .search-bar {
    margin-bottom: 60px !important;
}

body:not(.media-hub-listing) .wpb_wrapper .search-bar form {
    display: flex !important;
    gap: 20px !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    align-items: center !important;
}

body:not(.media-hub-listing) .wpb_wrapper .search-bar input[type="search"] {
    flex: 1 !important;
    padding: 9px 20px !important;
    background: transparent !important;
    border: 1px solid #FFFFFF !important;
    border-radius: 5px !important;
    color: #F5EFEB !important;
    font-size: 16px !important;
    font-family: Manrope !important;
}

body:not(.media-hub-listing) .wpb_wrapper .search-bar input[type="search"]::placeholder {
    color: #F5EFEB !important;
    opacity: 0.7 !important;
}

/* When case_studies_listing is used without hire-page-case-studies-section wrapper */
body:not(.media-hub-listing) .wpb_wrapper .search-bar ~ .media_hub_part {
    display: flex !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
}

body:not(.media-hub-listing) .wpb_wrapper .search-bar ~ .media_hub_part .media-wrapper {
    width: 100% !important;
    max-width: calc((100% - 32px) / 3) !important;
    padding: 10px 8px !important;
    border: 1px solid transparent !important;
    transition: all 0.4s ease !important;
}

body:not(.media-hub-listing) .wpb_wrapper .search-bar ~ .media_hub_part .media-wrapper:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(46, 0, 55, 0.2) 100%) !important;
    border: 1px solid #FFFFFF !important;
    backdrop-filter: blur(60px) !important;
    border-radius: 5px !important;
}

body:not(.media-hub-listing) .wpb_wrapper .search-bar ~ .media_hub_part .media-wrapper .blog-slide-main {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

body:not(.media-hub-listing) .wpb_wrapper .search-bar ~ .media_hub_part .media-wrapper .blog-slide-btn {
    margin-top: 30px !important;
}

/* Responsive for WPBakery case studies */
@media screen and (max-width: 1024px) {
    body:not(.media-hub-listing) .wpb_wrapper .search-bar ~ .media_hub_part .media-wrapper {
        max-width: calc((100% - 16px) / 2) !important;
    }
}

@media screen and (max-width: 768px) {
    body:not(.media-hub-listing) .wpb_wrapper .search-bar {
        margin-bottom: 40px !important;
    }
    
    body:not(.media-hub-listing) .wpb_wrapper .search-bar form {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    body:not(.media-hub-listing) .wpb_wrapper .search-bar ~ .media_hub_part .media-wrapper {
        max-width: 100% !important;
    }
}

@media screen and (max-width: 576px) {
    body:not(.media-hub-listing) .wpb_wrapper .search-bar {
        margin-bottom: 30px !important;
    }
    
    body:not(.media-hub-listing) .wpb_wrapper .search-bar input[type="search"] {
        font-size: 14px !important;
        padding: 12px 15px !important;
    }
}

/*-----------------------------------------------------------------------------------*/
/* Team/Partners/Clients Slider Styles
/*-----------------------------------------------------------------------------------*/

.team-slider {
    position: relative;
    overflow: visible;
}

.team-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.team-slider .swiper-slide {
    height: auto;
    display: flex;
    width: 410px !important;
}

/* Team Member Card - outer wrapper with hover effect */
.team-member-wrapper {
    padding: 10px 8px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    height: auto;
}

.team-member-wrapper:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(46, 0, 55, 0.2) 100%);
    border-radius: 8px;
    border: 1px solid #FFFFFF;
}

/* Team Member Card - inner card with background */
.team-member-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-member-card-inner {
    position: relative;
    padding: 40px 30px;
    background: transparent;
    border-radius: 8px;
    text-align: center;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: background 0.4s ease;
}

.team-member-wrapper:hover .team-member-card-inner {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(46, 0, 55, 0.2) 100%), linear-gradient(0deg, rgba(245, 239, 235, 0.4), rgba(245, 239, 235, 0.4));
}

/* Decorative corner borders via SVG - top corners */
.team-member-card-inner::before {
    content: "";
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("/wp-content/uploads/2025/09/down.svg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
    z-index: -1;
}

/* Decorative corner borders via SVG - bottom corners */
.team-member-card-inner::after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background-image: url("/wp-content/uploads/2025/09/up.svg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    z-index: -1;
}

/* Team Member Photo - circular */
.team-member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #FFFFFF;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Team Member Info */
.team-member-info {
    width: 100%;
}

.team-member-name {
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.3;
    color: #D500FF;
    font-weight: 700;
    font-family: Manrope;
    margin-bottom: 10px;
}

.team-member-job-title {
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.4;
    color: #fff;
    font-weight: 400;
    margin-bottom: 15px;
}

.team-member-description {
    font-size: clamp(13px, 1.2vw, 15px);
    line-height: 1.6;
    color: #F5EFEB;
    font-weight: 400;
}

.team-member-description p {
    margin-bottom: 10px;
}

.team-member-description p:last-child {
    margin-bottom: 0;
}

/* Slider Navigation Buttons */
.team-slider-btn {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
}

.team-slider-left-btn,
.team-slider-right-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Responsive styles for Team Slider */
@media screen and (max-width: 1024px) {
    .team-member-card-inner {
        padding: 35px 25px;
    }
    
    .team-member-photo {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }
    
    .team-member-name {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .team-member-job-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 768px) {
    .team-member-card-inner {
        padding: 30px 20px;
    }
    
    .team-member-photo {
        width: 100px;
        height: 100px;
        margin-bottom: 12px;
    }
    
    .team-member-name {
        font-size: 22px;
        margin-bottom: 6px;
    }
    
    .team-member-job-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .team-member-description {
        font-size: 13px;
    }
}

@media screen and (max-width: 576px) {
    .team-member-card-inner {
        padding: 25px 18px;
    }
    
    .team-member-photo {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
        border-width: 2px;
    }
    
    .team-member-name {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .team-member-job-title {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .team-member-description {
        font-size: 12px;
        line-height: 1.5;
    }
}

/*-----------------------------------------------------------------------------------*/
/* Hire Page - Team/Partners/Clients Section Styles
/*-----------------------------------------------------------------------------------*/

.hire-page-team-section {
    position: relative;
    padding: 100px 20px;
    background-color: #000000;
    text-align: center;
    overflow: hidden;
}

.hire-page-team-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.team-section-title {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    font-family: Manrope;
    margin-bottom: 20px;
    text-align: center;
}

.team-section-subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.4;
    color: #F5EFEB;
    margin-bottom: 60px;
    font-weight: 400;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-members-listing {
    width: 100%;
    position: relative;
}

/* Team Section Button */
.team-button-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

/* Responsive styles for Team Section */
@media screen and (max-width: 1024px) {
    .hire-page-team-section {
        padding: 80px 20px;
    }
    
    .team-section-title {
        font-size: 40px;
        margin-bottom: 18px;
    }
    
    .team-section-subtitle {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    .team-button-wrapper {
        margin-top: 50px;
    }
}

@media screen and (max-width: 768px) {
    .hire-page-team-section {
        padding: 60px 20px;
    }
    
    .team-section-title {
        font-size: 35px;
        margin-bottom: 15px;
    }
    
    .team-section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .team-button-wrapper {
        margin-top: 40px;
    }
}

@media screen and (max-width: 576px) {
    .hire-page-team-section {
        padding: 50px 15px;
    }
    
    .team-section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .team-section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .team-button-wrapper {
        margin-top: 30px;
    }
}

/*-----------------------------------------------------------------------------------*/
/* Hire Page - FAQ Section Styles
/*-----------------------------------------------------------------------------------*/

.hire-page-faq-section {
    position: relative;
    padding: 100px 20px;
    background-color: #000000;
    text-align: center;
    overflow: hidden;
}

.hire-page-faq-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-section-title {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 400;
    color: #F5EFEB;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: #F5EFEB;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Content Grid - 2 columns */
.faq-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    text-align: left;
}

/* FAQ Accordion Wrapper */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item Wrapper - base styles from job-type-wrapper */
.faq-item-wrapper {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* FAQ Item Inner - base styles from job-type-inner-content */
.faq-item-inner {
    padding: 20px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(46, 0, 55, 0.05) 100%);
    border: 1px solid #f5efeb63;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Active/Open state - enhanced styles like :nth-child(1) */
.faq-item-wrapper.active .faq-item-inner {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(46, 0, 55, 0.2) 100%);
    border: 1px solid #F5EFEB;
}

/* FAQ Question */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question h3 {
    font-family: Manrope;
    font-weight: 400;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 130%;
    color: #F5EFEB;
    margin: 0;
    flex: 1;
}

/* FAQ Toggle Icon */
.faq-toggle-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.faq-toggle-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

/* Show plus by default, hide minus */
.faq-item-wrapper .icon-plus {
    opacity: 1;
}

.faq-item-wrapper .icon-minus {
    opacity: 0;
}

/* Show minus when active, hide plus */
.faq-item-wrapper.active .icon-plus {
    opacity: 0;
}

.faq-item-wrapper.active .icon-minus {
    opacity: 1;
}

/* Text-based icons (fallback) */
.faq-toggle-icon span {
    font-size: 28px;
    font-weight: 300;
    color: #F5EFEB;
    line-height: 1;
}

/* FAQ Answer */
.faq-answer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f5efeb33;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-answer p {
    font-family: Manrope;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #F5EFEB;
    margin: 0 0 12px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* FAQ CTA Card */
.faq-cta-card {
    background: transparent;
    border: 2px solid #F5EFEB;
    border-radius: 8px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.faq-cta-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.faq-cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-cta-title {
    font-family: Manrope;
    font-weight: 600;
    font-size: clamp(28px, 3vw, 36px);
    color: #F5EFEB;
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-cta-subtitle {
    font-family: Manrope;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #F5EFEB;
    margin-bottom: 30px;
    opacity: 0.9;
}

.faq-cta-button-wrapper {
    width: 100%;
}

.faq-cta-button-wrapper a {
    display: inline-block;
    width: 100%;
}

/* Responsive styles for FAQ Section */
@media screen and (max-width: 1024px) {
    .hire-page-faq-section {
        padding: 80px 20px;
    }
    
    .faq-section-title {
        font-size: 40px;
        margin-bottom: 18px;
    }
    
    .faq-section-subtitle {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    .faq-content-grid {
        grid-template-columns: 1fr 340px;
        gap: 30px;
    }
    
    .faq-cta-card {
        padding: 40px 25px;
    }
}

@media screen and (max-width: 768px) {
    .hire-page-faq-section {
        padding: 60px 20px;
    }
    
    .faq-section-title {
        font-size: 35px;
        margin-bottom: 15px;
    }
    
    .faq-section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .faq-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-cta-card {
        position: static;
        padding: 40px 30px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    .faq-item-inner {
        padding: 18px 20px;
    }
}

@media screen and (max-width: 576px) {
    .hire-page-faq-section {
        padding: 50px 15px;
    }
    
    .faq-section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .faq-section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .faq-cta-card {
        padding: 35px 20px;
    }
    
    .faq-cta-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .faq-cta-title {
        font-size: 24px;
    }
    
    .faq-cta-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    .faq-item-inner {
        padding: 16px 18px;
    }
}

/*-----------------------------------------------------------------------------------*/
/* Hire Page - Blog Section Styles
/*-----------------------------------------------------------------------------------*/

.hire-page-blog-section {
    position: relative;
    padding: 100px 20px;
    background-color: #000000;
    text-align: center;
    overflow: hidden;
}

.hire-page-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blog-section-title {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    font-family: Manrope;
    margin-bottom: 20px;
    text-align: center;
}

.blog-section-subtitle {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.4;
    color: #F5EFEB;
    margin-bottom: 60px;
    font-weight: 400;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-listing {
    width: 100%;
}

/* Search bar styles */
.hire-page-blog-section .search-bar {
    margin-bottom: 60px;
}

.hire-page-blog-section .search-bar form {
    display: flex;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
}

.hire-page-blog-section .search-bar input[type="search"] {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    color: #F5EFEB;
    font-size: 16px;
    font-family: Manrope;
}

.hire-page-blog-section .search-bar input[type="search"]::placeholder {
    color: #F5EFEB;
    opacity: 0.7;
}

/* Blog slider specific styles */
.hire-page-blog-section .blog-slider {
    padding: 30px 15px;
}

.hire-page-blog-section .blog-slider .swiper-wrapper {
    padding-bottom: 50px;
}

/* Blog card hover effects in context of hire page */
.hire-page-blog-section .blog-slider-wrapper {
    position: relative;
    padding: 16px 8px;
    z-index: 1;
}

.hire-page-blog-section .blog-slide-main {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
}

.hire-page-blog-section .blog-slider-wrapper:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(46, 0, 55, 0.2) 100%);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(60px);
    border-radius: 5px;
}

/* Blog slider navigation buttons */
.hire-page-blog-section .slider-btn-main {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

/* Responsive styles for Blog Section */
@media screen and (max-width: 1024px) {
    .hire-page-blog-section {
        padding: 80px 20px;
    }
    
    .blog-section-title {
        font-size: 40px;
        margin-bottom: 18px;
    }
    
    .blog-section-subtitle {
        font-size: 18px;
        margin-bottom: 50px;
    }
    
    .hire-page-blog-section .blog-slide-main {
        gap: 30px;
    }
    
    .hire-page-blog-section .search-bar {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 768px) {
    .hire-page-blog-section {
        padding: 60px 20px;
    }
    
    .blog-section-title {
        font-size: 35px;
        margin-bottom: 15px;
    }
    
    .blog-section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .hire-page-blog-section .blog-slider {
        padding: 20px 15px;
    }
    
    .hire-page-blog-section .blog-slider .swiper-wrapper {
        padding-bottom: 35px;
    }
    
    .hire-page-blog-section .search-bar {
        margin-bottom: 40px;
    }
    
    .hire-page-blog-section .search-bar form {
        flex-direction: column;
        gap: 15px;
    }
}

@media screen and (max-width: 576px) {
    .hire-page-blog-section {
        padding: 50px 15px;
    }
    
    .blog-section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .blog-section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .hire-page-blog-section .search-bar {
        margin-bottom: 30px;
    }
    
    .hire-page-blog-section .search-bar input[type="search"] {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/*-----------------------------------------------------------------------------------*/
/* Job Search Page Styles - task-6-8-*stanislav
/*-----------------------------------------------------------------------------------*/

/* Fix Sort dropdown alignment */
body.job-search-page .job-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

body.job-search-page .job-sort label {
    margin: 0;
    font-family: Manrope;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
}

body.job-search-page .job-sort option {
    margin: 0;
    font-family: Manrope;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

/*-----------------------------------------------------------------------------------*/
/* Header Contact Us Button CTA Styles - task-6-8-*stanislav
/*-----------------------------------------------------------------------------------*/

/* Contact Us button - CTA border and structure */
body.job-search-page .header-main nav#site-navigation ul li:last-child a .bb_button.bb_button--corner.bb_button--alt:nth-child(1) {
    border: 1px solid #F5EFEB !important;
    border-radius: 2px !important;
    padding: 4px !important;
    display: flex !important;
    background-color: transparent !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

/* Contact Us text with decorative corners */
body.job-search-page .header-main nav#site-navigation ul li:last-child a .bb_button.bb_button--corner.bb_button--alt:nth-child(1) .bb_button__text {
    padding: 8.5px 9px !important;
    position: relative !important;
    width: 100% !important;
    text-align: center !important;
}

/* Left corner (::before) */
body.job-search-page .header-main nav#site-navigation ul li:last-child a .bb_button.bb_button--corner.bb_button--alt:nth-child(1) .bb_button__text:before {
    content: "" !important;
    position: absolute !important;
    display: inline-block !important;
    background-image: url("/wp-content/uploads/2025/09/left.svg") !important;
    height: 100% !important;
    width: 5px !important;
    background-repeat: no-repeat !important;
    top: 0 !important;
    left: 0 !important;
    background-position: left !important;
    transition: all 0.3s ease !important;
}

/* Right corner (::after) */
body.job-search-page .header-main nav#site-navigation ul li:last-child a .bb_button.bb_button--corner.bb_button--alt:nth-child(1) .bb_button__text:after {
    content: "" !important;
    position: absolute !important;
    display: inline-block !important;
    background-image: url("/wp-content/uploads/2025/09/right.svg") !important;
    height: 100% !important;
    width: 5px !important;
    background-repeat: no-repeat !important;
    top: 0 !important;
    right: 0 !important;
    background-position: right !important;
    transition: all 0.3s ease !important;
}

/* Second span (plus icon) - must be visible */
body.job-search-page .header-main nav#site-navigation ul li:last-child a .bb_button.bb_button--corner.bb_button--alt:nth-child(2) {
    width: 43px !important;
    border: 1px solid #F5EFEB !important;
    border-radius: 2px !important;
    padding: 4px !important;
    display: flex !important;
    background-color: transparent !important;
    transition: all 0.3s ease !important;
}

body.job-search-page .header-main nav#site-navigation ul li:last-child a .bb_button.bb_button--corner.bb_button--alt:nth-child(2) .bb_button__text {
    background-image: url("/wp-content/uploads/2025/09/Group-1.svg") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    height: 100% !important;
}

/*-----------------------------------------------------------------------------------*/
/* Job Search Page - Loading Spinner - task-6-8-*stanislav
/*-----------------------------------------------------------------------------------*/

/* Loading container */
.loading-jobs {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    padding: 40px 20px;
}

/* Loader spinner with gradient colors */
.loader {
    font-size: 55px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    overflow: hidden;
    transform: translateZ(0);
    animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

/* Spinner animation with gradient: white → transparent */
@keyframes mltShdSpin {
    0% {
        box-shadow: 
            0 -0.83em 0 -0.4em rgba(255, 255, 255, 1),
            0 -0.83em 0 -0.42em rgba(255, 255, 255, 0.8),
            0 -0.83em 0 -0.44em rgba(255, 255, 255, 0.6),
            0 -0.83em 0 -0.46em rgba(255, 255, 255, 0.3),
            0 -0.83em 0 -0.477em rgba(255, 255, 255, 0.1);
    }
    5%,
    95% {
        box-shadow: 
            0 -0.83em 0 -0.4em rgba(255, 255, 255, 1),
            0 -0.83em 0 -0.42em rgba(255, 255, 255, 0.8),
            0 -0.83em 0 -0.44em rgba(255, 255, 255, 0.6),
            0 -0.83em 0 -0.46em rgba(255, 255, 255, 0.3),
            0 -0.83em 0 -0.477em rgba(255, 255, 255, 0.1);
    }
    10%,
    59% {
        box-shadow: 
            0 -0.83em 0 -0.4em rgba(255, 255, 255, 1),
            -0.087em -0.825em 0 -0.42em rgba(255, 255, 255, 0.8),
            -0.173em -0.812em 0 -0.44em rgba(255, 255, 255, 0.6),
            -0.256em -0.789em 0 -0.46em rgba(255, 255, 255, 0.3),
            -0.297em -0.775em 0 -0.477em rgba(255, 255, 255, 0.1);
    }
    20% {
        box-shadow: 
            0 -0.83em 0 -0.4em rgba(255, 255, 255, 1),
            -0.338em -0.758em 0 -0.42em rgba(255, 255, 255, 0.8),
            -0.555em -0.617em 0 -0.44em rgba(255, 255, 255, 0.6),
            -0.671em -0.488em 0 -0.46em rgba(255, 255, 255, 0.3),
            -0.749em -0.34em 0 -0.477em rgba(255, 255, 255, 0.1);
    }
    38% {
        box-shadow: 
            0 -0.83em 0 -0.4em rgba(255, 255, 255, 1),
            -0.377em -0.74em 0 -0.42em rgba(255, 255, 255, 0.8),
            -0.645em -0.522em 0 -0.44em rgba(255, 255, 255, 0.6),
            -0.775em -0.297em 0 -0.46em rgba(255, 255, 255, 0.3),
            -0.82em -0.09em 0 -0.477em rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 
            0 -0.83em 0 -0.4em rgba(255, 255, 255, 1),
            0 -0.83em 0 -0.42em rgba(255, 255, 255, 0.8),
            0 -0.83em 0 -0.44em rgba(255, 255, 255, 0.6),
            0 -0.83em 0 -0.46em rgba(255, 255, 255, 0.3),
            0 -0.83em 0 -0.477em rgba(255, 255, 255, 0.1);
    }
}

/* Rotation animation */
@keyframes round {
    0% { 
        transform: rotate(0deg);
    }
    100% { 
        transform: rotate(360deg);
    }
}

/* Scroll to top — Partnership only, shown when scrolled down */
.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #F5EFEB;
    background-color: #2E0037;
    color: #F5EFEB;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
}
body.partnership-page .scroll-to-top {
    display: flex;
}
body.partnership-page .scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top:hover {
    transform: scale(1.05);
}
.scroll-to-top:focus {
    outline: 2px solid #F5EFEB;
    outline-offset: 2px;
}
.scroll-to-top svg {
    flex-shrink: 0;
}
