/* -------------------------------------------------------------- */
/* Base Typography & Layout
----------------------------------------------------------------- */
body {
    color: #666;
    font-size: 16px;
    line-height: 27px;
    background-color: #fff;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body p {
    font-size: 16px;
    line-height: 27px;
}

h1, h2, h3, h4, h5, h6 {
    color: #333;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 16px;
}

a {
    color: #66676b;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #333;
}

/* -------------------------------------------------------------- */
/* Header & Wrapper
----------------------------------------------------------------- */
#header {
    position: relative;
    z-index: 999;
    padding: 0;
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.12);
    font-size: 16px;
    height: 82px;
    background-color: #fff;
    transition: background 0.3s;
}

#header .container,
#header .right-side,
#header .left-side {
    height: 100%;
}

#header .container {
    position: relative;
}

#header-container {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header.fullwidth .container {
    max-width: 100%;
    margin: 0;
    padding: 0 35px;
}

#wrapper {
    padding-top: 82px;
}

/* Logo */
#logo {
    display: inline-block;
    border-right: 1px solid #e0e0e0;
    height: 100%;
    vertical-align: top;
    padding-right: 35px;
    margin-right: 20px;
}

#logo img {
    height: 42px;
    width: auto;
    top: 50%;
    position: relative;
    transform: translate3d(0, -50%, 0);
}

/* Header Left/Right Sides */
#header .left-side {
    float: left;
    width: 100%;
    display: flex;
    position: relative;
    flex: 1;
    justify-content: space-between;
    align-items: center;
}

#header .right-side {
    float: right;
    text-align: right;
    width: auto;
    display: inline-block;
    position: absolute;
    right: 25px;
    background-color: #fff;
    flex: 1;
    top: 0;
}

/* Navigation */
#navigation {
    position: relative;
    display: inline-block;
    margin-top: 22px;
}

#navigation ul {
    list-style: none;
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
}

#navigation ul a {
    display: block;
    text-decoration: none;
    padding: 5px 0;
}

#navigation ul li {
    position: relative;
    float: left;
    margin: 0 5px;
    padding: 0;
    transition: all 0.25s;
    border-radius: 4px;
}

#navigation ul li a,
#navigation ul ul li a {
    color: #666;
    cursor: pointer;
    line-height: 23px;
    padding: 7px 9px;
}

#navigation ul li:hover a {
    color: #66676b;
}

#navigation ul li a.current {
    color: #66676b;
}

/* Dropdown Styles */
#navigation ul ul {
    background-color: #303030;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 9px;
    padding: 0;
    z-index: 99999;
}

#navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

#navigation ul ul li {
    width: 208px;
    float: none;
    margin: 0;
    padding: 0 6px;
    border-radius: 0;
    font-size: 15.7px;
}

#navigation ul ul li a {
    transition: 0.3s;
    color: #aaa;
    padding: 4px 40px 4px 15px !important;
    line-height: 22px !important;
}

#navigation ul ul li:hover a {
    color: #fff;
}

/* Header Widgets */
.header-widget {
    display: inline-block;
    height: 100%;
    border-left: 1px solid #e0e0e0;
    padding: 0 30px;
    text-align: left;
    float: left;
}

.header-widget:last-of-type {
    padding-right: 0;
    margin-right: -5px;
}

.header-widget .log-in-button {
    padding: 10px 0;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
    color: #666;
    display: block;
    margin: 0 -3px;
}

.header-widget .log-in-button i {
    font-size: 18px;
    line-height: 0;
    position: relative;
    top: 2px;
    margin-right: 4px;
    margin-left: -1px;
    color: #777;
    transition: 0.3s;
}

.header-widget .log-in-button:hover,
.header-widget .log-in-button:hover i {
    color: #66676b;
}

/* Post a Job Link */
.post-a-job-link {
    display: inline-block;
    padding: 5px 10px;
    background-color: #3343D6;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.post-a-job-link:hover {
    background-color: #2a36b5;
    color: #fff;
}

