.bhim1-swiper.bhim1-fill-screen {
    position: relative;
    width: 100vw;
    height: calc(100vh - var(--bhim1-top-offset, 0px));
    height: calc(100svh - var(--bhim1-top-offset, 0px));
    overflow: hidden;
    background-color: #F9F5F0;
    z-index: 1;
}

.bhim1-swiper-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition-property: transform;
    box-sizing: content-box;
}

.bhim1-swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* ========= Slide inner layout ========= */
.bhim1-hero-container {
    height: 100%;
}

.bhim1-hero-row {
    height: 100%;
}

.bhim1-hero-content {
    color: #fff;
    border-radius: 16px;
    padding: clamp(16px, 3vw, 28px);
}

.bhim1-hero-eyebrow {
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: .7;
    margin-bottom: .25rem;
    color: #052a28;
}

.bhim1-hero-title {
    font-size: clamp(28px, 4.6vw, 56px);
    line-height: 1.08;
    font-weight: 800;
    margin: 0 0 .6rem;
}

.bhim1-hero-text {
    font-size: clamp(14px, 1.4vw, 18px);
    color: #333;
    margin: 0 0 1.25rem;
}

.bhim1-cta-wrap {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bhim1-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.1rem;
    border-radius: 10px;
    border: 2px solid #222;
    background: #222;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.bhim1-btn.bhim1-outline {
    background: transparent;
    color: #222;
}

.bhim1-btn:focus,
.bhim1-btn:hover {
    opacity: .92;
    text-decoration: none;
}

/* Right side image block */
.bhim1-hero-figure {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: clamp(8px, 2vw, 20px);

}

.bhim1-hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-height: 80vh;
    filter: contrast(1.02) saturate(1.02);
}

/* Optional accent badge (can remove) */
.bhim1-flag-badge {
    position: absolute;
    top: clamp(12px, 3vw, 24px);
    right: clamp(12px, 3vw, 24px);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background:
        linear-gradient(#FF9933 0 33%, #fff 33% 66%, #138808 66% 100%);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
    border: 3px solid #fff;
    z-index: 2;
}

/* Controls */
.bhim1-swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    text-align: center;
    z-index: 20;
}

.bhim1-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin: 0 5px;
    background: rgba(0, 0, 0, 0.6);
    opacity: .9;
    transition: transform .2s ease;
}

.bhim1-swiper-pagination .swiper-pagination-bullet-active {
    background: #0a0a0a;
    transform: scale(1.25);
}


.bhim1-disabled {
    opacity: .35;
    pointer-events: none;
}

/* Mobile tweaks */
@media (max-width: 991.98px) {
    .bhim1-hero-content {
        border-radius: 14px;
    }

    .bhim1-hero-figure {
        min-height: 44vh;
    }

    .bhim1-hero-img {
        max-height: 50vh;
    }
}

/* FIX: All custom properties and base styles are now in this class */
.how-it-works-section {
    --surface: #ffffff;
    --ink-1: #172026;
    --ink-2: #5a6473;
    --brand: #274f6d;
    --r-card: 22px;
    --shadow: 0 14px 36px rgba(17, 23, 41, 0.1);
    --shadow-strong: 0 16px 40px rgba(17, 23, 41, 0.14);

    background: var(--bg);
    font-family: "Poppins", sans-serif;
}

/* ---------------- header ---------------- */
.cz-sec {
    position: relative;
}

.cz-head {
    text-align: center;
    margin-bottom: 4%;
}

.cz-head h2 {
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-size: 40px;
    margin-top: 2%;
    margin-bottom: 2%;
}

.cz-head p {
    color: var(--ink-2);
    margin: 0;
    max-width: 760px;
    margin-inline: auto;
}

/* ---------------- cards ---------------- */
.card-wrapper {
    position: relative;
    height: 100%;
    margin-top: 3%;
}

.cz-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--r-card);
    background: var(--surface);
    border: 1px solid rgba(17, 23, 41, 0.08);
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    overflow: hidden;
}

.cz-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.step-badge {
    position: absolute;
    top: -18px;
    left: 16px;
    min-width: 40px;
    height: 40px;
    padding: 0 0.6rem;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(39, 79, 109, 0.28);
    z-index: 5;
}

.cz-body {
    padding: 1.15rem 1.25rem 1.35rem;
}

.cz-title {
    font-weight: 700;
    font-size: 2.1rem;
    line-height: 1.25;
    color: var(--ink-1);
    margin-bottom: 0.55rem;
}

.cz-text {
    color: var(--ink-2);
    line-height: 1.65;
    margin: 0;
}

.media-top {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.media-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05);
    transform: scale(1.03);
}

