:root {
    --brand-primary: #001c54;
    --brand-secondary: #092a6a;
    --brand-accent: #0080c8;
    --white: #ffffff;
    --black: #000000;
    --dark-neutral: #2b2b2b;
    --light-neutral: #d2d2d2;
    --muted: #6c757d;
    --bg-alt: #f8f9fa;
    --radius-card: .75rem;
    --shadow-card: 0 4px 28px rgba(0, 28, 84, .10);
    --shadow-hover: 0 10px 40px rgba(0, 128, 200, .18);
    --ease: all .32s cubic-bezier(.4, 0, .2, 1);
    --font: 'Gilroy', 'Montserrat', 'Nunito', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--dark-neutral);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font);
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
}

/* ── Page Progress Bar ─────────────────────── */
#page-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-accent));
    z-index: 9999;
    transition: width .1s linear;
}

/* ════════════════════════════════════════════
       NAVBAR (careers-1.html)
    ════════════════════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    transition: background 0.4s, box-shadow 0.4s;
    padding: 18px 0;
}

.site-nav.scrolled {
    background: #000e29 !important;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
    padding: 10px 0;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff !important;
}

.nav-brand span {
    color: var(--brand-accent);
}

.site-nav .nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
    font-weight: 500;
    font-size: 0.93rem;
    letter-spacing: 0.3px;
    padding: 6px 14px !important;
    transition: color 0.2s;
}

.site-nav .nav-link:hover {
    color: #fff !important;
}

.site-nav .nav-cta {
    background: var(--brand-accent);
    color: #fff !important;
    border-radius: 4px;
    padding: 7px 22px !important;
    font-weight: 600;
    transition: background 0.2s, transform 0.15s;
}

.site-nav .nav-cta:hover {
    background: #0070b0;
    transform: translateY(-1px);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.navbar-toggler-icon {
    filter: invert(1);
}


/* new hero section */


/* ═════════════════════════════════════════════
       SECTION 1 — HERO
       Fully responsive · no content-BG overlap at
       any zoom level or viewport size
    ═════════════════════════════════════════════ */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100svh;
    /* svh = safe viewport height (handles mobile chrome) */
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    /* creates a stacking context so z-index is self-contained */
}

/* Layer 1 — background image + gradient overlay (pseudo, never overlaps content) */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(0, 0, 0, 0.96) 0%, #001642d1 55%, rgba(0, 0, 0, .72) 100%),
        url('https://www.jainuniversity.ac.in/newweb-beta/theme/careers/assets/images/jain-university-background.jpg') center / cover no-repeat;
    z-index: 0;
}

/* Layer 2 — decorative radial glow */
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 65% 50%, rgba(0, 128, 200, .14) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

/* All direct children sit above both pseudo layers */
.hero-section>* {
    position: relative;
    z-index: 1;
}

/* Inner padding: top clears fixed navbar, bottom clears scroll indicator */
.hero-inner-wrap {
    width: 100%;
    padding: clamp(100px, 14vh, 140px) 0 clamp(80px, 12vh, 120px);
}

/* Eyebrow pill */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: clamp(.65rem, 1.2vw, .78rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 22px;
}

.hero-eyebrow span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-accent);
    display: inline-block;
    flex-shrink: 0;
}

/* Headline — clamp keeps it readable from 320 px to 4K */
.hero-title {
    font-size: clamp(1.9rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.13;
    margin-bottom: 20px;
}

.hero-title em {
    font-style: normal;
    color: var(--brand-accent);
}

/* Body copy */
.hero-desc {
    font-size: clamp(.92rem, 1.4vw, 1.05rem);
    color: rgba(255, 255, 255, .85);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 32px;
    font-weight: 400;
}

/* CTA buttons */
.btn-hero-primary {
    background: var(--brand-accent);
    color: #fff;
    border: none;
    padding: clamp(10px, 1.2vh, 13px) clamp(20px, 2.5vw, 32px);
    border-radius: 4px;
    font-weight: 700;
    font-size: clamp(.85rem, 1.1vw, .95rem);
    transition: background .2s, transform .15s, box-shadow .2s;
    letter-spacing: .3px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    font-family: var(--font);
}

.btn-hero-primary:hover {
    background: #0070b0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 128, 200, .35);
}

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .6);
    padding: clamp(10px, 1.2vh, 13px) clamp(20px, 2.5vw, 32px);
    border-radius: 4px;
    font-weight: 600;
    font-size: clamp(.85rem, 1.1vw, .95rem);
    transition: border-color .2s, background .2s, transform .15s;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    font-family: var(--font);
}

.btn-hero-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
    transform: translateY(-2px);
    color: #fff;
}