/* Responsive Header */
@media (max-width: 1099px) {
    #wrapper {
        padding-top: 0 !important;
    }
    
    #header {
        height: 50px;
    }
    
    #header-container {
        position: relative !important;
    }
    
    #logo {
        border: none;
    }
    
    #logo img {
        border: none;
        max-width: 100px;
        height: auto;
    }
    
    #header .right-side {
        position: absolute;
        width: auto;
        background-color: #fff;
        text-align: left;
    }
    
    .header-widget {
        padding: 0 25px;
    }
    
    #header .right-side .header-widget {
        border-right: 1px solid #e0e0e0;
        margin-right: -1px;
    }

    header.fullwidth .container {
        padding: 0 20px;
    }
}

/* -------------------------------------------------------------- */
/* Footer
----------------------------------------------------------------- */
#footer {
    background-color: #303030;
    color: #c0c0c0;
}

#footer p {
    line-height: 26px;
}

#footer a {
    color: #c0c0c0;
}

#footer a:hover {
    color: #fff;
}

#footer h3,
#footer h2,
.footer-links h3 {
    font-size: 18px;
    color: #fff;
    margin: 0 0 15px 0;
    padding: 0;
    display: block;
}

#footer h3 i {
    position: relative;
    margin-right: 5px;
    top: 2px;
    font-size: 20px;
    font-weight: 400 !important;
}

.footer-top-section {
    border-bottom: 1px solid #484848;
}

.footer-top-section .footer-logo img {
    max-height: 46px;
}

.footer-rows-container {
    display: block;
    height: 96px;
    position: relative;
    z-index: 100;
}

.footer-row {
    display: inline-block;
    padding: 0 40px;
    border-right: 1px solid #484848;
    border-left: 1px solid #484848;
    float: left;
    height: 100%;
}

.footer-row-inner {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.footer-row-inner.footer-logo {
    position: relative;
    top: auto;
    transform: translateY(0);
    top: 50%;
    position: relative;
    height: 46px;
}

.footer-row-inner.footer-logo img {
    position: relative;
    top: 50%;
}

.footer-row:first-child {
    padding-left: 0;
    border-left: none;
}

.footer-row:last-child {
    padding-right: 0;
    border: none;
}

.footer-rows-right .footer-row:first-child {
    padding-left: 40px;
    border-left: 1px solid #484848;
}

.footer-rows-right {
    float: right;
    height: 100%;
}

.footer-social-links {
    list-style: none;
    margin: 0 -10px;
    margin-top: 3px;
    padding: 0;
}

.footer-social-links li {
    display: inline-block;
    padding: 0;
    margin: 0;
    float: left;
}

.footer-social-links li a,
.footer-social-links li button {
    font-size: 20px;
    padding: 0 10px;
    color: #fff;
    display: inline-block;
    transition: 0.3s;
    opacity: 0.5;
    transform: translate3d(0, -0.5px, 0);
    background-color: transparent;
    box-shadow: none;
    border: none;
}

.footer-social-links li a:hover,
.footer-social-links li button:hover {
    opacity: 1;
    cursor: pointer;
    color: #fff;
    background-color: transparent;
}

/* Footer Middle Section */
.footer-middle-section {
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.footer-links ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0;
    display: block;
}

.footer-links ul li:first-child a {
    padding-top: 0;
}

.footer-links ul li:last-child a {
    padding-bottom: 0;
}

.footer-links ul li a {
    color: #c0c0c0;
    display: block;
    line-height: 25px;
    position: relative;
    z-index: 100;
    padding: 4px 0;
}

.footer-links ul li a span {
    display: inline-block;
    position: relative;
}

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

.footer-links ul li a span:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #66676b;
    height: 2px;
    display: block;
    transition: all 0.25s, opacity 0.2s;
    z-index: -1;
    border-radius: 3px;
    opacity: 0.5;
    width: 0;
}

.footer-links ul li a:hover span:before {
    width: 100%;
    opacity: 1;
}

/* Footer Bottom Section */
.footer-bottom-section {
    padding: 62px 0;
    border-top: 1px solid #484848;
    text-align: center;
}

.footer-bottom-section strong {
    color: #fff;
    font-weight: 500;
}

