* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background: #F4F9FF;
    /* Bright White Base */
    color: #224172;
    /* Deep blue text */
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    cursor: pointer;
}


/* ================start- NAVIGATION SECTION ==================== */
.jobVac-header {
    width: 100%;
    background: #ffffff;
}

.jobVac-nav {
    padding: 0 40px;
    background-color: #E3F3FB;
    border-bottom: 2px solid #69BBDD;
}

.jobVac-nav-inner {
    max-width: 1250px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ===========================
      LOGO BLOCK
=========================== */

.jobVac-logo-block {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.jobVac-logo-img {
    width: 42px;
    height: auto;
}

.jobVac-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.jobVac-brand {
    font-size: 22px;
    font-weight: 700;
    color: #0B1957;
}

.jobVac-tagline {
    font-size: 13px;
    font-weight: 500;
    color: #5784E6;
}


/* ===========================
       MENU LINKS
=========================== */

.jobVac-menu {
    display: flex;
    gap: 28px;
}

.jobVac-menu a {
    font-size: 16px;
    color: #3b4455;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
}

.jobVac-menu a:hover,
.jobVac-menu a.active {
    color: #3365ff;
}


/* ===========================
       AUTH BUTTONS
=========================== */

.jobVac-auth {
  display: flex;
  gap: 12px;
}

.jobVac-auth button {
  padding: 8px 18px;
  font-size: 15px;
  border: 1px solid #3365ff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  background: #fff;
  color: #3365ff;
  transition: all .25s ease;
}

.jobVac-employer {
  padding: 8px 18px;
  font-size: 15px;
  border: 1px solid #3365ff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  background: #fff;
  color: #3365ff;
  transition: all .25s ease;
}

.jobVac-auth a:hover {
  background: #3365ff;
  color: #fff;
}

.jobVac-auth button:hover {
  background: #3365ff;
  color: #fff;
}

/* ===========================
       MOBILE
=========================== */
@media (max-width: 900px) {
  .jobVac-nav-inner {
    flex-direction: column;
    height: auto;
    gap: 14px;
    padding: 15px 0;
  }

  .jobVac-auth {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* ========================nav-end========================= */




/* - ============================start-login-register============================ - */

/* =========================== POPUP BASE =========================== */

.jobVac-buttons {
    display: flex;
    gap: 15px;
}

.jobVac-buttons button {
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

/* overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.45);
    display: none;
    z-index: 50;
    backdrop-filter: blur(4px);
}

/* popup container */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 380px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,.18);
    transform: translate(-50%, -50%) scale(.85);
    opacity: 1;
    display: none;
    z-index: 100;
    transition: .25s ease;
}

/* show state */
.popup.show {
    display: block;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* content */
.popup-box {
    padding: 35px;
    position: relative;
}

.popup-box h2 {
    margin-bottom: 3px;
    font-size: 24px;
    font-weight: 700;
}

.subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Social Buttons */
.social-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social {
    width: 100%;
    border: 1px solid #ddd;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
}
.social:hover {
    background: #f7f7f7;
}
.social img {
    width: 18px;
}

/* Divider line */
.divider {
    margin: 20px 0;
    text-align: center;
    position: relative;
}
.divider span {
    background: #fff;
    padding: 0 8px;
    font-size: 13px;
    color: #999;
}
.divider::before {
    content: '';
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

/* Input Fields */
.popup input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 12px;
    font-size: 14px;
    transition: .2s;
}
.popup input:focus {
    outline: none;
    border-color: #0066ff;
    box-shadow: 0 0 0 3px rgba(0,102,255,.1);
}

/* Remember / Forgot */
.remember-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 13px;
}
.remember {
    display: flex;
    gap: 5px;
    cursor: pointer;
}
.remember input {
    accent-color: #0066ff;
}

/* Main CTA */
.btn-primary {
    background: #0066ff;
    color: white;
    width: 100%;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    margin-top: 5px;
    transition: .2s;
}
.btn-primary:hover {
    background: #0052dd;
}

/* Form Switch */
.switch {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}
.switch a {
    color: #0066ff;
    text-decoration: none;
}

/* Close X */
.close {
    position: absolute;
    right: 18px;
    top: 14px;
    font-size: 22px;
    cursor: pointer;
    color: #666;
}
.close:hover {
    color: #000;
}

/* Small Screen */
@media (max-width: 420px) {
    .popup {
        width: 90%;
    }
}



/* - ============================end-login-register============================ - */

/* --=========================start- enquire Form============================ -- */


.enq-frm-demo-btn {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.enq-frm-demo-btn:hover {
    background-color: #005fc1;
}

/* Overlay */
.enq-frm-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Form Box */
.enq-frm-box {
    background: #fff;
    width: 380px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: enqSlideUp 0.4s ease;
}

/* Animation */
@keyframes enqSlideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.enq-frm-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 26px;
    color: #333;
    cursor: pointer;
}

/* Titles */
.enq-frm-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0B3D60;
    margin-bottom: 5px;
}

.enq-frm-subtitle {
    font-size: 0.95rem;
    color: #4A5F6A;
    margin-bottom: 20px;
}

/* Inputs */
.enq-frm-form label {
    font-size: 0.9rem;
    color: #1a1a1a;
    display: block;
    margin-top: 12px;
}

.enq-frm-form input,
.enq-frm-form select {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.enq-frm-form input:focus,
.enq-frm-form select:focus {
    border-color: #007BFF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* Radio Group */
.enq-frm-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.enq-frm-radio-group label {
    font-size: 0.9rem;
    color: #333;
}

/* Submit Button */
.enq-frm-btn {
    background-color: #007BFF;
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    margin-top: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enq-frm-btn:hover {
    background-color: #005fc1;
}

/* --=========================end- enquire Form============================ -- */


/* --=========================start-banner============================ -- */

.jb-abt-hero {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(100deg, #f5f8ff 0%, #e8efff 100%);
    color: #224172;
}

.jb-abt-container {
    width: 85%;
    margin: auto;
    max-width: 1300px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.jb-abt-textBox {
    flex: 1;
    min-width: 300px;
}

.jb-abt-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 18px;
}

.jb-abt-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: 0.92;
}

.jb-abt-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #224172;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.jb-abt-btn:hover {
    background: #264ddc;
    transform: translateY(-2px);
}

.jb-abt-imageBox {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.jb-abt-imageBox img {
    width: 100%;
    max-width: 300px;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.45));
}


/* --=========================end-banner============================ -- */

/* ==========================start mission==================== */

/* Base section layout */
.jb-abt-visionmission {
    padding: 50px 6%;
    background: linear-gradient(180deg, #f7faff 0%, #eef5ff 100%);
}

/* Section heading */
.jb-abt-vm-headingblock {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 64px;
}

.jb-abt-vm-title {
    font-size: 38px;
    font-weight: 800;
    color: #0a1638;
    margin-bottom: 10px;
}

.jb-abt-vm-title span {
    background: linear-gradient(90deg, #2563ff, #6cd1ff);
    -webkit-background-clip: text;
    color: transparent;
}

.jb-abt-vm-sub {
    font-size: 17px;
    color: #516084;
    line-height: 1.6;
}

/* Cards container */
.jb-abt-vm-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    max-width: 1160px;
    margin: auto;
}

/* Mission + Vision blocks */
.jb-abt-vm-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(120, 152, 235, 0.2);
    transition: transform .25s ease, box-shadow .25s ease;
}

.jb-abt-vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(46, 110, 255, 0.1);
}

/* pill label on top left */
.jb-abt-vm-label {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #e8f1ff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 700;
    color: #2563ff;
    letter-spacing: .3px;
}

/* Titles in cards */
.jb-abt-vm-cardtitle {
    margin-top: 40px;
    font-size: 22px;
    font-weight: 700;
    color: #0a1638;
    margin-bottom: 14px;
}

/* Content text */
.jb-abt-vm-text {
    color: #43516d;
    font-size: 15px;
    line-height: 1.8;
}

/* SEO tags — subtle chips */
.jb-abt-vm-tags {
    margin-top: 22px;
}

.jb-abt-vm-tags span {
    display: inline-block;
    padding: 6px 12px;
    margin: 4px 6px 0 0;
    font-size: 12px;
    background: #f1f6ff;
    border-radius: 14px;
    color: #2563ff;
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 980px) {
    .jb-abt-vm-container {
        grid-template-columns: 1fr;
    }

    .jb-abt-vm-card {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .jb-abt-vm-title {
        font-size: 30px;
    }
}


/* ==========================end mission==================== */




/* ——————————————————————————————start What We Do — Section—————————————————————————————— */

.jb-abt-wedo {
    padding: 50px 6%;
    background: #ffffff;
}

/* Heading Block */
.jb-abt-wedo-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}

.jb-abt-wedo-title {
    font-size: 40px;
    font-weight: 800;
    color: #0a1638;
}

.jb-abt-wedo-sub {
    font-size: 17px;
    color: #516084;
    margin-top: 12px;
    line-height: 1.7;
}

/* Layout Grid */
.jb-abt-wedo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    max-width: 1200px;
    margin: auto;
}

/* Cards */
.jb-abt-wedo-card {
    background: #f8fbff;
    border: 1px solid rgba(60, 90, 200, 0.15);
    border-radius: 18px;
    padding: 38px;
    transition: .28s ease;
    position: relative;
    overflow: hidden;
}

.jb-abt-wedo-card:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(0, 60, 190, 0.1);
}