/* Stats row */
.hero-stats {
    margin-top: clamp(28px, 4vh, 52px);
    padding-top: clamp(20px, 3vh, 30px);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-stat-num {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero-stat-label {
    font-size: clamp(.65rem, .9vw, .78rem);
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

.hero-stat-sep {
    width: 1px;
    background: rgba(255, 255, 255, .15);
    align-self: stretch;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .4);
    font-size: .65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: heroBounce 2.5s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes heroBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ── Hero responsive breakpoints ── */
@media (max-width: 991.98px) {
    .hero-inner-wrap {
        padding: clamp(90px, 12vh, 110px) 0 clamp(70px, 10vh, 90px);
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: clamp(1.65rem, 6vw, 2.2rem);
    }

    .hero-stats .d-flex {
        gap: 1.2rem !important;
        flex-wrap: wrap;
    }

    .hero-stat-sep {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-eyebrow {
        font-size: .62rem;
        padding: 5px 14px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 10px 18px;
        font-size: .82rem;
    }
}

/* new hero section */

/* ═══════════════════════════════
       Culture Code + Section Commons
    ═══════════════════════════════ */
.career-accordion .accordion-item {
    border: 0;
    border-radius: 1rem !important;
    overflow: hidden;
    margin-bottom: 1.25rem;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, .08);
}

.career-accordion .accordion-button {
    background: #fff;
    padding: 1.5rem;
    box-shadow: none !important;
}

.career-accordion .accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #001c54;
}

.career-accordion .accordion-button h5 {
    color: #001c54;
    font-weight: 700;
}

.career-accordion .accordion-body {
    padding: 2rem;
}

.career-accordion .accordion-body img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.career-accordion .accordion-button:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .career-accordion .accordion-body {
        padding: 1.5rem;
    }

    .career-accordion .accordion-body img {
        height: auto;
    }
}


/* ── Section Commons ─────────────────────── */
.section-tag {
    display: none !important;
    /* display: inline-block; */
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 12px;
}

.section-title-main {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1.2;
}

.section-lead {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
}

.divider-accent {
    width: 48px;
    height: 3px;
    background: var(--brand-accent);
    border-radius: 2px;
    margin: 16px 0 24px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: .6rem;
}

.eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--brand-accent);
    border-radius: 1px;
}

.section-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1.15;
}

.section-sub {
    font-size: 1.02rem;
    color: var(--muted);
    max-width: 620px;
    line-height: 1.78;
}

.rule {
    width: 48px;
    height: 3px;
    background: var(--brand-accent);
    border-radius: 2px;
    margin: 1rem 0;
}

/* ════════════════════════════════════════════
       CTA BANNER (careers-1.html)
    ════════════════════════════════════════════ */
#ctaBanner {
    /* background: linear-gradient(180deg, #001c54, #000000); */
    background: linear-gradient(0deg, #001c54, #000000);
    /* background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%); */
    padding: 80px 0;
}

.cta-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.btn-cta-white {
    background: #fff;
    color: var(--brand-primary);
    border: none;
    padding: 13px 32px;
    border-radius: 4px;
    font-weight: 700;
    transition: transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    color: var(--brand-primary);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    padding: 13px 32px;
    border-radius: 4px;
    font-weight: 600;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* ════════════════════════════════════════════
       SEC-CULTURE (career-2.html)
    ════════════════════════════════════════════ */
#sec-culture {
    background: var(--white);
    padding: 7rem 0;
}

.culture-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media(max-width:991.98px) {
    .culture-layout {
        grid-template-columns: 1fr;
    }
}

.culture-stage {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    height: 540px;
}

.culture-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1s ease, opacity .5s ease;
    transform: scale(1.04);
}

.culture-slide-bg.visible {
    transform: scale(1);
}

.culture-fade-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(0, 28, 84, .95) 0%, rgba(0, 28, 84, .35) 55%, transparent 100%); */
    background: linear-gradient(to top, rgb(0 0 0 / 95%) 0%, rgba(0, 28, 84, .35) 70%, transparent 100%)
}

.culture-stage-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 2.2rem 2.2rem;
}

.culture-chip {
    display: inline-block;
    background: var(--brand-accent);
    color: var(--white);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 4px;
    padding: .22rem .85rem;
    margin-bottom: .9rem;
}

.culture-title-slide {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: .7rem;
    line-height: 1.2;
}

.culture-desc-slide {
    font-size: .95rem;
    color: rgba(255, 255, 255, .82);
    line-height: 1.72;
    max-width: 540px;
    margin-bottom: .9rem;
}

.culture-statement {
    font-size: .84rem;
    font-weight: 600;
    color: var(--brand-accent);
    font-style: italic;
    /* padding-left: 1rem;
    border-left: 2px solid var(--brand-accent); */
}

.culture-nav-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media(max-width:991.98px) {
    .culture-nav-panel {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.culture-tab {
    display: flex;
    align-items: center;
    gap: .9rem;
    background: var(--bg-alt);
    border: 1px solid var(--light-neutral);
    border-radius: .65rem;
    padding: 1rem 1.1rem;
    cursor: pointer;
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.culture-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--light-neutral);
    border-radius: 0 2px 2px 0;
    transition: var(--ease);
}

.culture-tab.active {
    background: var(--white);
    border-color: var(--brand-accent);
    box-shadow: var(--shadow-card);
}

.culture-tab.active::before {
    background: var(--brand-accent);
}

.culture-tab:hover:not(.active) {
    border-color: rgba(0, 128, 200, .35);
}

.culture-tab-name {
    font-size: .92rem;
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1.25;
}

.culture-tab-hint {
    font-size: .78rem;
    color: var(--muted);
    margin-top: .18rem;
    line-height: 1.4;
}

.culture-tab-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--brand-primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .9rem;
    transition: var(--ease);
}