/* Footer Media Queries */
@media (max-width: 992px) {
    #footer h3 {
        margin-top: 45px;
    }
    
    .footer-middle-section {
        padding-top: 0;
        padding-bottom: 45px;
    }

    .single-page-header .header-image img {
        height: 100%;
    }
}

/* -------------------------------------------------------------- */
/* Industry Chips (Company Details)
----------------------------------------------------------------- */
.industry-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.industry-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #ebf2fc;
    border-radius: 16px;
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* -------------------------------------------------------------- */
/* Titlebar (Company List Page)
----------------------------------------------------------------- */
#titlebar {
    background-color: #f8f8f8;
    position: relative;
    padding: 15px 0;
    margin-bottom: 30px;
}

#titlebar.gradient {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 0%, rgba(255, 255, 255, 0));
    padding-bottom: 0;
}

#titlebar .container {
    position: relative;
    min-height: 40px;
}

#titlebar h1,
#titlebar h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 1px 0 3px 0;
    padding-right: 250px;
}

/* Breadcrumbs */
#breadcrumbs {
    position: absolute;
    right: 15px;
    display: inline-block;
    font-size: 14.7px;
    top: 50%;
    transform: translateY(-51%);
    border-radius: 4px;
    font-weight: 600;
    color: #333;
    background-color: #f0f0f0;
    white-space: nowrap;
}

#breadcrumbs ul {
    margin: 0;
    padding: 12px 22px;
    line-height: 23px;
    white-space: nowrap;
}

#breadcrumbs ul li {
    display: inline-block;
    list-style: none;
    margin: 0 0 0 7px;
}

#breadcrumbs ul li:first-child {
    margin-left: 0;
}

#breadcrumbs ul li:first-child:before {
    display: none;
}

#breadcrumbs ul li:before {
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #aaa;
    font-size: 14px;
    margin-right: 12px;
}

#breadcrumbs ul li a {
    transition: all 0.2s ease-in-out;
    color: #666;
    font-weight: 500;
}

#breadcrumbs ul li a:hover {
    color: #66676b;
}

#breadcrumbs ul li.home-icon a {
    opacity: 1;
    font-size: 24px;
    top: 4px;
    position: relative;
    line-height: 0;
    padding: 0;
    display: inline-block;
}

#breadcrumbs ul li.home-icon i {
    line-height: 0;
}

/* Dark Style */
#breadcrumbs.dark {
    color: rgba(255, 255, 255, 1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    background-color: #333;
}

#breadcrumbs.dark ul li a,
#breadcrumbs.dark ul li a:hover {
    color: rgba(255, 255, 255, 1);
}

#breadcrumbs.dark ul li:before {
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

/* White Style */
#breadcrumbs.white {
    color: #333;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

#breadcrumbs.white ul li a {
    color: #666;
}

#breadcrumbs.white ul li a:hover {
    color: #66676b;
}

#breadcrumbs.white ul li:before {
    border-left: 4px solid rgba(0, 0, 0, 0.3);
}

/* Schema.org breadcrumb meta handling */
#titlebar #breadcrumbs span {
    font-size: 14px;
}

#titlebar #breadcrumbs span.schema-name {
    font-size: inherit;
    display: inline;
    all: unset;
}

/* Responsive Breadcrumbs */
@media (max-width: 992px) {
    #breadcrumbs {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        margin-top: 15px;
        display: inline-block;
        white-space: normal;
    }
    
    #breadcrumbs ul {
        white-space: normal;
    }
    
    #titlebar h1,
    #titlebar h2 {
        padding-right: 0;
    }
}

/* -------------------------------------------------------------- */
/* Single Page Header (Company Page)
----------------------------------------------------------------- */
.single-page-header {
    margin-bottom: 25px;
    padding: 60px 0;
    position: relative;
}

.single-page-header .container {
    z-index: 100;
    position: relative;
}

.single-page-header:after,
.single-page-header:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 15;
    background: linear-gradient(to right, rgba(247, 247, 247, 1) 50%, rgba(247, 247, 247, 0.8) 70%, rgba(247, 247, 247, 0.8) 90%);
}

.single-page-header:after {
    z-index: 5;
    background-color: #f7f7f7;
}