.wave-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 72px;
}

.media-bottom {
    position: relative;
    flex: 1 1 auto;
    min-height: 180px;
    overflow: hidden;
}

.media-bottom img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.05);
    transform: scale(1.03);
}

.wave-top {
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    width: 100%;
    height: 72px;
    transform: rotate(180deg);
    z-index: 2;
}

.card-wave-g>use {
    animation: move-forever 15s cubic-bezier(0.55, 0.5, 0.45, 0.5) -2s infinite;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

@media (max-width: 575.98px) {
    .media-top {
        height: 170px;
    }

    .media-bottom {
        min-height: 150px;
    }
}




/* Scope everything to the bhim wrapper */
.bhim-wrap * {
    box-sizing: border-box;
}

.bhim-wrap {
    max-width: min(1200px, 92vw);
    margin: clamp(16px, 4vw, 48px) auto;

    color: #0b0f12;
}

/* --- Layout grid --- */
.bhim-row {
    display: grid;
    grid-template-columns: clamp(62px, 6vw, 88px) 1fr clamp(62px, 6vw, 88px) clamp(62px,
            6vw,
            88px);
    align-items: stretch;
    gap: clamp(14px, 2vw, 24px);
}

@media (max-width: 900px) {
    .bhim-row {
        grid-template-columns: clamp(62px, 6vw, 88px) 1fr clamp(62px,
                6vw,
                88px);
    }

    .bhim-right .bhim-pill:last-child {
        display: none;
    }
}

/* --- Side vertical pills --- */
.bhim-side {
    display: flex;
}

.bhim-left {
    grid-column: 1;
}

.bhim-right {
    grid-column: 3 / span 2;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(62px, 6vw, 88px);
    gap: clamp(14px, 2vw, 24px);
}

.bhim-pill {
    width: clamp(62px, 6vw, 88px);
    height: clamp(420px, 72vh, 560px);
    background: #e7f5f5;
    border-radius: 9999px;
    border: 1px solid #d8eaea;
    box-shadow: 0 6px 20px #0a2a2a12 inset, 0 6px 20px #0a2a2a0d;
    padding: 16px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease,
        box-shadow 0.25s ease, border-color 0.25s ease;
}

.bhim-pill:hover {
    transform: translateY(-2px);
    background: #eef9f8;
}

.bhim-vstack {
    writing-mode: vertical-rl;
    /* vertical text */
    transform: rotate(180deg);
    /* make it readable top->bottom */
    text-align: center;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.bhim-brand-mini {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.65;
}

.bhim-person-mini {
    font-weight: 600;
    font-size: 12px;
    color: #0d0f10;
    max-width: 16ch;
}

/* --- Big center card --- */
.bhim-stage {
    grid-column: 2;
    position: relative;
    min-height: clamp(364px, 50vh, 553px);

    border-radius: clamp(28px, 4vw, 44px);
    box-shadow: 0 16px 40px #0a2a2a18, inset 0 0 0 1px #00000010;
    overflow: hidden;
    /* Background color is set inline from JS per item */
}

/* Top-right fixed nav; never moves with content */
.bhim-navs {
    position: absolute;
    top: clamp(12px, 1.8vw, 20px);
    right: clamp(12px, 1.8vw, 20px);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.bhim-btn {
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff;
    color: #0b0f12;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 16px #0a2a2a22;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease,
        background 0.2s ease;
}

.bhim-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px #0a2a2a2b;
}

.bhim-btn:active {
    transform: translateY(0);
}

.bhim-btn:focus-visible {
    outline: 2px solid #0b0f12;
    outline-offset: 2px;
}

.bhim-arrow {
    width: 16px;
    height: 16px;
    display: block;
}

/* Content inside card has extra top padding so it doesn't sit under the nav */
.bhim-content {
    position: relative;
    z-index: 1;
    padding: clamp(40px, 5vw, 60px) clamp(20px, 3.2vw, 40px) clamp(20px, 3.2vw, 40px);
    color: #052a28;
    /* legible on teal tints */
    animation: bhim-fade 0.35s ease both;
}

@keyframes bhim-fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bhim-brand {
    font-size: clamp(12px, 1.4vw, 16px);
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.85;
    margin: 0 0 clamp(10px, 1vw, 16px);
}

.bhim-quote {
    font-weight: 800;
    font-size: clamp(24px, 4.2vw, 44px);
    line-height: 1.12;
    margin: 0 0 clamp(18px, 2.4vw, 28px);
}

.bhim-author {
    margin: 0;
    font-size: clamp(14px, 1.6vw, 16px);
    color: #052a28;
}

.bhim-author strong {
    font-weight: 800;
}



/* ============ Scoped Theme (no :root) ============ */
.bhimr1-theme {
    --bhimr1-brand: #274F6D;
    /* your brand */
    --bhimr1-brand-2: #6CA0C2;
    /* accent */
    --bhimr1-surface: #FFFFFF;
    --bhimr1-ink-1: #12161A;
    --bhimr1-ink-2: #5A6473;
    --bhimr1-shadow: 0 14px 36px rgba(17, 23, 41, .10);
    --bhimr1-shadow-strong: 0 18px 46px rgba(17, 23, 41, .16);
    --bhimr1-radius: 20px;
}

/* ============ Layout ============ */
.bhimr1-sec {
    padding: clamp(2rem, 4vw, 4rem) 1rem;

}

/* ===== For Recruiters - polish (bhimr1-sec) ===== */

/* kill the huge watermark behind the headline in this block only */
.bhimr1-sec .bg-content {
    display: none;
}

/* subhead width + tone */
.bhimr1-sec .disc {
    max-width: 60ch;
    color: #fff;
    margin-bottom: 12px;
}

/* CTA row spacing */
.bhimr1-sec .button-wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 12px 0 8px;
}

/* ---------- Chips (benefit stamps) ---------- */
.bhimr1-sec .check-wrapper-area {
    display: grid !important;
    grid-template-columns: 1fr !important;
    /* one item per line, even on desktop */
    gap: 8px !important;
    max-width: 560px;
}

.bhimr1-sec .single-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 4px 0;
    margin: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.bhimr1-sec .single-check i {
    font-size: 14px;
    line-height: 1;
    color: #247BC7;
    /* brand blue */
    margin-top: 3px;
    /* align with first text line */
}

.bhimr1-sec .single-check p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #2b2f36;
}