.culture-tab.active .culture-tab-icon {
    background: var(--brand-accent);
}

.culture-progress {
    height: 3px;
    background: var(--light-neutral);
    border-radius: 2px;
    margin-top: .7rem;
    overflow: hidden;
}

.culture-progress-fill {
    height: 100%;
    width: 0;
    background: var(--brand-accent);
    border-radius: 2px;
    transition: width .35s ease;
}

.culture-tab.active .culture-progress-fill {
    width: 100%;
}

@media(max-width:991.98px) {
    .culture-tab {
        flex: 1 1 calc(50% - .3rem);
        min-width: 160px;
    }
}

/* ════════════════════════════════════════════
       SEC-WORK (career-2.html)
    ════════════════════════════════════════════ */



#sec-work {
    background: var(--bg-alt);
    padding: 7rem 0;
}

.work-feature {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 600px;
}

.work-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-feature-badge {
    position: absolute;
    bottom: 1.6rem;
    left: 1.6rem;
    background: rgba(0, 28, 84, .92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    color: var(--white);
    padding: 1.1rem 1.5rem;
    border-radius: .75rem;
}

.work-feature-badge .nbig {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-accent);
    line-height: 1;
}

.work-feature-badge .nlab {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
}

.work-card-c2 {
    background: var(--white);
    border: 1px solid var(--light-neutral);
    border-radius: var(--radius-card);
    padding: 1.6rem;
    transition: var(--ease);
    box-shadow: var(--shadow-card);
    height: 100%;
}

.work-card-c2:hover {
    border-color: var(--brand-accent);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.work-card-c2:hover .wc-icon {
    background: var(--brand-accent);
}

.wc-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: var(--ease);
    flex-shrink: 0;
}

.wc-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: .4rem;
}

.wc-desc {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.68;
    margin-bottom: .9rem;
}

.wc-roles {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}

.wc-tag {
    font-size: .7rem;
    font-weight: 600;
    background: var(--bg-alt);
    color: var(--brand-secondary);
    border: 1px solid var(--light-neutral);
    border-radius: 50px;
    padding: .18rem .75rem;
}


/* ── Areas of Work — Roles Include Label ── */
.wc-roles-label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: .45rem;
    font-family: var(--font);
}

/* ════════════════════════════════════════════
       STORIES SECTION (career-3.html)
    ════════════════════════════════════════════ */
.stories-section {
    background: var(--brand-primary);
    padding: 6rem 0;
}

.phone-frame-outer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame-c3 {
    width: 280px;
    border-radius: 40px;
    background: #0a0a0a;
    padding: 10px;
    box-shadow: 0 0 0 2px #2a2a2a, 0 30px 80px rgba(0, 0, 0, .6), inset 0 2px 4px rgba(255, 255, 255, .06);
    position: relative;
}

.phone-notch-c3 {
    width: 90px;
    height: 22px;
    background: #0a0a0a;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 4px;
    position: relative;
    z-index: 2;
}

.phone-screen-c3 {
    background: #111;
    border-radius: 34px;
    overflow: hidden;
    height: 520px;
    position: relative;
}

.phone-scroll-inner {
    height: 100%;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
}

.phone-scroll-inner::-webkit-scrollbar {
    display: none;
}

.phone-video-item {
    scroll-snap-align: start;
    height: 520px;
    position: relative;
    flex-shrink: 0;
}

.phone-video-item iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: auto;
}

.phone-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 50%);
    pointer-events: none;
}

.phone-video-meta {
    position: absolute;
    bottom: 1.2rem;
    left: 1rem;
    right: 1rem;
    color: var(--white);
    pointer-events: none;
}

.phone-video-meta .name {
    font-size: .82rem;
    font-weight: 700;
    display: block;
}

.phone-video-meta .role {
    font-size: .72rem;
    color: rgba(255, 255, 255, .72);
}

.phone-actions {
    position: absolute;
    right: .8rem;
    bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.phone-action-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .9rem;
}

.phone-bottom {
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-home-bar {
    width: 80px;
    height: 4px;
    background: #3a3a3a;
    border-radius: 2px;
}

.stories-right-head {
    color: var(--white);
    margin-bottom: 2rem;
}

.testimonial-card-c3 {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-card);
    padding: 2rem;
    position: relative;
}

.testimonial-quote-icon {
    font-size: 3.5rem;
    color: var(--brand-accent);
    opacity: .3;
    line-height: 1;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
}

