.work-hero {
    position: relative;
    width: 100%;
    min-height: 360px;
    background: url("../image/work-with-us/Work-With-Us.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* LEFT BLUE SHADOW OVERLAY */
.work-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(10, 30, 120, 0.96) 0%,
            rgba(15, 50, 160, 0.90) 25%,
            rgba(20, 70, 180, 0.75) 45%,
            rgba(30, 80, 200, 0.40) 65%,
            rgba(30, 80, 200, 0.10) 80%,
            rgba(0, 0, 0, 0.00) 100%);
    z-index: 1;
}

/* CONTENT */
.work-hero .hero-content {
    position: relative;
    z-index: 2;
    padding-left: 80px;
}

.deliver-tag {
    display: inline-block;
    background: transparent;
    background-color: #5CD7F266;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.2px;
    backdrop-filter: blur(4px);
}

.work-hero .hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.work-hero .hero-content p {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
}

.work-hero .eng-btn-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2456f6;
    color: #fff;
    font-size: clamp(12.5px, 1.3vw, 15px);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #2456f6;
    transition: all 0.22s ease;
}

.work-hero .eng-btn-blue:hover {
    background: #1a3ae0;
    border-color: #1a3ae0;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 576px) {

    .work-hero {
        min-height: 280px;
    }

    .work-hero .hero-content {
        padding: 20px 15px;
        text-align: left;
    }

    .work-hero .hero-content h1 {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .work-hero .hero-content p {
        font-size: 15px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {

    .work-hero {
        min-height: 280px;
        background-position: top right;
    }

    .work-hero .hero-content {
        padding: 20px 15px;
        text-align: left;
    }

    .work-hero .hero-content h1 {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .work-hero .hero-content p {
        font-size: 15px;
        max-width: 100%;
    }

    .deliver-tag {
        font-size: 11px;
        padding: 5px 14px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {

    .work-hero {
        min-height: 340px;
    }

    .work-hero .hero-content {
        padding-left: 50px;
    }

    .work-hero .hero-content h1 {
        font-size: 48px;
    }

    .work-hero .hero-content p {
        font-size: 18px;
        max-width: 500px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {

    .work-hero {
        min-height: 360px;
    }

    .work-hero .hero-content {
        padding-left: 70px;
    }

    .work-hero .hero-content h1 {
        font-size: 58px;
    }

    .work-hero .hero-content p {
        font-size: 19px;
    }
}


/* TALENT WRAPPER */
.talent-wrapper {
    margin: 0 auto;
}

.talent-wrapper .talent-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e0e8f5;
    box-shadow: 0 4px 22px rgba(30, 60, 180, 0.07);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

/*.talent-wrapper .talent-card:hover {*/
/*    transform: translateY(-4px);*/
/*    box-shadow: 0 14px 36px rgba(36, 86, 246, 0.12);*/
/*}*/

/* ── Blue header banner ── */
.talent-wrapper .talent-card-header {
    background: linear-gradient(135deg, #4078DF 0%, #3a6fff 100%);
    padding: 18px 22px;
    position: relative;
    overflow: hidden;
}

.talent-wrapper .talent-card-header h5 {
    position: relative;
    z-index: 1;
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.2px;
    line-height: 1.2;
}

/* ── Card body ── */
.talent-wrapper .talent-card-body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Description */
.talent-wrapper .talent-desc {
    font-size: clamp(12.5px, 1.4vw, 14px);
    color: #555;
    line-height: 1.72;
    margin-bottom: 18px;
}

.talent-wrapper .talent-item {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f3f5fb;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: background 0.2s ease;
}

.talent-wrapper .talent-item:last-child {
    margin-bottom: 0;
}

.talent-wrapper .talent-item:hover {
    background: #eaedfa;
}

/* Blue left accent bar */
.talent-wrapper .talent-item-bar {
    width: 10px;
    min-height: 42px;
    background: #4078DF;
    flex-shrink: 0;
    border-radius: 8px 0 0 8px;
}

/* Item text */
.talent-wrapper .talent-item-text {
    font-size: clamp(12px, 1.35vw, 13.5px);
    color: #1a1a2e;
    font-weight: 500;
    padding: 11px 14px;
    line-height: 1.4;
}

.talent-wrapper .prosper-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.talent-wrapper .prosper-pill {
    background: #ffffff;
    border: 1.5px solid #d0d9f0;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: clamp(12px, 1.35vw, 13.5px);
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
    transition: all 0.22s ease;
    cursor: default;
}

.talent-wrapper .prosper-pill:hover {
    background: #eef2ff;
    border-color: #2456f6;
    color: #2456f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 86, 246, 0.12);
}

/* Closing callout */
.talent-wrapper .pda-callout {
    background: #ffffff;
    border: 1.5px solid #d0d9f0;
    border-radius: 12px;
    padding: 16px 20px;
}

.talent-wrapper .pda-callout p {
    font-size: clamp(12.5px, 1.35vw, 13.5px);
    color: rgba(0, 0, 0, 0.88);
    line-height: 1.68;
    margin: 0;
    font-style: italic;
}

/* =============================================
           RESPONSIVE
        ============================================= */
@media (max-width: 991px) {
    .talent-wrapper .talent-card-header {
        padding: 16px 18px;
    }

    .talent-wrapper .talent-card-body {
        padding: 18px 18px 20px;
    }
}

@media (max-width: 767px) {
    .talent-wrapper .talent-card {
        border-radius: 16px;
    }

    .talent-wrapper .talent-card-header h5 {
        font-size: 16px;
    }

    .talent-wrapper .talent-item-bar {
        min-height: 38px;
    }
}

@media (max-width: 575px) {
    .talent-wrapper .talent-card {
        border-radius: 14px;
    }

    .talent-wrapper .talent-card-header {
        padding: 14px 16px;
    }

    .talent-wrapper .talent-card-body {
        padding: 16px 14px 18px;
    }

    .talent-wrapper .talent-item-text {
        font-size: 12.5px;
        padding: 10px 12px;
    }

    .talent-wrapper .prosper-pill {
        padding: 10px 14px;
        font-size: 12px;
    }
}


/* =============================================
   SECTION
============================================= */
.our-programs-section {
    margin: 0 auto;
}

.codelivery-top-heading {
    font-size: clamp(26px, 4.5vw, 46px);
    font-weight: 900;
    color: #0d0d0d;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.codelivery-top-heading span {
    color: #2456f6;
}

/* =============================================
   PROGRAM CARD — shared base
============================================= */
.our-programs-section .prog-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e4e9f5;
    box-shadow: 0 4px 22px rgba(30, 60, 180, 0.07);
    overflow: hidden;
}

/* ── LEFT PANEL (blue gradient) ── */
.our-programs-section .prog-left {
    background: linear-gradient(160deg, #1a3ae0 0%, #2456f6 60%, #3a6fff 100%);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.our-programs-section .prog-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.10) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    z-index: 0;
}

.our-programs-section .prog-left-inner {
    position: relative;
    z-index: 1;
}

/* Watermark background text */
.our-programs-section .prog-bg-text {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 12px;
}

/* Optional icon above title */
.our-programs-section .prog-title-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.18);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 14px;
}

.our-programs-section .prog-left h3 {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.our-programs-section .prog-expand {
    font-size: clamp(11.5px, 1.2vw, 13px);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    margin-bottom: 12px;
}

.our-programs-section .prog-tagline {
    font-size: clamp(11px, 1.1vw, 12.5px);
    color: rgba(255, 255, 255, 0.50);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* ── RIGHT PANEL (white, list of items) ── */
.our-programs-section .prog-right {
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.our-programs-section .prog-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f3fb;
}

.our-programs-section .prog-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.our-programs-section .prog-item:first-child {
    padding-top: 0;
}

.our-programs-section .prog-item-icon {
    width: 40px;
    height: 40px;
    background: #2456f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #ffffff;
    flex-shrink: 0;
}

.our-programs-section .prog-item-text h6 {
    font-size: clamp(13px, 1.5vw, 14.5px);
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 3px;
    line-height: 1.2;
}

.our-programs-section .prog-item-text p {
    font-size: clamp(11.5px, 1.25vw, 13px);
    color: #666;
    line-height: 1.62;
    margin: 0;
}

/* =============================================
   RESPONSIVE — LARGE DESKTOP (≥1400px)
============================================= */
@media (min-width: 1400px) {
    .our-programs-section .prog-left {
        padding: 42px 36px;
    }
    .our-programs-section .prog-right {
        padding: 32px 38px;
    }
}

/* =============================================
   RESPONSIVE — LAPTOP (993px – 1199px)
============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .our-programs-section .prog-left {
        padding: 30px 26px;
    }
    .our-programs-section .prog-right {
        padding: 24px 24px;
    }
}

/* =============================================
   RESPONSIVE — TABLET LANDSCAPE (≤992px)
============================================= */
@media (max-width: 992px) {
    .our-programs-section .prog-card {
        border-radius: 18px;
    }
    .our-programs-section .prog-left {
        padding: 28px 24px;
    }
    .our-programs-section .prog-right {
        padding: 24px 24px;
    }
    /* Reverse card: reset flex-row-reverse on tablet */
    .our-programs-section .prog-card-reverse .row {
        flex-direction: row !important;
    }
}

/* =============================================
   RESPONSIVE — TABLET PORTRAIT (≤767px)
============================================= */
@media (max-width: 767px) {
    .our-programs-section .prog-card {
        border-radius: 16px;
    }
    .our-programs-section .prog-left {
        padding: 24px 22px;
    }
    .our-programs-section .prog-right {
        padding: 22px 22px;
    }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤575px)
============================================= */
@media (max-width: 575px) {
    .our-programs-section {
        padding: 28px 12px;
    }
    .our-programs-section .prog-card {
        border-radius: 14px;
    }
    .our-programs-section .prog-left {
        padding: 20px 18px;
    }
    .our-programs-section .prog-left h3 {
        font-size: 18px;
    }
    .our-programs-section .prog-right {
        padding: 18px 16px;
    }
    .our-programs-section .prog-item-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
        border-radius: 8px;
    }
    .our-programs-section .prog-item {
        gap: 11px;
    }
    .our-programs-section .prog-title-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* =============================================
   RESPONSIVE — VERY SMALL MOBILE (≤380px)
============================================= */
@media (max-width: 380px) {
    .our-programs-section .prog-left {
        padding: 16px 14px;
    }
    .our-programs-section .prog-right {
        padding: 16px 14px;
    }
    .our-programs-section .prog-item-text h6 {
        font-size: 13px;
    }
}


/* =============================================
           SECTION WRAPPER
        ============================================= */
.cp-section {
    margin: 0 auto;
}

/* =============================================
           TOP HEADING — outside the card, centered
        ============================================= */
.cp-section-head {
    text-align: center;
    margin-bottom: 28px;
}

.cp-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
}

.cp-section-head h2 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    color: #000000;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 0;
}

.cp-section-head h2 span {
    color: #2456f6;
}

/* =============================================
           MAIN CARD
        ============================================= */
.cp-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #e4e9f5;
    box-shadow: 0 6px 28px rgba(30, 60, 180, 0.09);
    overflow: hidden;
}

/* =============================================
           CARD BODY — 2 COLUMNS
        ============================================= */
.cp-card-body {
    padding: 28px 32px 32px;
}

/* Divider between columns on desktop */
.cp-col-left {
    border-right: 1.5px solid #eef2ff;
    padding-right: 28px;
}

.cp-col-right {
    padding-left: 28px;
}

/* =============================================
           TRACK BADGE
        ============================================= */
.cp-track-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f0f4ff;
    border: 1.5px solid #dce6ff;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #2456f6;
    margin-bottom: 20px;
}

.cp-track-badge i {
    font-size: 12px;
}

/* =============================================
           ITEM ROW
        ============================================= */
.cp-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid #f0f3fb;
}

.cp-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cp-item-icon {
    width: 36px;
    height: 36px;
    background: #eef2ff;
    border: 1.5px solid #dce6ff;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #2456f6;
    flex-shrink: 0;
}

/* right column accent color */
.cp-col-right .cp-item-icon {
    background: #e8f4ff;
    border-color: #c8e4ff;
    color: #0d7ae8;
}

.cp-item-text h6 {
    font-size: clamp(13px, 1.4vw, 14px);
    font-weight: 700;
    color: #0d0d0d;
    margin-bottom: 3px;
    line-height: 1.25;
}

.cp-item-text p {
    font-size: clamp(11.5px, 1.2vw, 12.5px);
    color: #777;
    line-height: 1.62;
    margin: 0;
}

/* =============================================
           MOBILE DIVIDER — hidden, not used
        ============================================= */
.cp-mobile-divider {
    display: none;
}

/* =============================================
           RESPONSIVE — LAPTOP (993px – 1199px)
        ============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .cp-card-body {
        padding: 24px 26px 28px;
    }

    .cp-col-left {
        padding-right: 22px;
    }

    .cp-col-right {
        padding-left: 22px;
    }
}

/* =============================================
           RESPONSIVE — TABLET LANDSCAPE (≤992px)
        ============================================= */
@media (max-width: 992px) {
    .cp-card {
        border-radius: 18px;
    }

    .cp-card-header {
        padding: 20px 24px 18px;
    }

    .cp-card-body {
        padding: 22px 24px 26px;
    }

    .cp-col-left {
        padding-right: 14px;
    }

    .cp-col-right {
        padding-left: 14px;
    }

    .cp-item-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .cp-item-text h6 {
        font-size: 12.5px;
    }

    .cp-item-text p {
        font-size: 11.5px;
    }
}

/* =============================================
           RESPONSIVE — TABLET PORTRAIT (≤767px)
        ============================================= */
@media (max-width: 767px) {
    .cp-section {
        padding: 36px 0 40px;
    }

    .cp-section-head {
        margin-bottom: 20px;
    }

    .cp-card {
        border-radius: 16px;
    }

    .cp-card-header {
        padding: 18px 20px 16px;
    }

    .cp-card-body {
        padding: 18px 18px 22px;
    }

    .cp-col-left {
        padding-right: 10px;
    }

    .cp-col-right {
        padding-left: 10px;
    }

    .cp-item {
        gap: 10px;
        padding: 10px 0;
    }

    .cp-item-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
        border-radius: 7px;
    }

    .cp-track-badge {
        font-size: 10.5px;
        padding: 5px 12px;
        margin-bottom: 14px;
    }

    .cp-item-text h6 {
        font-size: 12px;
    }

    .cp-item-text p {
        font-size: 11px;
    }
}

/* =============================================
           RESPONSIVE — SMALL MOBILE (≤575px)
        ============================================= */
@media (max-width: 575px) {
    .cp-section {
        padding: 28px 0 32px;
    }

    .cp-card {
        border-radius: 14px;
    }

    .cp-card-header {
        padding: 16px 14px 14px;
    }

    .cp-card-header-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .cp-card-header h5 {
        font-size: 15px;
    }

    .cp-card-header p {
        font-size: 11.5px;
    }

    .cp-card-body {
        padding: 14px 14px 18px;
    }

    .cp-col-left {
        padding-right: 8px;
        border-right-width: 1px;
    }

    .cp-col-right {
        padding-left: 8px;
    }

    .cp-item {
        gap: 8px;
        padding: 9px 0;
    }

    .cp-item-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
        border-radius: 6px;
    }

    .cp-track-badge {
        font-size: 10px;
        padding: 4px 10px;
        gap: 5px;
        margin-bottom: 12px;
    }

    .cp-item-text h6 {
        font-size: 11.5px;
    }

    .cp-item-text p {
        font-size: 10.5px;
    }
}

/* =============================================
           RESPONSIVE — VERY SMALL MOBILE (≤380px)
        ============================================= */
@media (max-width: 380px) {
    .cp-card-header h5 {
        font-size: 13px;
    }

    .cp-card-body {
        padding: 12px 10px 14px;
    }

    .cp-col-left {
        padding-right: 6px;
    }

    .cp-col-right {
        padding-left: 6px;
    }

    .cp-item-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .cp-item-text h6 {
        font-size: 11px;
    }

    .cp-item-text p {
        font-size: 10px;
    }
}


/* =============================================
           SECTION
        ============================================= */
.life-section {
    margin: 0 auto;
    background: #eef1fb;
}

/* =============================================
           SECTION HEADING — outside cards, centered
        ============================================= */
.life-section-head {
    text-align: center;
    margin-bottom: 36px;
}

.life-section-head h2 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    color: #0d0d0d;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin: 0 0 10px;
}

.life-section-head h2 span {
    color: #2456f6;
}

/* =============================================
           CARD BASE
        ============================================= */
.life-card {
    border-radius: 20px;
    border: 1px solid #e4e9f5;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

/*.life-card:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 16px 40px rgba(30, 80, 220, 0.13);*/
/*    border-color: #b8ceff;*/
/*}*/

/* =============================================
           CARD TOP BANNER (colored strip)
        ============================================= */
.life-card-banner {
    padding: 28px 28px 24px;
    position: relative;
    overflow: hidden;
}

.life-card-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
}

.life-card-banner::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

/* Card 1 — Culture & Values — deep navy */
.life-card:nth-child(1) .life-card-banner {
    background: linear-gradient(135deg, #0f1d4a 0%, #1a2f6e 100%);
}

/* Card 2 — Innovation — blue */
.life-card:nth-child(2) .life-card-banner {
    background: linear-gradient(135deg, #2456f6 0%, #3a6fff 100%);
}

/* Card 3 — Global Collaboration — teal-blue */
.life-card:nth-child(3) .life-card-banner {
    background: linear-gradient(135deg, #0d7ae8 0%, #1a9fd4 100%);
}

.life-card-banner .inner {
    position: relative;
    z-index: 1;
}

.life-card-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.16);
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
}

.life-card-banner h5 {
    font-size: clamp(16px, 1.8vw, 19px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

/* =============================================
           CARD BODY
        ============================================= */
.life-card-body {
    background: #ffffff;
    padding: 22px 26px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.life-card-para {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.life-card-para-dot {
    width: 7px;
    height: 7px;
    min-width: 7px;
    background: #2456f6;
    border-radius: 50%;
    margin-top: 6px;
}

/* Card 2 dot — blue */
.life-card:nth-child(2) .life-card-para-dot {
    background: #2456f6;
}

/* Card 3 dot — teal */
.life-card:nth-child(3) .life-card-para-dot {
    background: #0d7ae8;
}

.life-card-para p {
    font-size: clamp(12px, 1.3vw, 13.5px);
    color: #555;
    line-height: 1.75;
    margin: 0;
}

/* =============================================
           RESPONSIVE — LAPTOP (993px – 1199px)
        ============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .life-card-banner {
        padding: 24px 24px 20px;
    }

    .life-card-body {
        padding: 20px 22px 24px;
    }

    .life-card-icon-wrap {
        width: 46px;
        height: 46px;
        font-size: 21px;
    }
}

/* =============================================
           RESPONSIVE — TABLET LANDSCAPE (≤992px)
        ============================================= */
@media (max-width: 992px) {
    .life-section {
        padding: 44px 0 48px;
    }

    .life-card {
        border-radius: 18px;
    }

    .life-card-banner {
        padding: 22px 22px 18px;
    }

    .life-card-body {
        padding: 18px 20px 22px;
        gap: 12px;
    }

    .life-card-icon-wrap {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 12px;
    }
}

/* =============================================
           RESPONSIVE — TABLET PORTRAIT (≤767px)
        ============================================= */
@media (max-width: 767px) {
    .life-section {
        padding: 36px 0 40px;
    }

    .life-section-head {
        margin-bottom: 26px;
    }

    .life-card {
        border-radius: 16px;
    }

    .life-card-banner {
        padding: 20px 20px 16px;
    }

    .life-card-body {
        padding: 16px 18px 20px;
        gap: 12px;
    }

    .life-card-icon-wrap {
        width: 42px;
        height: 42px;
        font-size: 19px;
        margin-bottom: 12px;
        border-radius: 11px;
    }
}

/* =============================================
           RESPONSIVE — SMALL MOBILE (≤575px)
        ============================================= */
@media (max-width: 575px) {
    .life-section {
        padding: 28px 0 32px;
    }

    .life-section-head {
        margin-bottom: 20px;
    }

    .life-card {
        border-radius: 14px;
    }

    .life-card-banner {
        padding: 18px 18px 14px;
    }

    .life-card-body {
        padding: 14px 16px 18px;
        gap: 10px;
    }

    .life-card-icon-wrap {
        width: 38px;
        height: 38px;
        font-size: 17px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .life-card-banner h5 {
        font-size: 16px;
    }

    .life-card-para p {
        font-size: 12.5px;
    }

    .life-card-tag {
        font-size: 10.5px;
        padding: 4px 12px;
    }
}

/* =============================================
           RESPONSIVE — VERY SMALL MOBILE (≤380px)
        ============================================= */
@media (max-width: 380px) {
    .life-card-banner {
        padding: 14px 14px 12px;
    }

    .life-card-body {
        padding: 12px 14px 16px;
    }

    .life-card-banner h5 {
        font-size: 15px;
    }

    .life-card-para p {
        font-size: 12px;
    }
}


/* =============================================
           SECTION
        ============================================= */
.join-section {
    padding: 56px 0 60px;
    background: #eef1fb;
}

/* =============================================
           OUTER WRAPPER CARD
        ============================================= */
.join-outer {
    background: linear-gradient(135deg, #0f1d4a 0%, #1a2f6e 55%, #2456f6 100%);
    border-radius: 24px;
    padding: 3px;
    box-shadow: 0 12px 48px rgba(36, 86, 246, 0.28);
    position: relative;
    overflow: hidden;
}

/* Glowing ring effect */
.join-outer::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(106, 159, 255, 0.5), rgba(36, 86, 246, 0.2), rgba(26, 47, 110, 0.1));
    z-index: 0;
}

.join-inner {
    background: linear-gradient(135deg, #0f1d4a 0%, #1a2f6e 55%, #2456f6 100%);
    border-radius: 22px;
    padding: 52px 48px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Dot grid texture */
.join-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* Decorative circle top-right */
.join-inner::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

/* Decorative circle bottom-left */
.join-deco-bl {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

/* =============================================
           CONTENT INNER
        ============================================= */
.join-content {
    position: relative;
    z-index: 2;
}

/* =============================================
           LEFT — TEXT BLOCK
        ============================================= */
.join-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.50);
    margin-bottom: 12px;
}

.join-heading {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.join-heading span {
    color: #6a9fff;
}

.join-desc {
    font-size: clamp(13px, 1.5vw, 15px);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin-bottom: 0;
    max-width: 460px;
}

/* =============================================
           RIGHT — CTA BLOCK
        ============================================= */
.join-cta-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    gap: 20px;
}

/* Main CTA button */
.join-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #2456f6;
    font-size: clamp(14px, 1.5vw, 15.5px);
    font-weight: 800;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.20);
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    white-space: nowrap;
}

.join-btn-main:hover {
    background: #f0f4ff;
    color: #1a3ae0;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.join-btn-main i {
    font-size: 17px;
}

/* =============================================
           DIVIDER LINE (vertical, desktop only)
        ============================================= */
.join-vdivider {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    align-self: stretch;
    margin: 0 8px;
}

/* =============================================
           RESPONSIVE — LAPTOP (993px – 1199px)
        ============================================= */
@media (min-width: 993px) and (max-width: 1199px) {
    .join-inner {
        padding: 44px 40px;
    }
}

/* =============================================
           RESPONSIVE — TABLET LANDSCAPE (≤992px)
        ============================================= */
@media (max-width: 992px) {
    .join-section {
        padding: 44px 0 48px;
    }

    .join-inner {
        padding: 40px 36px;
    }

    .join-outer {
        border-radius: 20px;
    }

    .join-inner {
        border-radius: 18px;
    }

    .join-cta-block {
        align-items: flex-end;
    }

    .join-vdivider {
        display: none;
    }
}

/* =============================================
           RESPONSIVE — TABLET PORTRAIT (≤767px)
        ============================================= */
@media (max-width: 767px) {
    .join-section {
        padding: 36px 0 40px;
    }

    .join-outer {
        border-radius: 18px;
    }

    .join-inner {
        padding: 34px 28px;
        border-radius: 16px;
    }

    .join-cta-block {
        align-items: flex-start;
        margin-top: 28px;
    }

    .join-vdivider {
        display: none;
    }

    .join-desc {
        max-width: 100%;
    }
}

/* =============================================
           RESPONSIVE — SMALL MOBILE (≤575px)
        ============================================= */
@media (max-width: 575px) {
    .join-section {
        padding: 28px 0 32px;
    }

    .join-outer {
        border-radius: 16px;
        padding: 2px;
    }

    .join-inner {
        padding: 26px 22px;
        border-radius: 14px;
    }

    .join-heading {
        font-size: 22px;
    }

    .join-btn-main {
        width: 100%;
        justify-content: center;
        padding: 15px 28px;
    }

    .join-cta-block {
        width: 100%;
    }
    
}

/* =============================================
           RESPONSIVE — VERY SMALL MOBILE (≤380px)
        ============================================= */
@media (max-width: 380px) {
    .join-inner {
        padding: 22px 16px;
    }

    .join-heading {
        font-size: 20px;
    }

    .join-stat-pill {
        font-size: 10.5px;
        padding: 5px 11px;
    }

    .join-btn-main {
        font-size: 14px;
        padding: 13px 22px;
    }
}