.single-page-header .single-page-header-inner {
    display: flex;
}

.single-page-header .left-side,
.single-page-header .right-side {
    flex: 1;
    display: flex;
    align-items: center;
}

.single-page-header .left-side {
    padding-right: 30px;
}

/* Header Image */
.single-page-header .header-image {
    height: 140px;
    flex: 0 0 140px;
    margin-right: 35px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
}

.single-page-header .header-image img {
    align-self: center;
    transform: translate3d(0, 0, 0);
    max-width: 100px;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Header Details */
.single-page-header .header-details {
    flex: 1;
}

.single-page-header .header-details h3 {
    color: #333;
    font-size: 26px;
    margin: 0 0 12px 0;
    padding: 0;
    line-height: 36px;
    position: relative;
    display: inline-block;
}

.single-page-header .header-details ul {
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 24px;
    margin-bottom: -7px;
}

.single-page-header .header-details li {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 12px;
}

.single-page-header .header-details li:last-child {
    margin-right: 0;
}

.single-page-header .header-details li span {
    color: #666;
    cursor: pointer;
}

.single-page-header .header-details li span:hover {
    color: #333;
}

.single-page-header .header-details li i {
    font-size: 20px;
    position: relative;
    top: 2px;
    margin-right: 2px;
}

.external-link {
    cursor: pointer;
}

.external-link.company-link:hover {
    color: #2a41e8;
}

/* -------------------------------------------------------------- */
/* Content Sections
----------------------------------------------------------------- */
.content-right-offset {
    padding-right: 30px;
}

.single-page-section {
    margin-bottom: 55px;
    display: block;
    padding-left: 15px;
    padding-right: 15px;
}

.single-page-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.single-page-section p:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* -------------------------------------------------------------- */
/* Job Listings
----------------------------------------------------------------- */
.listings-container {
    position: relative;
}

.job-listing {
    display: block;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    margin-bottom: 35px;
    transition: 0.3s;
    position: relative;
    text-decoration: none;
}

.job-listing:hover {
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.14);
    text-decoration: none;
}

.job-listing h3,
.job-listing h2,
.job-listing h3.job-listing-title,
.job-listing h2.job-listing-title {
    text-decoration: none;
}

a.job-listing,
a.job-listing:hover {
    text-decoration: none;
}

.job-listing-details {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 15px;
    padding-bottom: 32px;
}

.job-listing .job-listing-description {
    flex: 1;
    padding-top: 3px;
}

.job-listing h3.job-listing-title,
.job-listing h2.job-listing-title {
    font-size: 20px;
    color: #333;
    line-height: 30px;
}

.job-listing .job-listing-footer {
    padding: 0 15px 10px 15px;
    border-radius: 0 0 4px 4px;
    position: relative;
    display: flex;
}

.job-listing .job-listing-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-listing .job-listing-footer ul li {
    display: inline-block;
    margin-right: 14px;
    color: #777;
}

.job-listing .job-listing-footer ul li:last-child {
    margin-right: 0;
}

.job-listing .job-listing-footer ul li i {
    position: relative;
    top: 1px;
    margin-right: 3px;
    color: #777;
}

/* Job Tags */
.job-tags-container {
    display: inline-block;
}

