.careers-hero {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background-image: url("https://cdn.propelholdings.com/web/v3/careeers-hero-alt5.webp");
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    color: var(--hero-text);
}

.careers-hero-content {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-culture {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--color-surface);
    padding: clamp(2rem, 5vh, 4rem) 0;
    color: var(--hero-text);
    overflow: hidden;
}

/* ---- Header ---- */
.pc-culture .pc-title {
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.pc-culture .pc-title strong {
    color: var(--color-link);
    font-weight: var(--font-weight-bold);
}

.pc-culture .pc-intro {
    color: var(--color-text);
    font-size: var(--fon-size-base);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

/* ---- Stat cards ---- */
.pc-culture .pc-card {
    background: var(--pc-white);
    border-radius: 16px;
    box-shadow: 0 34px 42.23px 8.67px rgba(0, 23, 49, 0.03);
    height: 100%;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.pc-culture .pc-card.pc-in {
    opacity: 1;
    transform: translateY(0);
}

.pc-culture .pc-card-media {
    border-top-right-radius:16px;
    border-top-left-radius: 16px;
    position: relative;
    padding: 1.75rem 1.5rem;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--pc-white);    
    background:
        linear-gradient(180deg, rgba(42, 42, 92, .78) 0%, rgba(50, 50, 130, .88) 100%),
        var(--pc-card-img, linear-gradient(135deg, #3a3a86, #2a2a5c));
    background-size: cover;
    background-position: center;
}

.pc-culture .pc-stat {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    color:var(--color-text-light);
    font-weight:var(--font-weight-bold);
    line-height: 1;
    margin-bottom: .5rem;
}

.pc-culture .pc-stat-label {
    font-size: 1.05rem;
    color: var(--color-text-light);
    font-weight: var(--font-weight-medium);
    line-height: 1.3;
}

.pc-culture .pc-card-body {
    padding: 1.15rem 1.5rem 1.6rem;
    color: var(--pc-body);
    font-size: .95rem;
    line-height: 1.5;
}

.pc-stat[data-prefix]::before {
  content: attr(data-prefix);
}

/* ---- Join us button ---- */
.pc-culture .pc-join {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--pc-white);
    color: var(--pc-ink);
    font-weight: 700;
    border: 1px solid #e6e8f0;
    border-radius: 999px;
    padding: .7rem 1.1rem .7rem 1.5rem;
    box-shadow: 0 8px 22px rgba(50, 50, 130, 0.14);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.pc-culture .pc-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(50, 50, 130, 0.22);
    color: var(--pc-indigo);
}

.pc-culture .pc-join .pc-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

.pc-culture .pc-join .pc-chevron svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 767.98px) {
    .pc-culture {
        min-height: auto;
    }

    /* let stacked cards breathe on phones */
}




/* success stories */
.ss-stories {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(1rem, 2.5vh, 1.75rem);
    padding: clamp(2.5rem, 8vh, 5.5rem) 0;
    background: var(--color-bg-light);
    font-family: var(--font-body);
    overflow: hidden;
}

.ss-stories .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-height: 0;
    flex: 1;
}

/* ---- Header ---- */
.ss-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    color:var(--hero-text);
}

.ss-title {
    font-family:var(--font-heading);
    font-weight: var(--font-weight-bold);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    letter-spacing: -0.5px;
    margin: 0;
    color: var(--color-title);
}