/* Pill Labels */
.jb-abt-wedo-pill {
    background: #e7f1ff;
    padding: 6px 16px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 700;
    color: #1d4fff;
    display: inline-block;
}

.jb-abt-wedo-pill-emp {
    background: #ffecec;
    color: #d93030;
}

/* Titles inside cards */
.jb-abt-wedo-cardtitle {
    margin-top: 18px;
    font-size: 22px;
    font-weight: 700;
    color: #0d193e;
}

/* List items */
.jb-abt-wedo-list {
    margin: 22px 0;
    padding-left: 0;
    list-style: none;
}

.jb-abt-wedo-list li {
    font-size: 15px;
    color: #3d4f6b;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* Description text */
.jb-abt-wedo-desc {
    font-size: 14.8px;
    color: #516084;
    line-height: 1.7;
    margin-top: 10px;
}

/* ——————————————————————————RESPONSIVE————————————————————————— */
@media (max-width: 980px) {
    .jb-abt-wedo-grid {
        grid-template-columns: 1fr;
    }

    .jb-abt-wedo-card {
        padding: 32px;
    }
}

@media (max-width: 600px) {
    .jb-abt-wedo-title {
        font-size: 32px;
    }
}

/* ——————————————————————————————end What We Do — Section—————————————————————————————— */



/* ————————————————————————————— start Values Section —————————————————————————————— */

/* Core Values — new circular badge grid */
.jb-abt-values3 {
    padding: 50px 6%;
    background: linear-gradient(180deg, #fbfdff 0%, #eef6ff 100%);
    color: #0b2340;
}

.jb-abt-values3-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* header */
.jb-abt-values3-header {
    text-align: center;
    margin-bottom: 34px;
}

.jb-abt-values3-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px;
    color: #071036;
}

.jb-abt-values3-header p {
    margin: 0;
    color: #46607f;
    font-size: 15.5px;
}

/* grid */
.jb-abt-values3-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 24px;
}