.job-tags {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-tags li {
    display: inline-block;
    margin-right: 5px;
}

.job-tags li.tag {
    display: inline-block;
}

.job-tags li.tag label {
    margin: 0;
    padding: 0;
}

.job-seniority-badge {
    display: inline-block;
    font-size: 14.7px;
    font-weight: 600;
    border-radius: 4px;
    background-color: #E0E0E0;
    color: #333;
    padding: 6px 15px;
    margin: 0;
    line-height: 24px;
    transition: 0.3s;
    text-decoration: none;
}

.job-seniority-badge:hover {
    background-color: #D0D0D0;
}

a.job-seniority-badge {
    color: #333;
    text-decoration: none;
}

a.job-seniority-badge:hover {
    color: #333;
    text-decoration: none;
}

/* Compact List Layout */
.compact-list-layout {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.compact-list-layout .job-listing {
    box-shadow: none;
    margin-bottom: 0;
    padding: 30px 35px;
    padding-right: 80px;
    border-radius: 0;
    position: relative;
}

.compact-list-layout .job-listing:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: #66676b;
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: 0.3s;
}

.compact-list-layout .job-listing:hover:before {
    opacity: 1;
}

.compact-list-layout .job-listing:hover {
    transform: none;
}

.compact-list-layout .job-listing:last-of-type {
    border-radius: 0 0 3px 3px;
    overflow: hidden;
}

.compact-list-layout .job-listing:first-of-type {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.compact-list-layout .job-listing h3 {
    font-size: 18px;
    line-height: 28px;
}

.compact-list-layout .job-listing:nth-child(2n) {
    background-color: #fafafa;
}

.compact-list-layout .job-listing .job-listing-footer {
    background-color: transparent;
    padding: 0;
    margin-top: 3px;
}

.compact-list-layout .job-listing-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    top: 0;
}

/* -------------------------------------------------------------- */
/* Boxed List
----------------------------------------------------------------- */
.boxed-list {
    margin-top: 10px;
    display: block;
}

.boxed-list-headline {
    background-color: #f2f2f2;
    border-radius: 4px;
    padding: 20px 35px;
}

.boxed-list-headline h3 {
    font-size: 18px;
}

.boxed-list-headline h3 i {
    color: #66676b;
    font-size: 24px;
    position: relative;
    top: 3px;
    margin-right: 5px;
}

.boxed-list .compact-list-layout {
    box-shadow: none;
    margin-top: 0;
}

.boxed-list .compact-list-layout .job-listing:hover {
    border-left: none;
}

.boxed-list .compact-list-layout .job-listing:first-of-type {
    border-radius: 0;
}

/* -------------------------------------------------------------- */
/* Load More Button
----------------------------------------------------------------- */
.centered-button {
    text-align: center;
    display: block;
}

.centered-button .button {
    margin: 0 auto;
}

span.button,
button.button,
input[type="button"],
input[type="submit"],
a.button {
    background-color: #66676b;
    top: 0;
    padding: 10px 20px;
    line-height: 24px;
    color: #fff;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(102, 103, 107, 0.15);
}

.button i {
    font-size: 18px;
    position: relative;
    top: 2px;
    margin-left: 3px;
}

.button i[class^="icon-feather"] {
    font-size: 16px;
    height: 0;
    width: 16px;
    line-height: 0;
    top: 2px;
    position: relative;
    display: inline-block;
    margin-left: 3px;
}

.button i[class^="icon-material"] {
    font-size: 18px;
    height: 0;
    width: 18px;
    line-height: 0;
    top: 2px;
    position: relative;
    display: inline-block;
    margin-left: 3px;
}

.button-sliding-icon {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-left: 20px;
    padding-right: 10px;
}

.button-sliding-icon i {
    opacity: 0;
    max-width: 0;
    transition: 0.25s;
    display: inline-block;
    transform: translateX(-20px);
}

.button-sliding-icon:hover i {
    max-width: 20px;
    opacity: 1;
    transform: translateX(0);
}

/* -------------------------------------------------------------- */
/* Letters List (Company List Page)
----------------------------------------------------------------- */
.letters-list {
    width: 100%;
    background-color: #f4f4f4;
    text-align: center;
    border-radius: 4px;
    padding: 0px;
}

.letters-list a {
    display: inline-block;
    font-size: 18px;
    color: #333;
    height: 40px;
    width: 40px;
    line-height: 40px;
    transition: 0.3s;
    margin: 0 -2px;
    border-radius: 4px;
    text-decoration: none;
}

.letters-list a:hover {
    text-decoration: none;
}

.letters-list a.current {
    color: #fff;
    font-weight: 600;
    background-color: #66676b;
    box-shadow: 0 2px 8px rgba(102, 103, 107, 0.25);
}

.letters-list a:hover {
    color: #fff;
    background-color: #333;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* -------------------------------------------------------------- */
/* Companies List
----------------------------------------------------------------- */
.companies-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    width: calc(100% + 30px);
}

.companies-list .company {
    width: calc(33.3% - 30px);
    margin: 0 30px 30px 0;
    flex-grow: 1;
    text-align: center;
    padding: 50px 0;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-decoration: none;
}

.companies-list .company:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.companies-list .company .company-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.companies-list .company img {
    max-width: 120px;
    max-height: 60px;
    display: inline-block;
    margin: 0;
    transform: translate3d(0, 0, 0);
}

.companies-list .company h4 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
    display: block;
    text-decoration: none;
}

