


/* ===========================
           CAREERS HERO SECTION
        =========================== */
.careers-hero {
    padding: clamp(100px, 15vh, 200px) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.careers-hero h1 {
    font-family: 'Figtree', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 500;
    color: #1C2B4A;
    line-height: 1.1;
    position: relative;
    z-index: 5;
    display: inline-block;
}



/* ===========================
           JOBS SECTION STYLES
        =========================== */
.jobs-section {
    position: relative;
    background: #ffffff;
}

.section-intro {
    margin-bottom: clamp(40px, 8vh, 70px);
}



/*.section-intro .intro-text {*/
/*    font-size: 0.95rem;*/
/*    color: #3D4A5C;*/
/*    max-width: 320px;*/
/*    line-height: 1.6;*/
/*}*/

.job-card {
    background: #F8F9FA;
    background: #F9F9F9;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 100px;
    position: relative;
    border: 1px solid rgba(28, 43, 74, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(28, 43, 74, 0.08);
}

.job-card .job-img {
    width: clamp(200px, 20vw, 320px);
    height: 100%;
    min-height: auto;
    object-fit: cover;
    border-radius: 0 40px 40px 0;
}



.job-card.style-2 .job-img {
    border-radius: 40px 0 0 40px;
}

.job-card .job-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.job-card .job-title {
    /*font-family: 'Figtree', sans-serif;*/
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.2rem;
}



.job-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.job-meta-item {
    font-size: 0.88rem;
    font-weight: 500;
    color: #202D57;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 300;
}

.job-meta-item::before {
    content: '♦';
    color: #F5B800;
    font-size: 0.8rem;
    transform: rotate(0deg);
}

.job-desc {
    font-size: 14px;
    color: #3D4A5C;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-weight: 300;
    color: #141414;
}

.job-link {
    font-size: 0.88rem;
    color: #1C2B4A;
    text-decoration: underline;
    font-weight: 300;
}
.job-card .tp-text-btn {
    color: #000;
}

.job-card-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.job-decor-navy {
    width: clamp(80px, 12vw, 120px);
    height: clamp(80px, 12vw, 120px);
    background: #1C2B4A;
    border-radius: 0 0 0 100%;
    top: 0;
    right: 0;
    transform: translate(30%, -30%);
    opacity: 1;
}

.job-decor-gold {
    width: clamp(80px, 12vw, 120px);
    height: clamp(80px, 12vw, 120px);
    background: #F5B800;
    border-radius: 0 100% 0 0;
    bottom: 0;
    left: 0;
    transform: translate(-30%, 30%);
    opacity: 1;
}

.quote-section {
    background-color: #F9F9F9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 40px;
    min-height: 260px;
}

.quote-wrapper {
    position: relative;
    text-align: center;
    max-width: 780px;
    width: 100%;
}

/* Opening quote mark — top left */
.quote-open1 {
    position: absolute;
    top: -34px;
    left: -30px;
    font-size: 72px;
    vertical-align: -33px;
    line-height: 1;
    color: #F7BB03;
    font-family: Georgia, serif;
    font-weight: 700;
    transform: rotateX(180deg);
    /* Using two comma-shaped marks stacked */
}

.quote-open2 {
    position: absolute;
    top: -34px;
    left: -46px;
    font-size: 72px;
    vertical-align: -33px;
    line-height: 1;
    color: #202D57;
    font-family: Georgia, serif;
    font-weight: 700;
    transform: rotateX(180deg);
    /* Using two comma-shaped marks stacked */
}

/* Closing quote mark — inline after last line */
.quote-close1 {
    display: inline;
    font-size: 72px;
    line-height: 0;
    vertical-align: -33px;
    color: #F7BB03;
    font-family: Georgia, serif;
    font-weight: 700;
    margin-left: 4px;
}

.quote-close2 {
    display: inline;
    font-size: 72px;
    line-height: 0;
    vertical-align: -33px;
    color: #202D57;
    font-family: Georgia, serif;
    font-weight: 700;

}

.quote-text {
    font-size: 26px;
    color: #202D57;
    color: #202D57;
    font-weight: 300;
    line-height: 36px;
    letter-spacing: 0.01em;
}



.quote-author {
    margin-top: 28px;
    font-size: 13px;
    color: #161616;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0.75;
}

@media (max-width: 600px) {

    .quote-open1,
    .quote-open2 {
        left: 0;
        font-size: 50px;
    }

    .quote-close1,
    .quote-close2 {
        font-size: 50px;
        vertical-align: -15px;
    }
}

/* ===========================
           JOIN US SECTION STYLES
        =========================== */


.join-section {
   display: block;
    padding: 80px 0px;
   
    margin: 0 auto;
}

/* LEFT COLUMN */
.col-left {
    width: 50%;
    padding: 20px 40px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-logo {
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.join-logo .word-join {
   
    font-weight: 900;
    font-size: 144px;
    color: #3d4470;
    letter-spacing: -2px;
    line-height: 100px;
}

.join-logo .word-us-wrap {
    display: flex;
    align-items: flex-end;
    gap: 0;
}

.join-logo .word-us {
    
    font-weight: 900;
    font-size: 144px;
    color: #f5c518;
    letter-spacing: -2px;
    line-height: 84px;
}

.join-logo .dot-period {
    font-family: 'Figtree', sans-serif;
    font-weight: 900;
    font-size: clamp(20px, 5vw, 88px);
    color: #1a1a1a;
    margin-bottom: 12px;
    margin-left: -3px;
}

/* The "i" dot in Join is replicated via the font naturally */

/* RIGHT COLUMN */
.col-right {
    width: 50%;
    padding: 20px 20px 20px 40px;
}

.perks-list {
    list-style: none;
    margin-bottom: 22px;
}


.perks-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #333;
    color: #141414;
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: 300;
}
.perks-list li .check {
    color: #f5c518;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.read-more {
    display: inline-block;
    font-size: 13.5px;
    color: #3d4470;
    text-decoration: underline;
    margin-bottom: 22px;
    cursor: pointer;
}

.read-more:hover {
    color: #f5c518;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5c518;
    color: #1a1a1a;
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    text-decoration: none;
}

.btn-apply:hover {
    background: #e6b800;
    transform: translateX(2px);
}

.btn-apply .arrow {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {

    .col-left,
    .col-right {
        width: 100%;
        padding: 20px;
    }

    .col-left {
        justify-content: center;
    }
}

/* Sticky Header Overrides */
.tp-sticky-white .defaultshow {
    display: none;
}

.tp-sticky-white .defaulthide {
    display: block;
}