/* card */
.jb-abt-values3-card {
    background: white;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    border: 1px solid rgba(9, 36, 78, 0.05);
    transition: transform .28s cubic-bezier(.2, .9, .3, 1), box-shadow .28s;
    position: relative;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* badge circle */
.jb-abt-values3-badge {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: -48px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    box-shadow: 0 8px 28px rgba(20, 60, 120, 0.06);
    border: 4px solid #f0f6ff;
    color: #1f3270;
    transition: transform .28s, box-shadow .28s, background .28s;
}

/* icons inside badge scale */
.jb-abt-values3-badge svg {
    display: block;
    color: #1f3270;
}

/* heading */
.jb-abt-values3-card h3 {
    margin-top: 16px;
    font-size: 16.5px;
    color: #072044;
    font-weight: 700;
}

/* paragraph */
.jb-abt-values3-card p {
    color: #546b86;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
    flex: 1 0 auto;
}

/* hover */
.jb-abt-values3-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(15, 40, 110, 0.12);
}

.jb-abt-values3-card:hover .jb-abt-values3-badge {
    transform: scale(1.06);
    box-shadow: 0 20px 48px rgba(35, 85, 210, 0.14);
    background: linear-gradient(135deg, #e8f0ff 0%, #d7ecff 100%);
    color: #14306d;
}

/* accent colors per card (use nth-child for variety) */
.jb-abt-values3-grid .jb-abt-values3-card:nth-child(1) .jb-abt-values3-badge {
    background: linear-gradient(135deg, #fff8e6, #fff3d1);
    color: #9b5a00;
}

.jb-abt-values3-grid .jb-abt-values3-card:nth-child(2) .jb-abt-values3-badge {
    background: linear-gradient(135deg, #fff0f6, #ffe6f0);
    color: #b13a5b;
}

.jb-abt-values3-grid .jb-abt-values3-card:nth-child(3) .jb-abt-values3-badge {
    background: linear-gradient(135deg, #e9fff6, #d7fff0);
    color: #0a7a53;
}

.jb-abt-values3-grid .jb-abt-values3-card:nth-child(4) .jb-abt-values3-badge {
    background: linear-gradient(135deg, #e8f0ff, #d7ecff);
    color: #1f4fc4;
}

.jb-abt-values3-grid .jb-abt-values3-card:nth-child(5) .jb-abt-values3-badge {
    background: linear-gradient(135deg, #f6f7ff, #eef3ff);
    color: #4b4fbf;
}

/* CTA row */
.jb-abt-values3-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 28px;
}

.jb-abt-btn-primary {
    background: linear-gradient(90deg, #2466ff, #60b7ff);
    border: none;
    color: #00102a;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(36, 102, 255, 0.12);
}

.jb-abt-link-secondary {
    background: transparent;
    color: #2466ff;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(36, 102, 255, 0.12);
    font-weight: 600;
}

/* responsive layout */
@media (max-width: 1100px) {
    .jb-abt-values3-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .jb-abt-values3-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .jb-abt-values3-card {
        min-height: 150px;
        padding: 18px;
    }

    .jb-abt-values3-badge {
        width: 64px;
        height: 64px;
        margin-top: -36px;
    }
}

@media (max-width: 420px) {
    .jb-abt-values3-grid {
        grid-template-columns: 1fr;
    }

    .jb-abt-values3-header h2 {
        font-size: 22px;
    }

    .jb-abt-values3-header p {
        font-size: 14px;
    }
}

/* ————————————————————————————— end Values Section —————————————————————————————— */





/* =============================== Start Industries We Serve ===================================== */

/* outer section */
.jb-abt-industries {
    padding: 80px 6%;
    background: #f9fbff;
    font-family: "Inter","Poppins",sans-serif;
}

/* container */
.jb-abt-industries-inner {
    max-width: 1200px;
    margin: auto;
}

/* header */
.jb-abt-industries-header {
    text-align: center;
    margin-bottom: 40px;
}
.jb-abt-industries-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0b1e36;
}
.jb-abt-industries-header p {
    color: #4b627f;
    font-size: 15px;
}

/* grid */
.jb-abt-industries-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 22px;
}

/* single card */
.jb-abt-industry-card {
    background: linear-gradient(150deg,#ffffff 0%,#f4f9ff 100%);
    border-radius: 16px;
    padding: 26px 14px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.jb-abt-industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(50,100,200,0.12);
}

/* icon */
.jb-abt-industry-icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 10px;
}

/* label */
.jb-abt-industry-card h3 {
    margin: 0;
    font-size: 15.5px;
    font-weight: 600;
    color: #0b1e36;
}

/* responsive */
@media (max-width: 980px) {
    .jb-abt-industries-grid {
        grid-template-columns: repeat(3,1fr);
    }
}
@media (max-width: 620px) {
    .jb-abt-industries-grid {
    grid-template-columns: repeat(2,1fr);
}
}
@media (max-width: 420px) {
    .jb-abt-industries-header h2 { font-size: 24px; }
    .jb-abt-industries-grid { grid-template-columns:1fr; }
}

/* =============================== end Industries We Serve ===================================== */



.jb-abt-work {
    padding: 90px 6%;
    background: #f9fbff;
    font-family: "Inter", sans-serif;
}

.jb-abt-work-inner {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.jb-abt-work-head {
    text-align: center;
    margin-bottom: 60px;
}
.jb-abt-work-head h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0b1957;
}
.jb-abt-work-head p {
    font-size: 15px;
    color: #64708c;
}

/* Columns */
.jb-abt-work-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* BOXES */
.jb-abt-work-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 45px 28px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.jb-abt-work-box h3 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
}

/* Steps Wrapper */
.jb-abt-work-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* STEP CARD */
.jb-abt-step {
    background: #f1f6ff;
    border-radius: 12px;
    padding: 22px 18px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transition: .25s ease;
}
.jb-abt-step:hover {
    background: #e5f1ff;
    transform: translateY(-4px);
}

/* Step Number Circle */
.jb-abt-step-num {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #1e5cff;
    color: #fff;
    width: 36px;
    height: 36px;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.jb-abt-step h4 {
    font-size: 17px;
    margin: 0 0 8px;
    color: #0b1957;
}

.jb-abt-step p {
    color: #4b5974;
    font-size: 14px;
    line-height: 1.5;
}

/* Job Seekers Theme */
.jb-abt-work-box.seekers {
    border-left: 4px solid #2f74ff;
}

/* Employers Theme */
.jb-abt-work-box.employers {
    border-left: 4px solid #1dbd6b;
}

/* Responsive */
@media(max-width: 980px) {
    .jb-abt-work-wrapper {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 540px) {
    .jb-abt-work-head h2 {
        font-size: 26px;
    }
    .jb-abt-work-box {
        padding: 35px 20px;
    }
}























/* =========================start-of-footer===================================== */

/* FOOTER: polished multi-column layout (keeps all sections) */
.job-foot-footer {
    background: linear-gradient(180deg, #041033 0%, #02061a 100%);
    color: #dbe9ff;
    padding: 48px 6%;
    box-shadow: 0 -6px 30px rgba(2, 8, 30, 0.25);
}

/* wrapper grid */
.job-foot-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
    gap: 28px;
    align-items: start;
}

/* columns */
.job-foot-col {}

/* logo block */
.job-foot-logowrap {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
}

.job-foot-logoimg {
    width: 58px;
    height: auto;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
}

.job-foot-brand {
    margin: 0;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
}

.job-foot-tagline {
    margin: 2px 0 0;
    font-size: 13px;
    color: #8fc5ff;
    font-weight: 600;
}

/* short about */
.job-foot-about {
    margin-top: 10px;
    color: #bcd7ff;
    font-size: 14px;
    line-height: 1.6;
    max-width: 420px;
}

/* headings */
.job-foot-heading {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
}

/* link lists */
.job-foot-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.job-foot-links li {
    margin-bottom: 10px;
}

.job-foot-links a {
    color: #cfe2ff;
    text-decoration: none;
    font-size: 14px;
    transition: color .18s ease, transform .18s ease;
}

.job-foot-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* support column */
.job-foot-support {
    color: #dceeff;
    font-size: 14px;
    margin: 6px 0;
}

.job-foot-support a {
    color: #fff;
    text-decoration: underline;
}

/* CTA button in footer (subtle) */
.job-foot-cta {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 14px;
    background: linear-gradient(90deg, #2c7bff, #6ab3ff);
    color: #001331;
    font-weight: 700;
    font-size: 13px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(66, 133, 244, 0.12);
}

/* bottom copyright */
.job-foot-bottom {
    max-width: 1200px;
    margin: 28px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.job-foot-bottom p {
    color: #9fb0d9;
    font-size: 13px;
    margin: 0;
    letter-spacing: 0.2px;
}

/* responsiveness */
@media (max-width: 980px) {
    .job-foot-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .job-foot-about {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .job-foot-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .job-foot-logowrap {
        align-items: flex-start;
    }

    .job-foot-cta {
        width: 100%;
        text-align: center;
    }
}



/* =========================end-of-footer===================================== */