.testimonial-text-c3 {
    font-size: .98rem;
    color: rgba(255, 255, 255, .85);
    line-height: 1.78;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-journey {
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
    border-left: 3px solid var(--brand-accent);
    padding-left: .85rem;
    margin-bottom: 1.4rem;
    line-height: 1.65;
}

.testi-avatar-c3 {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-accent);
}

.testi-name-c3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
}

.testi-role-c3 {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
}

.testi-carousel-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.4rem;
}

.testi-prev-c3,
.testi-next-c3 {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .9rem;
    cursor: pointer;
    transition: var(--ease);
}

.testi-prev-c3:hover,
.testi-next-c3:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
}

.testi-dots-c3 {
    display: flex;
    gap: .5rem;
}

.testi-dot-c3 {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, .25);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--ease);
}

.testi-dot-c3.active {
    background: var(--brand-accent);
    transform: scale(1.3);
}

/* ════════════════════════════════════════════
       CULTURE SECTION (career-3.html)
    ════════════════════════════════════════════ */
.culture-section-c3 {
    background: var(--white);
    padding: 6rem 0;
}

.culture-carousel-wrap-c3 {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-card);
}

.culture-slide-c3 {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    border-radius: var(--radius-card);
    overflow: hidden;
}

.culture-slide-img-c3 {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s ease;
}

.carousel-item.active .culture-slide-img-c3 {
    transform: scale(1.03);
}

.culture-slide-overlay-c3 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 28, 84, .92) 0%, rgba(0, 28, 84, .3) 55%, transparent 100%);
}

.culture-slide-content-c3 {
    position: relative;
    z-index: 2;
    padding: 2.4rem 2.4rem 2rem;
    width: 100%;
}

.culture-tag-c3 {
    display: inline-block;
    background: var(--brand-accent);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    padding: .25rem .8rem;
    margin-bottom: .9rem;
}

.culture-slide-title-c3 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: .65rem;
}

.culture-slide-desc-c3 {
    font-size: .98rem;
    color: rgba(255, 255, 255, .82);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.culture-slide-statement-c3 {
    font-size: .85rem;
    font-weight: 600;
    color: var(--brand-accent);
    font-style: italic;
}

.culture-nav-c3 {
    display: flex;
    gap: .7rem;
    margin-top: 1.8rem;
    align-items: flex-end;
}

.culture-nav-col-c3 {
    flex: 1;
}

.culture-nav-item-c3 {
    position: relative;
    height: 4px;
    background: var(--light-neutral);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
}

.culture-nav-item-c3.active {
    background: rgba(0, 128, 200, .25);
}

.culture-nav-fill-c3 {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--brand-accent);
    border-radius: 2px;
    transition: width .4s ease;
}

.culture-nav-item-c3.active .culture-nav-fill-c3 {
    width: 100%;
}

.culture-nav-label-c3 {
    font-size: .72rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .35rem;
    transition: all .3s ease;
}

.culture-nav-item-c3.active+.culture-nav-label-c3,
.culture-nav-col-c3.active-col .culture-nav-label-c3 {
    color: var(--brand-accent);
}

/* ════════════════════════════════════════════
       FOOTER (careers-1.html)
    ════════════════════════════════════════════ */

.jain-footer p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    margin: 0;
}

.jain-footer a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    text-decoration: none;
}

.jain-footer a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ════════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    .stories-right-head {
        padding-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .phone-frame-c3 {
        width: 240px;
    }

    .phone-screen-c3 {
        height: 440px;
    }

    .phone-video-item {
        height: 440px;
    }
}


/* grow with us */
/* ═════════════════════════════════════════════
       SECTION 2 — GROW WITH US (3-D flip cards)
    ═════════════════════════════════════════════ */

.grow-section-c3 {
    background: var(--white);
    padding: 6rem 0;
}

.grow-intro-c3 {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 720px;
    line-height: 1.8;
}

/* ── Perspective wrapper (the column div) ── */
.grow-card-c3 {
    height: 555px;
    perspective: 1000px;
    cursor: pointer;
}

/* ── Flip container ── */
.grow-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform: rotateY(180deg);
    transform-style: preserve-3d;
    transition: transform .65s cubic-bezier(.4, .2, .2, 1);
}

.grow-card-c3:hover .grow-card-inner {
    transform: rotateY(0deg);
}

/* ── Shared face rules ── */
.grow-card-front,
.grow-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-card);
    overflow: hidden;
}

/* ── FRONT face ── */
.grow-card-front {
    background: var(--white);
    border: 1px solid var(--light-neutral);
    box-shadow: var(--shadow-card);
    padding: 2rem 1.8rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* top accent stripe */
.grow-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
}

/* Front — icon, step label, title, desc */
.grow-icon-wrap-c3 {
    width: 64px;
    height: 64px;
    background: var(--brand-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--white);
}

.grow-step-num {
    font-size: .72rem;
    font-weight: 700;
    color: var(--light-neutral);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.grow-card-title-c3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: .6rem;
    line-height: 1.3;
}