/* ---------- Steps (right column) ---------- */
.bhimr1-flow {
    position: relative;
    padding-left: 22px;
    /* room for rail */
    max-width: 560px;
    margin-left: auto;
}

.bhimr1-rail {
    position: absolute;
    left: 10px;
    top: 0;
    width: 3px;
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(180deg, #247BC7 0%, #dbeafe 100%);
    opacity: .35;
}

.bhimr1-cards {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bhimr1-card-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #e6eaf3;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(2, 8, 23, .04);
}

.bhimr1-chip {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #0b5394;
    background: #f0f7ff;
    border: 1px solid #dbeafe;
}

.bhimr1-card-title {
    font-size: 16px;
    margin: 0 0 4px;
    color: #fff;
}

.bhimr1-card-text {
    font-size: 14px;
    margin: 0;
    color: #4b5563;
}

/* responsive spacing */
@media (max-width: 991.98px) {
    .bhimr1-flow {
        margin-top: 22px;
    }
}

.bhimr1-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(1.25rem, 3.5vw, 3rem);
    align-items: start;
}

/* LEFT column */
.bhimr1-title {
    margin: 0 0 .4rem;
    font-size: clamp(2rem, 2.6vw + 1rem, 2.75rem);
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #fff !important;
    ;

}

.bhimr1-sub {
    margin: 0 0 1.1rem;
    color: var(--bhimr1-ink-2);
    max-width: 48ch;
}

.bhimr1-cta {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin: .8rem 0 1.4rem;
}