.ss-nav {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.ss-counter {
    color: var(--ss-muted);
    font-weight: (--font-weight-bold);
    font-size: var(--font-size-small);
    margin-right: .25rem;
}

.ss-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid var(--color-primary-hover);
    color: var(--color-primary-hover);
    display: inline-flex;
    align-items: center;
    justify-content: center;
	flex-shrink: 0;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.ss-arrow:hover {
    background: var(--color-primary-hover);
    color: var(--color-text-light);
    transform: translateY(-1px);
}

.ss-arrow svg {
    width: 18px;
    height: 18px;
}

/* ---- Carousel shell ---- */
.ss-stories .carousel {
    flex: 1 1 auto;
    min-height: 0;
}

.ss-stories .carousel-inner,
.ss-stories .carousel-item {
}

.ss-stories .carousel-item>.row {
    height: 100%;
    margin: 0;
}

.ss-card {
    background: var(--color-surface);
    border-radius: 18px;
    box-shadow: 0 34px 42.23px 8.67px rgba(0, 23, 49, 0.03);
    overflow: hidden;
    height: 100%;
}

.ss-card>.row {
    height: 100%;
    margin: 0;
}

/* photo */
.ss-photo {
    padding: 0;
    min-height: 260px;
    background-size: cover;
    background-position: center;
    /* Swap the url() per slide via inline style: style="background-image:url('...')" */
    background-color: #dfe2ea;
    background-image: linear-gradient(135deg, #eef0f5, #d9dde7);
}

/* text side */
.ss-text {
    padding: clamp(1.5rem, 3vh, 2.5rem);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.ss-quote {
    font-family: var(font-body);
    color: var(--color-link);
    font-weight: var(--font-weight-bold);
    font-size: clamp(1.15rem, 1.9vw, 1.5rem);
    line-height: 1.35;
    margin: .5rem 0 1.1rem;
    flex-shrink: 0;
}

.ss-name {
    color: #4D5D6F;
    font-weight: var(--font-weight-bold);
    font-size: 1.02rem;
}

.ss-role {
    color: #4D5D6F;
    font-size: .95rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.ss-divider {
    border: 0;
    border-top: 1px solid #CCD1D6;
    margin: 0 0 1rem;
    flex-shrink: 0;
}

.ss-body {
    color: #4D5D6F;
    font-size: .95rem;
    line-height: 1.4;
	font-weight: 300;
    overflow-y: auto;
    min-height: 0;
    padding-right: .5rem;
}

.ss-body::-webkit-scrollbar {
    width: 6px;
}

.ss-body::-webkit-scrollbar-thumb {
    background: var(--ss-line);
    border-radius: 3px;
}

@media (max-width: 767.98px) {
    .ss-stories {
        height: auto;
        min-height: 100vh;
    }

    .ss-photo {
        min-height: 300px;
    }

    .ss-body {
        overflow: visible;
    }
}

/*benefits section */

.pb-benefits {
    --pb-indigo: #323282;;
    --pb-card: rgba(255, 255, 255, 0.05);
    --pb-card-border: rgba(255, 255, 255, 0.11);
    --pb-white: #ffffff;
    --pb-muted: #9a9fc4;

    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(2rem, 6vh, 4.5rem) 0;
    background: radial-gradient(120% 120% at 80% 50%, var(--color-compliment1) 0%, var(--color-dark-navy) 70%);
    font-family: var(--font-body);
}


/* ---- Title ---- */
.pb-title {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    color: var(--color-text-muted);
    margin: 0;
    align-items: center;
    height: 100%;
    padding-left: .25rem;
}

/* ---- Benefit card ---- */
.pb-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
    background: var(--pb-card);
    border: 1px solid var(--pb-card-border);
    border-radius: 16px;
    padding: 1.1rem 1.35rem;
    color: var(--color-text-light);
    transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.pb-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.pb-icon {
    flex-shrink: 0;
    padding:10px;
    border-radius: 11px;
    background: #E9F2FB;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Placeholder mark — swap the inner SVG for the approved Propel icon-only mark */
.pb-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-compliment1);    
}

.pb-label {
    font-family:inherit;
    font-weight: var(--font-weight-medium);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.25;
}

@media (max-width: 767.98px) {
    .pb-benefits {
        min-height: auto;
    }

    .pb-lines {
        display: none;
    }

    .pb-title {
        height: auto;
        margin-bottom: .5rem;
    }
}




/* gallery style */
.fw-gallery {
    --fw-indigo: #323282;
    --fw-dot: #c9cbe0;
    --fw-bg: #ffffff;

    background: var(--color-bg-light);
    padding-top: 65px;
    overflow: hidden;
    /* keep the peeking edges clean, no h-scrollbar */
    font-family: inherit;
}

/* full-bleed track */
.fw-slider {
    width: 100%;
}

/* each slide */
.fw-slide {
    padding: 12px;
    outline: none;
}

.fw-photo {
    position: relative;
    height: 430px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
}

.fw-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* dots */
.fw-gallery .slick-dots {
    bottom: -35px;
}

.fw-gallery .slick-dots li button:before {
    font-size: 10px;
    color: var(--fw-dot);
    opacity: 1;
}

.fw-gallery .slick-dots li.slick-active button:before {
    color: var(--fw-indigo);
    opacity: 1;
}

@media (max-width: 767.98px) {
    .fw-photo {
        height: 340px;
    }
}

@media (max-width: 480px) {
    .fw-photo {
        height: 300px;
    }
}

.hr-ribbon{
    max-width:250px !important;
}

.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #E9F2FB;
    color: var(--color-compliment1);
    margin-bottom: 1.25rem;
}

.values-section {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    color: var(--hero-text);
}

.p-logos {
    max-width: 150px;
}

/* careers footer */
.foot-section {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 50vh;
    overflow: hidden;
    background-color:#121245;
    color: var(--hero-text);
}