.grow-card-desc-c3 {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.65;
}

/* "Hover to explore" micro-label at bottom of front */
.flip-hint {
    margin-top: auto;
    padding-top: .8rem;
    font-size: .7rem;
    font-weight: 600;
    color: var(--brand-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: .4rem;
    opacity: .75;
}

.flip-hint i {
    font-size: .8rem;
}

/* ── BACK face ── */
.grow-card-back {
    transform: rotateY(180deg);
    /* pre-rotated — hidden until flip */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 2rem;
}

/* Background photo layer */
.grow-card-back-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Dark-blue gradient overlay so text is always legible */
.grow-card-back-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(45deg, #000000, #001c5470); */
    background: linear-gradient(180deg, rgb(255 255 255 / 2%) 30%, #001c548c 50%, rgb(0 0 0) 100%);
    z-index: 1;
}

/* All back content floats above image + overlay */
.grow-card-back>* {
    /* position: relative; */
    z-index: 2;
}

.grow-card-back-step {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: .4rem;
}

.grow-card-back-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .9rem;
    line-height: 1.3;
}

.grow-card-back-points {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.grow-card-back-points li {
    font-size: .82rem;
    color: rgba(255, 255, 255, .88);
    padding: .28rem 0;
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.grow-card-back-points li:first-child {
    border-top: none;
}

.grow-card-back-points li i {
    color: var(--brand-accent);
    margin-top: 3px;
    font-size: .78rem;
    flex-shrink: 0;
}

/* Connecting timeline line between cards (desktop only) */
.grow-timeline-row {
    position: relative;
}

.grow-timeline-row::before {
    content: '';
    position: absolute;
    top: 60px;
    left: calc(12.5% + 32px);
    right: calc(12.5% + 32px);
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    z-index: 0;
}

/* ── Grow responsive breakpoints ── */
@media (max-width: 991.98px) {
    .grow-timeline-row::before {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .grow-card-c3 {
        /* height: 300px; */
    }
}

/* grow with us */
/* footer */
/* ═════════════════════════════════════════════
       FOOTER  — linear-gradient background
    ═════════════════════════════════════════════ */

.jain-footer {
    background: radial-gradient(128.59% 100% at 50% 0%, #0089C6 0%, #001C54 76.54%);
    /* background: linear-gradient(160deg, #000814 0%, #001233 35%, #001c54 65%, #092a6a 100%); */
    position: relative;
    overflow: hidden;
}

/* subtle radial glow top-right */
.jain-footer::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(0, 128, 200, .13) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Top strip ── */
.footer-top {
    padding: 30px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* ── Logo block ── */
.footer-logo-wrap {
    margin-bottom: 20px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Logo icon badge */
.footer-logo-badge {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand-accent) 0%, #005fa3 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 18px rgba(0, 128, 200, .35);
}

.footer-logo-badge svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

/* Logo text */
.footer-logo-text {
    line-height: 1.15;
}

.footer-logo-name {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.3px;
    color: #fff;
}

.footer-logo-name span {
    color: var(--brand-accent);
}

.footer-logo-sub {
    display: block;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-top: 2px;
}

/* ── Address block ── */
.footer-address {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, .55);
    font-size: .84rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer-address i {
    color: var(--brand-accent);
    margin-top: 4px;
    font-size: .85rem;
    flex-shrink: 0;
}

/* ── Nav columns ── */
.footer-col-title {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}



.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-list li a {
    color: rgba(255, 255, 255, .52);
    text-decoration: none;
    font-size: .855rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .2s, gap .2s;
}



.footer-nav-list li a:hover {
    color: #fff;
    gap: 10px;
}

.footer-nav-list li a:hover::before {
    opacity: 1;
    width: 8px;
}

/* ── Divider ── */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .07);
    margin: 0;
}

/* ── Bottom bar ── */
.footer-bottom {
    padding: 40px 0;
}

.footer-credit {
    font-size: .78rem;
    color: rgba(255, 255, 255, .3);
    line-height: 1.6;
}

.footer-credit a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: color .2s;
}

.footer-credit a:hover {
    color: var(--brand-accent);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem 1.2rem;
    justify-content: flex-end;
}

.footer-legal a {
    font-size: .75rem;
    color: rgba(255, 255, 255, .3);
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, .65);
}

.footer-legal .sep {
    color: rgba(255, 255, 255, .12);
    font-size: .75rem;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .footer-top {
        padding: 44px 0 32px;
    }

    .footer-legal {
        justify-content: flex-start;
        margin-top: 8px;
    }
}

@media (max-width: 767.98px) {
    .footer-brand-col {
        margin-bottom: 36px;
    }

    .footer-address {
        max-width: 100%;
    }
}

/* footer */


/* ── Stories & Impact — Read Full Story Button ─────────── */
.testi-readmore-wrap {
    margin: 0 0 1.5rem;
}


.testi-readmore-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.testi-readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(0, 128, 200, .15);
    border: 1px solid rgba(0, 128, 200, .45);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: .52rem 1.25rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.testi-readmore-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 128, 200, .22), rgba(0, 128, 200, 0));
    opacity: 0;
    transition: opacity .32s ease;
}