.bhimr1-btn {
    border-radius: 12px;
    padding: .75rem 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

.bhimr1-btn-primary {
    background: var(--bhimr1-brand);
    color: #fff;
    box-shadow: 0 10px 20px rgba(39, 79, 109, .25);
}

.bhimr1-btn-primary:hover {
    transform: translateY(-1px);
}

.bhimr1-btn-ghost {
    color: var(--bhimr1-brand);
    border-color: currentColor;
}

.bhimr1-btn-ghost:hover {
    background: #e8eef3;
}

/* feature stamps */
.bhimr1-stamps {
    display: grid;
    gap: .6rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    padding: 0;
    margin: 0;
    list-style: none;
}

.bhimr1-stamp {
    --bg: #eaf3f9;
    --ink: #0d3750;
    display: flex;
    gap: .5rem;
    align-items: center;
    padding: .6rem .75rem;
    border-radius: 12px;
    background: var(--bg);
    color: var(--ink);
    font-weight: 600;
    border: 1px dashed rgba(17, 23, 41, .18);
    box-shadow: 0 6px 16px rgba(17, 23, 41, .06);
}

.bhimr1-stamp[data-variant="blue"] {
    --bg: #e4f0f7;
    --ink: #103a58;
}

.bhimr1-stamp[data-variant="violet"] {
    --bg: #eceafb;
    --ink: #312a6b;
}

.bhimr1-stamp[data-variant="rose"] {
    --bg: #fbe9ec;
    --ink: #6b1f2a;
}

.bhimr1-stamp-check {
    width: 22px;
    height: 25px;
    display: inline-grid;
    place-items: center;
    background: #fff;
    color: var(--bhimr1-brand);
    border-radius: 50%;
    font-weight: 900;
    border: 1px solid rgba(17, 23, 41, .12);
}

/* ============ RIGHT column — Redesigned steps ============ */
.bhimr1-flow {
    position: relative;
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(2px);
    border-radius: 18px;
    padding: 10px 14px;
    box-shadow: var(--bhimr1-shadow);
    border: 1px solid rgba(17, 23, 41, .08);
    padding: clamp(1rem, 2.2vw, 1.4rem);
    overflow: hidden;
}

/* Vertical rail behind the cards */
.bhimr1-rail {
    position: absolute;
    left: 30px;
    top: 16px;
    bottom: 16px;
    width: 4px;
    background: linear-gradient(180deg, var(--bhimr1-brand), var(--bhimr1-brand-2), var(--bhimr1-brand));
    background-size: 100% 300%;
    animation: bhimr1-rail-move 8s linear infinite;
    border-radius: 3px;
    filter: drop-shadow(0 0 2px rgba(39, 79, 109, .15));
}

@keyframes bhimr1-rail-move {
    to {
        background-position-y: 300%;
    }
}

.bhimr1-cards {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .9rem;
}

/* Each step card */
.bhimr1-card-step {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: .9rem;
    padding: .95rem .95rem .95rem .8rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 8px 28px rgba(8, 23, 40, .18);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.bhimr1-card-step::before {
    /* slim accent stripe inside the card (distinct look) */
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 16px 0 0 16px;
    background: linear-gradient(180deg, var(--bhimr1-brand), var(--bhimr1-brand-2));
    opacity: .9;
}

.bhimr1-card-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--bhimr1-shadow-strong);
    border-color: rgba(17, 23, 41, .12);
}

/* Number chip */
.bhimr1-chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--bhimr1-brand);
    background:
        radial-gradient(120% 120% at 10% 10%, #ffffff, #f0f5fa 40%, #e7eef6 100%);
    border: 2px solid rgba(39, 79, 109, .35);
    box-shadow: 0 6px 14px rgba(17, 23, 41, .08);
}

/* Text */
.bhimr1-card-title {
    margin: .1rem 0 .25rem;
    font-size: 1.5rem;
    color: var(--bhimr1-ink-1);
    font-weight: 800;
}

.bhimr1-card-text {
    margin: 0;
    color: var(--bhimr1-ink-2);
    line-height: 1.65;
}

.bhimr1-linkish {
    color: var(--bhimr1-brand);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
    .bhimr1-wrap {
        grid-template-columns: 1fr;
    }

    .bhimr1-flow {
        order: -1;
    }

    .bhimr1-rail {
        left: 22px;
    }

    .bhimr1-card-step {
        grid-template-columns: 48px 1fr;
    }

    .blog_p {
        font-size: 10px;
        margin: 0 0 10px !important;
    }
}

/* ---------- For Recruiters: benefits + docs checklist polish ---------- */
.rts-recruiters-area .recruiters-content .disc {
    max-width: 65ch;
    /* comfy line length */
    margin-bottom: 14px;
}

/* shared grid for both lists */
.rts-recruiters-area .recruiters-content>.check-wrapper-area,
.rts-recruiters-area .about-between-wrapper .check-wrapper-area {
    display: grid;
    grid-template-columns: 1fr !important;
    /* one item per row */
    gap: 8px;
}

/* Optional: tidy alignment */
.rts-recruiters-area .single-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 4px 0;
}

.rts-recruiters-area .single-check i {
    margin-top: 3px;
}


/* clean, non-card look for each row */
.rts-recruiters-area .single-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 4px 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    margin: 0;
}

/* icon size + baseline alignment */
.rts-recruiters-area .single-check i {
    font-size: 14px;
    line-height: 1;
    color: #134162;
    /* brand blue */
    margin-top: 3px;
    /* aligns with first line of text */
}

/* text tone */
.rts-recruiters-area .single-check p {
    margin-left: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #2b2f36;
}

/* “Docs checklist” heading weight/spacing */
.rts-recruiters-area .about-between-wrapper .title {
    font-weight: 600;
    margin: 18px 0 10px;
}

/* helper note under docs list */
.rts-recruiters-area .about-between-wrapper .small {
    display: block;
    margin-top: 8px;
    font-size: 12.5px;
    color: #6b7280;
}

/* CTA spacing tweak */
.rts-recruiters-area .button-wrapper {
    margin-top: 18px;
}