.companies-list .company span {
    color: #888;
}

.company-not-rated {
    border-radius: 4px;
    background-color: #f0f0f0;
    color: #888;
    font-size: 14px;
    line-height: 15px;
    font-weight: 600;
    padding: 7px 9px;
    display: inline-block;
    margin-top: 8px;
    text-align: center;
}

.company-inner-alignment {
    display: block;
}

/* -------------------------------------------------------------- */
/* Utility Classes
----------------------------------------------------------------- */
.margin-bottom-25 {
    margin-bottom: 25px !important;
}

.margin-bottom-35 {
    margin-bottom: 35px !important;
}

.margin-bottom-60 {
    margin-bottom: 60px !important;
}

.margin-top-35 {
    margin-top: 35px !important;
}

/* -------------------------------------------------------------- */
/* Responsive Media Queries
----------------------------------------------------------------- */
@media (max-width: 1366px) {
    .single-page-header .header-image {
        height: 120px;
        flex: 0 0 120px;
    }
    
    .letters-list a {
        font-size: 16px;
        height: 36px;
        width: 36px;
        line-height: 36px;
        margin: 0 -1px;
    }
}

@media (max-width: 992px) {
    .single-page-header .single-page-header-inner {
        display: block;
    }
    
    .single-page-header .left-side {
        display: block;
        padding-right: 0;
    }
    
    .single-page-header .header-image {
        height: 70px;
        width: auto;
        padding: 15px 20px;
        margin: 15px 0;
        display: inline-block;
    }
    
    .single-page-header { 
        padding: 35px 0; 
    }
    
    .content-right-offset {
        padding-right: 15px;
    }
    
    .companies-list .company {
        width: calc(50% - 30px);
    }

    .single-page-header .header-details h3 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .single-page-header:after,
    .single-page-header:before {
        background: #f7f7f7;
    }
    
    .companies-list .company {
        width: calc(100% - 30px);
    }
    
    .job-listing .job-listing-title {
        padding-right: 10%;
    }
}

/* -------------------------------------------------------------- */
/* Job Statistics Section
----------------------------------------------------------------- */
.job-stats-list {
    background: #f9f9f9;
    border-radius: 4px;
    padding: 20px;
}

.stats-header {
    display: flex;
    align-items: center;
    padding: 0 0 10px 0;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.stats-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    min-width: 30px;
    margin-right: 10px;
}

.stats-label {
    margin-left: auto;
    margin-right: 15px;
    min-width: 50px;
    text-align: right;
}

.stats-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size: 16px;
}

.stats-item:last-child {
    border-bottom: none;
}

.stats-number {
    font-weight: 600;
    color: #666;
    min-width: 30px;
    margin-right: 10px;
}

.stats-name {
    flex: 1;
    color: #333;
    font-weight: 500;
}

/* Stats item link styling */
.stats-name-link {
    flex: 1;
    text-decoration: none;
    color: #595959;
    transition: 0.3s;
    display: flex;
    cursor: pointer;
    font-size: 16px;
    font-weight: normal;
}

.stats-name-link:hover {
    color: #333;
    text-decoration: none;
}

.stats-name-link:hover .stats-name {
    color: #333;
}

.stats-count {
    font-weight: 600;
    color: #333;
    margin-right: 15px;
    min-width: 50px;
    text-align: right;
}

.stats-percentage {
    color: #888;
    min-width: 60px;
    text-align: right;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .job-stats-list {
        margin-bottom: 30px;
    }
    
    .stats-count {
        min-width: 40px;
    }
    
    .stats-percentage {
        min-width: 50px;
    }
    
    .stats-title {
        font-size: 16px;
    }
}