.testi-readmore-btn:hover {
    background: rgba(0, 128, 200, .28);
    border-color: var(--brand-accent);
    box-shadow: 0 0 22px rgba(0, 128, 200, .22);
    transform: translateY(-1px);
}

.testi-readmore-btn:hover::before {
    opacity: 1;
}

.testi-readmore-btn:active {
    transform: translateY(0) scale(.98);
}

.testi-readmore-btn .btn-arrow {
    width: 20px;
    height: 20px;
    background: var(--brand-accent);
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    transition: transform .25s ease;
    flex-shrink: 0;
}

.testi-readmore-btn:hover .btn-arrow {
    transform: translateX(3px);
}


/* ── Stories & Impact — Modal ───────────────────────────── */
.JU-TC-modal .modal-content {
    background: linear-gradient(155deg, #040f2a 0%, #001233 50%, #031a45 100%);
    border: 1px solid rgba(0, 128, 200, .22);
    border-radius: 1rem;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .05);
    overflow: hidden;
}

.JU-TC-modal .modal-content::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-accent) 0%, rgba(0, 128, 200, .2) 100%);
}

.JU-TC-modal .modal-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: 1.5rem 1.8rem 1.2rem;
    align-items: center;
}

.JU-TC-modal .modal-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font);
    line-height: 1.25;
}

.JU-TC-modal .btn-close {
    filter: invert(1);
    opacity: .45;
    transition: opacity .2s;
}

.JU-TC-modal .btn-close:hover {
    opacity: .9;
}

.JU-TC-modal .modal-body {
    padding: 1.8rem;
}

.JU-TC-modal .JU-TC-modal-profile-img {
    border: 2.5px solid var(--brand-accent);
    box-shadow: 0 0 0 5px rgba(0, 128, 200, .15);
}

.JU-TC-modal .modal-body h6 {
    color: #fff;
    font-family: var(--font);
    font-size: .98rem;
    margin-bottom: .15rem;
}

.JU-TC-modal .modal-body .text-muted {
    color: rgba(255, 255, 255, .45) !important;
    font-size: .76rem;
}

.JU-TC-modal .modal-body p,
.JU-TC-modal .modal-body div:not([class]) {
    color: rgba(255, 255, 255, .78);
    font-size: .92rem;
    line-height: 1.82;
    font-family: var(--font);
    font-style: italic;
}


/* job css */
/* ═══════════════════════════════════════════
       SECTION WRAPPER
    ═══════════════════════════════════════════ */
#openPositions {
    padding: 90px 0 100px;
    background: var(--bg-alt);
}

/* ─── section header helpers (from source) ─── */
.section-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1.2;
}

.section-lead {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
}

.divider-accent {
    width: 48px;
    height: 3px;
    background: var(--brand-accent);
    border-radius: 2px;
    margin: 16px 0 24px;
}

/* ═══════════════════════════════════════════
       SEARCH & FILTER BAR
    ═══════════════════════════════════════════ */
.jobs-toolbar {
    background: var(--white);
    border: 1px solid var(--light-neutral);
    border-radius: var(--radius);
    padding: 18px 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 36px;
    box-shadow: 0 2px 16px rgba(0, 28, 84, .06);
}

.jobs-search {
    flex: 1 1 240px;
    position: relative;
}

.jobs-search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: .88rem;
}

.jobs-search input {
    width: 100%;
    height: 42px;
    border: 1px solid var(--light-neutral);
    border-radius: 6px;
    padding: 0 14px 0 38px;
    font-size: .88rem;
    color: var(--dark-neutral);
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
}

.jobs-search input:focus {
    border-color: var(--brand-accent);
}

.jobs-filter-select {
    height: 42px;
    border: 1px solid var(--light-neutral);
    border-radius: 6px;
    padding: 0 14px;
    font-size: .88rem;
    color: var(--dark-neutral);
    font-family: inherit;
    outline: none;
    background: #fff;
    min-width: 160px;
    cursor: pointer;
    transition: border-color .2s;
}

.jobs-filter-select:focus {
    border-color: var(--brand-accent);
}

.jobs-count {
    font-size: .82rem;
    color: var(--muted);
    white-space: nowrap;
    margin-left: auto;
}

.jobs-count strong {
    color: var(--brand-primary);
    font-weight: 700;
}

/* Filter pills row */
.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    border-radius: 30px;
    font-size: .78rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--light-neutral);
    background: var(--white);
    color: var(--muted);
    transition: var(--ease);
    user-select: none;
}

.filter-pill:hover {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}

.filter-pill.active {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: var(--white);
}

.filter-pill .pill-count {
    background: rgba(255, 255, 255, .2);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: .68rem;
}

.filter-pill:not(.active) .pill-count {
    background: var(--bg-alt);
    color: var(--brand-accent);
}

/* ═══════════════════════════════════════════
       JOB CARD — primary card style from source
       (area-card pattern + grow-card interaction)
    ═══════════════════════════════════════════ */
.job-card {
    background: var(--white);
    /* border: 1px solid #ececec; */
    border-radius: 7px;
    padding: 28px 28px 22px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s, transform .2s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 3px 1px #dcdcdc;
}

/* left accent bar — exact from area-card::before */
/* .job-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--light-neutral);
    transition: background .25s;
} */

/* bottom accent bar — exact from grow-card::after */
/* .job-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--light-neutral);
    transition: background .25s;
} */

.job-card:hover {
    border-color: var(--brand-accent);
    box-shadow: 0 12px 40px rgba(105, 114, 131, 0.1);
    transform: translateY(-2px);
}

.job-card:hover::before {
    background: var(--brand-accent);
}

.job-card:hover::after {
    background: var(--brand-accent);
}

.job-card:hover .job-icon-wrap {
    background: var(--brand-accent);
}

.job-card:hover .job-icon-wrap i {
    color: var(--white);
}

/* Featured badge */
.job-featured-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--brand-accent);
    color: var(--white);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 3px 10px;
}

/* Icon wrap — from area-card / grow-card pattern */
.job-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #eef5fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background .25s;
    flex-shrink: 0;
}

.job-icon-wrap i {
    font-size: 1.1rem;
    color: var(--brand-primary);
    transition: color .25s;
}

/* Dept label */
.job-dept {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-accent);
    margin-bottom: 6px;
}

/* Title */
.job-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--brand-primary);
    line-height: 1.3;
    margin-bottom: 10px;
}

/* Meta row — location, type, experience */
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.job-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    color: var(--muted);
}

.job-meta-item i {
    font-size: .72rem;
    color: var(--brand-accent);
}

/* Description snippet */
.job-desc {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.68;
    margin-bottom: 16px;
    flex: 1;
}

/* Skill / tag pills — from role-pill in source */
.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.job-tag {
    font-size: .72rem;
    background: #f0f4fa;
    color: var(--brand-secondary);
    border-radius: 30px;
    padding: 3px 12px;
    font-weight: 600;
    letter-spacing: .2px;
    transition: background .2s, color .2s;
}

.job-card:hover .job-tag {
    background: #dbeeff;
    color: var(--brand-accent);
}

/* Footer row */
.job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--bg-alt);
    margin-top: auto;
}

.job-posted {
    font-size: .72rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-posted i {
    font-size: .68rem;
}

/* Apply Now button — exact from btn-hero-primary in source */
.btn-apply {
    background: var(--brand-accent);
    color: var(--white);
    border: none;
    padding: 8px 22px;
    border-radius: 4px;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .3px;
    transition: background .2s, transform .15s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    white-space: nowrap;
    font-family: inherit;
    cursor: pointer;
}

.btn-apply:hover {
    background: #0070b0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 128, 200, .35);
    color: var(--white);
}

.btn-apply i {
    font-size: .78rem;
}

/* Save / bookmark */
.btn-save {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--light-neutral);
    border-radius: 6px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    cursor: pointer;
    transition: var(--ease);
}

.btn-save:hover {
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}

.btn-save.saved {
    border-color: var(--brand-accent);
    background: #dbeeff;
    color: var(--brand-accent);
}

/* ═══════════════════════════════════════════
       FEATURED / WIDE CARD (spans 2 cols on lg)
    ═══════════════════════════════════════════ */
.job-card-featured {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border-color: transparent;
    color: var(--white);
}

.job-card-featured::before,
.job-card-featured::after {
    background: rgba(0, 128, 200, .6);
}

.job-card-featured:hover {
    border-color: rgba(255, 255, 255, .2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .25);
}

.job-card-featured:hover::before,
.job-card-featured:hover::after {
    background: var(--brand-accent);
}

.job-card-featured .job-dept {
    color: rgba(255, 255, 255, .55);
}

.job-card-featured .job-title {
    color: var(--white);
    font-size: 1.25rem;
}

.job-card-featured .job-meta-item {
    color: rgba(255, 255, 255, .7);
}

.job-card-featured .job-meta-item i {
    color: rgba(255, 255, 255, .5);
}

.job-card-featured .job-desc {
    color: rgba(255, 255, 255, .75);
}

.job-card-featured .job-posted {
    color: rgba(255, 255, 255, .45);
}

.job-card-featured .job-icon-wrap {
    background: rgba(255, 255, 255, .1);
}

.job-card-featured .job-icon-wrap i {
    color: var(--white);
}

.job-card-featured:hover .job-icon-wrap {
    background: var(--brand-accent);
}

.job-card-featured .job-tag {
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .85);
}

.job-card-featured:hover .job-tag {
    background: rgba(0, 128, 200, .4);
    color: var(--white);
}

.job-card-featured .job-card-footer {
    border-top-color: rgba(255, 255, 255, .12);
}

.job-card-featured .btn-save {
    border-color: rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .6);
}

.job-card-featured .btn-save:hover {
    border-color: var(--white);
    color: var(--white);
}

.job-card-featured .btn-apply {
    background: var(--white);
    color: var(--brand-primary);
}

.job-card-featured .btn-apply:hover {
    background: #e8f0fb;
    color: var(--brand-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.job-card-featured .job-featured-badge {
    background: rgba(255, 255, 255, .18);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .25);
}

/* ═══════════════════════════════════════════
       NO RESULTS
    ═══════════════════════════════════════════ */
.no-results {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.no-results.show {
    display: block;
}

.no-results-icon {
    font-size: 3rem;
    color: var(--light-neutral);
    margin-bottom: 16px;
}

.no-results h5 {
    color: var(--brand-primary);
    font-weight: 800;
}

.no-results p {
    color: var(--muted);
    font-size: .9rem;
}

/* ═══════════════════════════════════════════
       APPLY MODAL — matching CTA banner colors
    ═══════════════════════════════════════════ */
.apply-modal .modal-content {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}

.apply-modal .modal-header {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
    border: none;
    padding: 28px 32px 24px;
}

.apply-modal .modal-title {
    color: var(--white);
    font-weight: 800;
    font-size: 1.15rem;
}

.apply-modal .modal-header .job-meta-item {
    color: rgba(255, 255, 255, .65);
}

.apply-modal .modal-header .job-meta-item i {
    color: rgba(255, 255, 255, .4);
}

.apply-modal .btn-close {
    filter: invert(1) brightness(2);
    opacity: .7;
}

.apply-modal .btn-close:hover {
    opacity: 1;
}

.apply-modal .modal-body {
    padding: 28px 32px;
}

.apply-modal .modal-footer {
    border-top: 1px solid var(--light-neutral);
    padding: 18px 32px;
    background: var(--bg-alt);
}

/* Form styling */
.apply-form label {
    font-size: .82rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 6px;
    display: block;
}

.apply-form .form-control,
.apply-form .form-select {
    border: 1px solid var(--light-neutral);
    border-radius: 6px;
    font-size: .88rem;
    font-family: inherit;
    color: var(--dark-neutral);
    transition: border-color .2s;
}

.apply-form .form-control:focus,
.apply-form .form-select:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(0, 128, 200, .1);
}

.apply-form .upload-area {
    border: 2px dashed var(--light-neutral);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    background: var(--bg-alt);
}

.apply-form .upload-area:hover {
    border-color: var(--brand-accent);
    background: #eef5fb;
}

.apply-form .upload-area i {
    font-size: 1.8rem;
    color: var(--brand-accent);
    margin-bottom: 8px;
}

.apply-form .upload-area p {
    font-size: .82rem;
    color: var(--muted);
    margin: 0;
}

.apply-form .upload-area span {
    font-size: .75rem;
    color: var(--brand-accent);
    font-weight: 600;
}

/* Job details accordion inside modal */
.apply-job-detail {
    background: var(--bg-alt);
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 24px;
}

.apply-job-detail h6 {
    font-size: .82rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 10px;
}

.apply-detail-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.apply-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--muted);
}

.apply-detail-item i {
    color: var(--brand-accent);
    font-size: .75rem;
}

/* Submit btn */
.btn-submit-apply {
    background: var(--brand-accent);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: .92rem;
    font-family: inherit;
    transition: background .2s, transform .15s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-submit-apply:hover {
    background: #0070b0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 128, 200, .35);
}

.btn-cancel {
    background: transparent;
    color: var(--muted);
    border: 1.5px solid var(--light-neutral);
    padding: 11px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: .88rem;
    font-family: inherit;
    transition: border-color .2s, color .2s;
    cursor: pointer;
}

.btn-cancel:hover {
    border-color: var(--muted);
    color: var(--dark-neutral);
}

/* Success state */
.apply-success {
    text-align: center;
    padding: 20px 0;
    display: none;
}

.apply-success.show {
    display: block;
}

.apply-success .success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8f7ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.apply-success .success-icon i {
    font-size: 2rem;
    color: #28a745;
}

.apply-success h5 {
    font-weight: 800;
    color: var(--brand-primary);
}

.apply-success p {
    color: var(--muted);
    font-size: .9rem;
}

/* ═══════════════════════════════════════════
       LOAD MORE
    ═══════════════════════════════════════════ */
.load-more-wrap {
    text-align: center;
    margin-top: 48px;
}

.btn-load-more {
    background: transparent;
    color: var(--brand-primary);
    border: 1.5px solid var(--brand-primary);
    padding: 12px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: .9rem;
    font-family: inherit;
    cursor: pointer;
    transition: var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-load-more:hover {
    background: var(--brand-primary);
    color: var(--white);
}

/* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
@media (max-width: 767.98px) {
    .jobs-toolbar {
        padding: 14px 16px;
    }

    .job-card {
        padding: 22px 20px 18px;
    }

    .apply-modal .modal-header,
    .apply-modal .modal-body,
    .apply-modal .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* job css */