/* IBM landing - from standalone bundle (Heebo via Google Fonts) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    /* Brand palette from logo */
    --iron: #dbdee1;        /* light gray */
    --madison: #0b2f5f;     /* deep navy - primary */
    --astral: #307cb4;      /* mid blue - accent */
    --astral-rgb: 48,124,180;
    --glacier: #6c9cc4;     /* light blue - secondary */
    --madison-rgb:11,47,95;
    --madison-dark: #061d3d;
    --madison-darker: #04132a;
    --astral-dark: #225e8a;
    --astral-light: #4a96ce;
    --gold:#cf9524;
    --white: #ffffff;
    --off-white: #f7f9fc;
    --bg-soft: #eef2f7;
    --ink: #0a1929;
    --ink-2: #2c3e54;
    --muted: #5e7691;
    --muted-2: #8ea3bb;
    --border: rgba(11,47,95,0.10);
    --border-strong: rgba(11,47,95,0.18);
    --font: 'Heebo', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font);
    background: var(--white);
    color: var(--ink);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  img { max-width: 100%; display: block; }

  /* === NAV === */
  nav {
    position: fixed;
    top: 0; right: 0; left: 0;
    z-index: 100;
    background: var(--white);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0 18px;
    height: 100px;
    transition: box-shadow 0.25s ease, background 0.25s ease;
  }
  .nav-inner {
    width: min(1280px, 100%);
    margin-inline: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  nav.nav-scrolled {
    box-shadow: 0 6px 24px rgba(11,47,95,0.08);
    background: rgba(255,255,255,0.97);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .nav-logo img { height:auto; width: auto; max-width: 170px; object-fit: contain; }
  .nav-logo-fallback {
    color: var(--madison);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.6px;
    line-height: 1;
  }
  .nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--madison);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-main-menu { flex: 1 1 auto; min-width: 0; }
  .nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0;
    padding: 0;
  }
  .nav-menu li { margin: 0; padding: 0; }
  .nav-menu a {
    display: inline-block;
    color: var(--madison);
    text-decoration: none;
    font-size:18px;
    font-weight: 600;
    padding: 6px 8px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
  }
  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    color: var(--astral-dark);
    background: rgba(48,124,180,0.1);
  }
  .mobile-menu-actions { display: none; }
  .mobile-menu-btn {
    text-decoration: none;
    text-align: center;
  }
  .nav-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
  .nav-cta a.btn-ghost {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-cta a.btn-ghost svg, .mobile-menu-btn-phone svg { color: var(--gold); }
  /* Unified CTA sizing across nav + hero. */
  .btn-primary,
  .btn-ghost,
  .btn-hero,
  .btn-wa,
  .mobile-menu-btn,
  .process-cta-btn,
  .services-cta-btn,
  .mid-cta-btn,
  .form-submit {
    border-radius: 8px;
    min-height:55px;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  /* Primary action - dark blue background, white text. */
  .btn-primary,
  .btn-hero,
  .mobile-menu-btn-phone,
  .process-cta-btn-phone,
  .mid-cta-btn--primary,
  .services-cta-btn-phone,
  .form-submit {
    background: var(--madison);
    color: var(--white);
    border: 1px solid transparent;
  }

  /* Secondary action - white background, blue text. */
  .btn-ghost,
  .btn-wa,
  .mobile-menu-btn-wa,
  .mobile-menu-btn-contact,
  .process-cta-btn-contact,
  .services-cta-btn-contact,
  .mid-cta-btn--secondary {
    background: var(--white);
    color: var(--madison);
    border: 1px solid var(--border-strong);
  }

  .btn-primary {
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .btn-primary:hover { background: var(--madison-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(4,19,42,0.22);}
  .btn-ghost {
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .btn-ghost:hover { border-color: var(--madison); color: var(--madison); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(4,19,42,0.22);}

  /* === HERO === */
  .hero {
    background-color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    min-height: 78vh;
    margin-top:100px;
    padding-bottom: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .hero::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #FFFFFF;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    height: 50px;
    width: 100%;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--white);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 1) 50%);
  }
  /* Hero: same horizontal band as .container (1280px + 48px gutters) */
  .hero-content {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    align-self: stretch;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0px;
    min-height: 0;
    box-sizing: border-box;
  }
  /* .hero-content:not(:has(.hero-workers-overlay)) {
    justify-content: center;
    min-height: calc(78vh - 76px - 32px);
  } */
  .hero-content:has(.hero-workers-overlay) {
    align-items: stretch;
    padding-block: 0;
  }
  .hero-content,
  .hero-content * {
    box-sizing: border-box;
  }
  .hero-text {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: clamp(1.25rem, 3vh, 2.25rem) 0 clamp(1.5rem, 4vh, 2.5rem) 0;
    min-width: 0;
    /* text-shadow: 0 2px 16px rgba(4,19,42,0.38); */
  }
  /* .hero-content:has(.hero-workers-overlay) .hero-text {
    justify-content: center;
  }
  .hero-content:not(:has(.hero-workers-overlay)) .hero-text {
    flex: 1 1 100%;
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
    padding: 88px 0 24px;
  } */
  /* Wrapper stretches in flex row; img fills frame (img alone rarely stretches to full height). */
  .hero-workers-frame {
    flex: 0 0 50%;
    width: 50%;
    position: relative;
    align-self: stretch;
    min-height: 0;
    overflow: hidden;
    z-index: 1;
  }
  .hero-workers-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center bottom;
    pointer-events: none;
    display: block;
    opacity: 0.98;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 28px;
    color: var(--madison-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    width: fit-content;
  }
  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
  }
  .hero h1 {
    font-size: clamp(40px, 4.4vw, 64px);
    font-weight: 900;
    line-height: 1.06;
    color: var(--madison-dark);
    letter-spacing: -1.8px;
    max-width: 100%;
    margin-bottom: 2px;
    animation: ibmHeroTitleIn 0.8s ease both;
  }
  .hero-sub-heading {
    font-size: clamp(40px, 4.4vw, 64px);
    font-weight: 900;
    line-height: 1.06;
    color: var(--astral);
    letter-spacing: -1.8px;
    margin-bottom: 26px;
    animation: ibmHeroTitleIn 0.95s ease both;
  }
  .hero-sub {
    font-size: 18px;
    font-weight: 400;
    color: var(--madison-dark);
    max-width: 540px;
    line-height: 1.65;
    margin-bottom: 16px;
    animation: ibmHeroTitleIn 1.08s ease both;
  }
  .hero-sub .helighted_sub { color: var(--gold); font-weight: 600; }
  .hero-company {
    font-size: 14px;
    color: var(--madison-dark);
    margin-bottom: 36px;
    line-height: 1.6;
    animation: ibmHeroTitleIn 1.2s ease both;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .hero-countries {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    font-size: 14px;
    color: var(--madison);
    font-weight: 500;
    animation: ibmHeroTitleIn 1.3s ease both;
  }
  .hero-countries span {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2px 4px;
    line-height: 1.35;
    font-weight: 300;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-countries .hero-countries-label {
    padding: 2px 0 2px 4px;
    color: var(--madison-dark);
    font-weight: 500;
    font-size: 16px;
  }
  .btn-hero {
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.25s;
  }
  .btn-hero:hover { background: var(--madison-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(4,19,42,0.22);}
  .btn-wa {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;

  }
  .btn-hero-phone { display: inline-flex; }
  .btn-hero-phone svg{ color: var(--gold); }
  .btn-hero-wa { display: none; }
  .btn-wa:hover { border-color: var(--madison); color: var(--madison); background: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(4,19,42,0.22); }
  .wa-icon { width: 20px; height: 20px; }

  @keyframes ibmHeroTitleIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 900px) {
    .hero {
      min-height: 0;
    }
    .hero-content {
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      max-width: 1280px;
      padding: 0 20px;
      min-height: 0;
    }
    .hero-text,
    .hero-workers-frame {
      flex: 1 1 100%;
      width: 100%;
    }
    .hero-text {
      padding: 1.5rem 0 28px;
      max-width: none;
    }
    .hero-content:has(.hero-workers-overlay) .hero-text {
      justify-content: flex-start;
    }
    .hero-workers-frame {
      display: none;
    }
    .btn-hero-phone { display: none; }
    .btn-hero-wa { display: inline-flex; }
    .hero-actions { gap: 10px; }
    .hero-countries { margin-top: 14px; font-size: 13px; }
  }

  /* === TRUST BAR === */
  .trust-bar {
    position: relative;
    overflow: hidden;
    margin-top:-60px;
  }

  @media screen and (max-height:768px) {
   .trust-bar {
    margin-top:-40px;
  }
}
  /* .trust-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--astral), transparent);
  } */
  .trust-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #0A2546;
    background: linear-gradient(0deg, rgba(10, 37, 70, 1) 0%, rgba(13, 41, 77, 1) 50%, rgba(12, 45, 87, 1) 100%);
    padding: 20px 0;
    border-radius:1rem;
  }
  .trust-item {
    text-align: center;
    padding: 12px 24px;
    border-inline-start: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .trust-item .trust-icon {
    width:65px;
    height: 65px;
    margin: 0 0 10px 0;
    background: #112F56;
    background: linear-gradient(71deg, rgba(31, 71, 119, 1) 0%, rgba(31, 71, 119, 1) 29%, rgba(17, 47, 86, 1) 100%);
    border-radius: 50%;
    border: 1px solid var(--astral);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .trust-item .trust-icon img { width: 38px; display: block; }
  .trust-bar-inner > .trust-item:first-child {
    border-inline-start: none;
  }
  .trust-num {
    font-size: 44px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 8px;
  }
  .trust-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    line-height: 1.5;
  }

  /* === SECTION BASE === */
  section { scroll-margin-top: 90px; }
  .section-light { background: var(--white); }
  .section-soft { background: var(--off-white); }
  .section-dark { background: var(--madison); color: var(--white); }
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 0px;
  }
  .section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--astral);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before {
    content: '';
    width: 28px; height: 2px;
    background: var(--astral);
    flex-shrink: 0;
  }
  .section-dark .section-label { color: var(--glacier); }
  .section-dark .section-label::before { background: var(--glacier); }

  .section-title {
    font-size: clamp(34px, 3.6vw, 52px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--madison);
    margin-bottom: 18px;
  }
  .section-dark .section-title { color: var(--white); }
  .section-title em {
    font-style: normal;
    color: var(--astral);
    background-image: linear-gradient(90deg, var(--astral) 0%, var(--glacier) 45%, var(--astral) 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ibmH2EmShine 3.8s linear infinite;
  }
  .section-dark .section-title em { color: #9cc7ea; }

  /* RTL title entrance: right -> left, only for H2/H3. */
  body.ibm-js h2,
  body.ibm-js h3 {
    opacity: 0;
    transform: translateX(26px);
    filter: blur(1.5px);
    transition: transform 0.7s cubic-bezier(.22,1,.36,1), opacity 0.7s cubic-bezier(.22,1,.36,1), filter 0.7s cubic-bezier(.22,1,.36,1);
    will-change: transform, opacity, filter;
  }
  body.ibm-js h2.ibm-title-in,
  body.ibm-js h3.ibm-title-in {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
  @media (prefers-reduced-motion: reduce) {
    body.ibm-js h2,
    body.ibm-js h3 {
      opacity: 1;
      transform: none;
      filter: none;
      transition: none;
    }
  }
  @keyframes ibmH2EmShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 220% 50%; }
  }

  .section-body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-2);
    max-width: 600px;
    margin-bottom: 56px;
  }
  .section-dark .section-body { color: rgba(255,255,255,0.7); }

  /* === SMART STAFF PLANNER === */
  .staff-planner-section .section-title,
  .staff-planner-section .section-body {
    max-width: 980px;
    margin-inline: auto;
    text-align: center;
  }
  .staff-planner-section .section-body { margin-bottom: 26px; }
  .staff-planner-row {
    max-width: 1080px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 16px 36px -24px rgba(11,47,95,0.28);
  }
  .staff-planner-row-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--madison);
    margin-bottom: 14px;
    text-align: center;
  }
  .staff-planner-sentence {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    align-items: end;
    gap: 10px 12px;
    color: var(--ink-2);
    font-size: 16px;
  }
  .staff-planner-field {
    display: grid;
    gap: 6px;
  }
  .staff-planner-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--madison);
    margin: 0;
  }
  .staff-planner-sentence select {
    width: 100%;
    min-width: 0;
    border-radius: 10px;
    border-color: var(--border-strong);
    background: var(--off-white);
    font-size: 15px;
    font-weight: 600;
    padding: 11px 14px;
    color: var(--ink-2);
  }
  .staff-planner-action {
    margin: 0;
    text-decoration: none;
    min-width: 290px;
    align-self: end;
  }
  .staff-planner-modal[hidden] { display: none; }
  .staff-planner-modal {
    position: fixed;
    inset: 0;
    z-index: 250;
    display: grid;
    place-items: center;
    padding: 18px;
  }
  .staff-planner-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 19, 42, 0.62);
  }
  .staff-planner-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: calc(100vh - 36px);
    overflow: auto;
    background: #fff;
    border-radius: 14px;
    padding: 56px 20px 20px;
    box-shadow: 0 28px 70px rgba(4, 19, 42, 0.35);
  }
  .elig-form-card.staff-planner-popup-form{
    background: var(--off-white);
    border: 1px solid var(--border);
  }
  .staff-planner-popup-form input, .staff-planner-popup-form select{
    background: var(--white);
    color:var(--ink);
    border: 1px solid var(--border);
  }
  .staff-planner-popup-form label{
    color: var(--ink-2);
  }
  .ibm-form-shell .staff-planner-popup-form .wpcf7-form-control.wpcf7-submit{
    background-color: var(--madison) !important;
    color: var(--white) !important;
  }
  .ibm-form-shell .staff-planner-popup-form .wpcf7-response-output{
    color: var(--ink) !important;
  }
  .staff-planner-modal-close {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--madison);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }
  .staff-planner-modal-dialog h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--madison);
    margin-bottom: 6px;
  }
  .staff-planner-modal-subtitle {
    margin-bottom: 10px;
    color: var(--ink-2);
  }
  .staff-planner-modal-summary {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 12px;
    color: var(--ink-2);
    font-size: 14px;
  }
  .staff-planner-popup-form {
    padding: 10px;
    border-radius: 12px;
  }
  .staff-planner-popup-form .form-submit {
    max-width: 270px;
    margin-inline: auto;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
  }
  @media (max-width: 900px) {
    .staff-planner-row { padding: 16px; }
    .staff-planner-sentence {
      grid-template-columns: 1fr;
      font-size: 15px;
      justify-content: initial;
      align-items: initial;
      text-align: right;
    }
    .staff-planner-field { gap: 4px; }
    .staff-planner-sentence select {
      width: 100%;
      min-width: 0;
    }
    .staff-planner-action {
      width: 100%;
      min-width: 0;
    }
    .staff-planner-modal-dialog {
      padding: 52px 16px 16px;
      border-radius: 12px;
    }
    .staff-planner-modal-dialog h3 {
      font-size: 24px;
    }
  }

  /* === WORKER TYPES === */
  .worker-types-section { position: relative; overflow: hidden; background-size: cover; background-repeat: no-repeat; background-position: right center; }
  .worker-types-section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #FFFFFF;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    height:100px;
    width: 100%;
  }
  .worker-types-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(48,124,180,0.08), transparent 70%);
    pointer-events: none;
    display: none;
  }
  .worker-types-section .section-body{ font-weight: 600; color: var(--madison); background: rgba(var(--astral-rgb), 0.6); padding: 5px 10px; border-radius: 5px; max-width: 100%; }
  .worker_wrraper{
    width:100%;
    display:flex;
    justify-content:flex-end;
  }
  .worker_wrraper .worker_inner{
    width:70%;
  }
  .worker-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  @media (max-width: 900px) { .worker-types-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .worker-types-grid { grid-template-columns: 1fr; } }

  .worker-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: default;
    display: flex;
    justify-content:center;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .worker-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 100%; height: 4px;
    background: var(--astral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }
  .worker-card:hover {
    border-color: var(--astral);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(11,47,95,0.15);
  }
  .worker-card:hover::after { transform: scaleX(1); }
  .worker-icon-wrap {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--madison), var(--astral));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--white);
  }
  .worker-icon-wrap svg { width: 28px; height: 28px; }
  .worker-icon-wrap img.worker-icon-img,
  .worker-icon-wrap svg.worker-icon-svg {
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0;
    object-fit: contain;
  }
  .worker-icon-wrap img.worker-card-uploaded-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
  }
  .worker-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--madison);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }
  .worker-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* === BEFORE/AFTER === */
  .ba-section { background: var(--white); }
  .ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
  }
  @media (max-width: 768px) { .ba-grid { grid-template-columns: 1fr; } }
  .ba-col {
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
  }
  .ba-col.bad {
    background: #fef5f5;
    border-color: rgba(239,68,68,0.2);
  }
  .ba-col.good {
    background: linear-gradient(180deg, var(--madison) 0%, var(--madison-dark) 100%);
    border-color: var(--madison);
    color: var(--white);
  }
  .ba-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid;
  }
  .bad .ba-head { border-color: rgba(239,68,68,0.15); }
  .good .ba-head { border-color: rgba(255,255,255,0.12); }
  .ba-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .bad .ba-icon { background: rgba(239,68,68,0.15); color: #dc2626; }
  .good .ba-icon { background: var(--glacier); color: var(--madison); }
  .ba-title { font-size: 19px; font-weight: 800; }
  .bad .ba-title { color: #991b1b; }
  .good .ba-title { color: var(--white); }
  .ba-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.6;
  }
  .bad .ba-item { color: #7f1d1d; }
  .good .ba-item { color: rgba(255,255,255,0.85); }
  .ba-dot {
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .bad .ba-dot { background: rgba(239,68,68,0.15); color: #dc2626; }
  .good .ba-dot { background: var(--glacier); color: var(--madison); }

  /* === WHY LICENSED === */
  .why-section { background: var(--madison); position: relative; overflow: hidden; }
  .why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }
  .why-section .container { position: relative; z-index: 1; }
  .why-section .section-title { color: var(--white); }
  .why-section .section-title em { color: var(--glacier); }
  .why-section .section-body { color: rgba(255,255,255,0.88); max-width: 780px; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  @media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }
  .why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 32px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
  }
  .why-card:hover {
    border-color: var(--glacier);
    background: rgba(255,255,255,0.07);
    transform: translateY(-2px);
  }
  .why-num {
    font-size: 52px;
    font-weight: 900;
    color: var(--glacier);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -3px;
  }
  .why-card-title { font-size: 19px; font-weight: 800; color: var(--white); margin-bottom: 10px; letter-spacing: -0.4px; }
  .why-card-body { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }

  /* === PROCESS WITH IMAGE === */
  .process-section { background: var(--white); }
  .process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 48px;
  }
  .process-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  .process-cta-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: 10px;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }
  .process-cta-btn {
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s;
  }
  .process-cta-btn svg{
    color: var(--gold);
  }
  .process-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(4,19,42,0.22);
  }
  .process-cta-btn-contact:hover {
    background: var(--off-white);
    border-color: var(--madison);
  }
  .process-cta-btn-contact {
    background: var(--white);
    color: var(--madison);
    border: 1px solid var(--border-strong);
  }
  /* Process photo: static in flow (no sticky on mobile; sticky only wide screens) */
  .process-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-soft);
    box-shadow: 0 30px 60px -20px rgba(11,47,95,0.3);
  }
  @media (min-width: 901px) {
    .process-image {
      position: sticky;
      top: 100px;
      aspect-ratio: 4/5;
    }
  }
  @media (max-width: 900px) {
    .process-section .container {
      padding: 40px 20px;
    }
    .process-section .section-body {
      margin-bottom: 12px;
    }
    .process-section .process-layout {
      grid-template-columns: 1fr;
      margin-top: 16px;
      gap: 10px;
    }
    .process-section .process-layout .process-image {
      position: static;
      top: auto;
      width: 100%;
      max-width: 100%;
      margin-inline: 0;
      height: 225px;
      max-height: 225px;
      aspect-ratio: auto;
      margin-top: 0;
      margin-bottom: 8px;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(11, 47, 95, 0.12);
    }
    .process-cta-bar {
      grid-template-columns: 1fr;
    }
    .process-cta-btn {
      width: 100%;
    }
  }
  .process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 10px;
    padding: 24px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    position: relative;
  }
  .process-step:last-child { border-bottom: none; }
  .step-num {
    width: 40px; height: 40px;
    background: var(--off-white);
    color: var(--madison);
    border-radius:14px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    border: 1px solid var(--border);
    position: absolute;
    top: -1px;
    left: -1px;
  }
  .process-step:hover .step-num { background: var(--madison); color: var(--white); border-color: var(--madison); }
  .process-step .step-icon{
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--madison), var(--astral));
    color: var(--madison);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    border: 2px solid var(--border);
  }
  .process-step .step-icon svg, .process-step .step-icon img{ width:40px; height:40px;}
  .step-content { padding-top: 8px; }
  .step-title { font-size: 19px; font-weight: 800; color: var(--madison); margin-bottom: 6px; letter-spacing: -0.4px; }
  .step-body { font-size: 15px; color: var(--ink-2); line-height: 1.7; }
  .step-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(48,124,180,0.1);
    color: var(--astral-dark);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
  }

  /* === CLIENTS === */
  .clients-section { background: var(--off-white); }
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 48px;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }
  @media (max-width: 1000px) {
    .clients-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (max-width: 640px) {
    .clients-grid { grid-template-columns: 1fr; }
  }
  .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 56px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 16px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: color 0.2s, border-color 0.2s, transform 0.2s;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .client-logo:hover { color: var(--madison); border-color: var(--astral); transform: translateY(-2px); }

  /* === GUARANTEE === */
  .guarantee-section {
    background: linear-gradient(135deg, var(--astral) 0%, var(--madison) 100%);
    position: relative;
    overflow: hidden;
    display: none;
  }
  .guarantee-section::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(108,156,196,0.3), transparent 70%);
  }
  .guarantee-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
  }
  .guarantee-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1.5px;
    line-height: 1.1;
  }
  .guarantee-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-top: 14px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
  }
  .guarantee-badge {
    width: 110px; height: 110px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--madison);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }

  @media (max-width: 768px) {
    .guarantee-inner { grid-template-columns: 1fr; }
    .guarantee-badge { display: none; }
  }

  /* === ELIGIBILITY === */
  .elig-section {
    background: linear-gradient(135deg, var(--astral) 0%, var(--madison) 100%);
    position: relative;
    overflow: hidden;
  }
  .elig-section::before{
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(108,156,196,0.3), transparent 70%);
  }
  .elig-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .ibm-eligibility-form{
    margin-top: 24px;
  }
  .elig-inner h3{
     color: var(--white);
  }
  .elig-inner p{
     color: var(--white);

  }

  .ibm-eligibility-form select option{
    color:var(--ink);
  }

  @media (max-width: 900px) { .elig-inner { grid-template-columns: 1fr; gap: 40px; } }
  .elig-form-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 40px;

  }
  .elig-section .section-label { color: var(--glacier); }
  .elig-section .section-title, .elig-section .section-body { color: var(--white); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
  .form-group { margin-bottom: 14px; }
  label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
  }
  input, select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border: 1px solid  rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 13px 16px;
    font-family: var(--font);
    font-size: 15px;
    direction: rtl;
    transition: all 0.2s;
    outline: none;
  }
  input::placeholder { color: var(--muted-2); }
  input:focus, select:focus { border-color: var(--astral); box-shadow: 0 0 0 3px rgba(48,124,180,0.12); }
  input.error { border-color: #ef4444; }
  select { color: var(--white);}
  select option {
    color: var(--white);
    background: #fff;
  }
  .form-submit {
    width: 100%;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--madison-dark); transform: translateY(-1px); }
  .form-submit:disabled { opacity: 0.5; cursor: default; transform: none; }
  .form-note { font-size: 12px; color: var(--white); margin-top: 12px; text-align: center; }
  .error-msg { font-size: 12px; color: #ef4444; margin-top: 4px; }
  .success-state { text-align: center; padding: 40px 0; }
  .success-icon {
    width: 64px; height: 64px;
    background: rgba(34,197,94,0.15);
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: 900;
  }
  .success-title { font-size: 22px; font-weight: 800; color: var(--madison); margin-bottom: 8px; }
  .success-body { font-size: 15px; color: var(--ink-2); line-height: 1.6; }

  .check-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--white);
  }
  .check-bullet-icon {
    width: 22px; height: 22px;
    background: var(--white);
    color: var(--astral-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
  }

  /* === FAQ === */
  .faq-section { background-color: var(--off-white); background-size: cover; background-repeat: no-repeat; background-position: center left; }
  .faq-section .section-label { justify-content: center; }
  .faq-section .section-label::before { display: none; }
  .faq-section .section-title { text-align: center; }
  .faq-list { margin: 48px auto 0; max-width: 900px; }

  /* === MID CTA (after comparison) === */
  .mid-cta-section {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    background: var(--off-white) url('../images/mid_cta_bg.png') no-repeat center left;
    background-size: auto 100%;
    background-repeat: no-repeat;
  }
  .mid-cta-section::after {
    content: '';
    position: absolute;
    background: var(--off-white);
    background: linear-gradient(90deg, rgba(247, 249, 252, 0) 0%, rgba(247, 249, 252, 1) 50%);
    right: 0;
    top: 0;
    width:90%;
    height: 100%;
    background-size: cover;
    z-index: 0;
  }
  /* .mid-cta-section::before {
    content: '';
    position: absolute;
    background:url('../images/mid_cta_bg.png') no-repeat center right;
    left: 0;
    top: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    z-index: 0;
  } */
  .mid-cta-section .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mid-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transform: scale(1.02);
  }
  .mid-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6,29,61,0.8), rgba(11,47,95,0.64));
  }
  .mid-cta-inner {
    position: relative;
    z-index: 1;
    width:40%;
    color: #fff;
    padding:0px;
  }
  .mid-cta-people{
    width:48%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:40px;
    position: relative;
    z-index: 1;
  }
.mid-cta-people .mid-cta-avtar{width: 100%; position: relative;}
.mid-cta-people .mid-cta-avtar::after{
  content: '';
  position: absolute;
  background:#0359a9;
  width: 100%;
  height:1px;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.mid-cta-people .mid-cta-row:nth-child(3n) .mid-cta-avtar::after { display: none; }
.mid-cta-people .mid-cta-avtar img{ width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border:5px solid var(--glacier); }
.mid-cta-people .avtar_name{
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}
.mid-cta-people .avtar_des{
  margin-top:4px;
  font-size: 14px;
  color: var(--white);
  text-align: center;
}
  .mid-cta-inner h3 {
    font-size: clamp(19px, 2.4vw, 28px);
    margin-bottom: 18px;
    color: var(--glacier);
    font-weight: 800;
  }
  .mid-cta-inner p {
    width: 100%;
    font-size: 18px;
    line-height: 1.75;
    color:var(--ink-2);
  }
  .mid-cta-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .mid-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    width: calc(50% - 12px);
  }
  .mid-cta-btn--primary:hover { background: var(--madison-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(4,19,42,0.22);}
  .mid-cta-btn--secondary:hover { background: var(--off-white); border-color: var(--madison); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(4,19,42,0.22);}
  .faq-item {
    overflow: hidden;
    background: var(--white);
    padding: 0 1rem;
    margin-bottom: 5px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding:10px 0;
    text-align: right;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 700;
    color: var(--madison);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--astral); }
  .faq-chevron {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;

  }
  .faq-chevron::before {
    content: '+';
    font-size:20px;
    color: var(--madison);
    font-weight: 400;
  }
  .faq-item.open .faq-chevron{ background: var(--madison); border-color: var(--madison); }
  .faq-item.open .faq-chevron::before { content: '−'; color: var(--white);}
  .faq-a {
    font-size: 15px;
    color: var(--ink-2);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
    padding-bottom: 0;
  }
  .faq-item.open .faq-a { max-height: 320px; padding-bottom: 24px; }

  /* === CONTACT === */
  .contact-section { background-color: var(--madison); background-position: center right; background-repeat: no-repeat; color: var(--white); }
  .contact-section .section-label { color: var(--glacier); }
  .contact-section .section-label::before { background: var(--glacier); }
  .contact-section .section-title { color: var(--white); }
  .contact-section .section-title em { color: var(--glacier); }
  .contact-section .section-body {
    color: rgba(255,255,255,0.82);
    margin-bottom: 18px;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding-right:150px;
  }
  @media (max-width:1499px) {.contact-grid { padding-right:250px;} }
  @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
  .contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    transition: all 0.2s;
  }
  .contact-method:hover { padding-right: 8px; }
  .contact-method:last-child { border-bottom: none; }
  .c-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.80);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--glacier);
    flex-shrink: 0;
  }
  .c-icon--wa {
    background: rgba(37, 211, 102, 0.50);
    border-color: rgba(37, 211, 102, 0.35);
    color: #25d366;
  }
  .c-icon-wa-svg { display: block; }
  .c-label { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; margin-bottom: 4px; }
  .c-value { font-size: 18px; color: var(--white); font-weight: 700; letter-spacing: -0.5px; direction: ltr; text-align: right; }

  .contact-section .elig-form-card {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.12);
  }
  .contact-section .elig-form-card label { color: rgba(255,255,255,0.7); }
  .contact-section .elig-form-card input,
  .contact-section .elig-form-card select {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.12);
    color: var(--white);
  }
  .contact-section .elig-form-card select option {
    color: var(--ink);
    background: #fff;
  }
  .contact-section .elig-form-card input::placeholder { color: rgba(255,255,255,0.3); }
  .contact-section .elig-form-card .form-submit,
  .contact-section .ibm-cf7-wrap input[type="submit"],
  .contact-section .ibm-cf7-wrap .wpcf7-submit { background: #6c9cc4 !important; color: var(--white) !important; }
  .contact-section .elig-form-card .form-submit:hover,
  .contact-section .ibm-cf7-wrap input[type="submit"]:hover,
  .contact-section .ibm-cf7-wrap .wpcf7-submit:hover { background: #5a8ab2 !important; }
  .contact-section .elig-form-card h3 { color: var(--white) !important; }
  .contact-section .elig-form-card p { color: rgba(255,255,255,0.6) !important; }

  /* === FOOTER === */
  footer {
    background: var(--madison-darker);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 32px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255,255,255,0.5);
  }
  .footer-logo { display: flex; align-items: center; gap: 10px; }
  .footer-logo img { height: 32px; }
  .footer-logo-text { font-size: 14px; font-weight: 700; color: var(--white); }
  .footer-info { font-size: 13px; }
  .footer-link { font-size: 13px; color: var(--glacier); text-decoration: none; }
  .footer-link:hover { color: var(--white); }

  /* === SCROLL REVEAL === */
  .reveal { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.08s; }
  .reveal-delay-2 { transition-delay: 0.16s; }
  .reveal-delay-3 { transition-delay: 0.24s; }
  .reveal-delay-4 { transition-delay: 0.32s; }

  @media (max-width:1278px) {
    nav { padding: 0 14px; }
    .nav-inner { gap: 8px; }
    .nav-toggle { display: inline-flex; order: 1; }
    .nav-logo { order: 2; margin-inline-start: auto; }
    .nav-main-menu {
      position: fixed;
      top:100px;
      left: 0;
      right: 0;
      width: 100%;
      max-width: none;
      margin: 0;
      background: #fff;
      border: none;
      border-bottom: 1px solid var(--border);
      border-radius: 0;
      padding: 12px 16px 16px;
      box-shadow: 0 12px 36px rgba(4,19,42,0.12);
      opacity: 0;
      transform: translateY(-8px);
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 120;
      max-height: calc(100vh - 64px);
      overflow-y: auto;
    }
    nav.nav-open .nav-main-menu {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .nav-main-menu .nav-menu {
      flex-direction: column;
      align-items: stretch;
      gap: 4px;
    }
    .nav-main-menu .nav-menu a {
      display: block;
      padding: 10px 12px;
      border-radius: 8px;
      text-align: right;
    }
    .mobile-menu-actions {
      display: grid;
      gap: 8px;
      margin-top: 8px;
      padding-top: 10px;
      border-top: 1px solid var(--border);
    }
    .nav-cta { display: none; }
    .nav-logo img {max-width:150px; }
  }

  @media (max-width: 768px) {

    .container { padding: 80px 20px; }
    .trust-bar { padding: 32px 20px; }
    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .trust-bar-inner > .trust-item {
      border-inline-start: none;
      border-block-end: 1px solid rgba(255,255,255,0.1);
      padding-bottom: 24px;
    }
    .trust-bar-inner > .trust-item:first-child {
      border-inline-start: none;
    }
    .trust-bar-inner > .trust-item:nth-child(3), .trust-bar-inner > .trust-item:last-child {
      border-block-end: none;
    }
    footer { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
    .guarantee-inner { padding: 60px 20px; }
  }

  .ibm-form-message { color: #c62828; font-size: 14px; margin-bottom: 12px; font-weight: 600; }

  /* === Experimental blocks (trial only) === */
  .ibm-exp-intro {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
  }
  .ibm-exp-intro__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transform: scale(1.03);
  }
  .ibm-exp-intro__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6,29,61,0.78), rgba(11,47,95,0.58));
  }
  .ibm-exp-intro__inner {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100% - 48px));
    text-align: center;
    color: #fff;
    padding: 90px 12px;
  }
  .ibm-exp-intro__label {
    margin-bottom: 12px;
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--glacier);
    font-weight: 700;
  }
  .ibm-exp-intro .ibm-exp-heading {
    color: #fff;
    margin-bottom: 14px;
  }
  .ibm-exp-intro .ibm-exp-heading em { color: var(--glacier); }
  .ibm-exp-intro__text {
    margin: 0 auto 28px;
    max-width: 760px;
    line-height: 1.8;
    font-size: 18px;
    color: rgba(255,255,255,0.92);
  }
  .ibm-exp-intro__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    background: #fff;
    color: var(--madison);
    font-weight: 800;
    font-size: 16px;
    padding: 13px 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .ibm-exp-intro__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  }
  .ibm-intro-once .ibm-exp-intro__label,
  .ibm-intro-once .ibm-exp-heading,
  .ibm-intro-once .ibm-exp-intro__text,
  .ibm-intro-once .ibm-exp-intro__btn {
    opacity: 0;
    transform: translateY(18px);
    animation: ibmIntroEnter 0.85s ease forwards;
  }
  .ibm-intro-once .ibm-exp-heading { animation-delay: 0.10s; }
  .ibm-intro-once .ibm-exp-intro__text { animation-delay: 0.22s; }
  .ibm-intro-once .ibm-exp-intro__btn { animation-delay: 0.35s; }
  @keyframes ibmIntroEnter {
    to { opacity: 1; transform: translateY(0); }
  }

  .ibm-exp-heading {
    font-size: clamp(34px, 3.6vw, 52px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--madison);
    margin-bottom: 18px;
  }
  .ibm-exp-heading em { font-style: normal; color: var(--astral); }
  .ibm-exp-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-2);
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
  }

  .ibm-exp-process {
    background: var(--off-white);
  }
  .ibm-exp-process .container {
    text-align: center;
  }
  .ibm-exp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 24px;
    text-align: right;
  }
  .ibm-exp-process-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 60px 22px 28px 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ibm-exp-process-item::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--astral), var(--glacier));
  }
  .ibm-exp-process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(48,124,180,0.12);
    color: var(--madison);
    font-weight: 900;
    margin-bottom: 12px;
    position: absolute;
    top: 22px;
    right: 22px;
  }

  .ibm-exp-process-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--madison), var(--astral));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--white);
  }
  .ibm-exp-process-icon img { width:40px; height:40px; color: var(--white);}

  .ibm-exp-process-title {
    font-size: 20px;
    line-height: 1.25;
    color: var(--madison);
    margin-bottom: 8px;
  }
  .ibm-exp-process-text {
    color: var(--ink-2);
    line-height: 1.75;
    font-size: 15px;
  }

  .ibm-exp-faq {
    background: #fff;
  }
  .ibm-exp-faq-wrap {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
  }
  .ibm-exp-faq-list {
    margin-top: 24px;
    text-align: right;
  }
  .ibm-exp-faq-item {
    border-bottom: 1px solid var(--border);
  }
  .ibm-exp-faq-btn {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-family: var(--font);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    color: var(--madison);
  }
  .ibm-exp-faq-btn:hover { color: var(--astral-dark); }
  .ibm-exp-faq-chevron {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all .25s ease;
    background: #fff;
    color: var(--madison);
    flex-shrink: 0;
  }
  .ibm-exp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding-bottom .25s ease;
    color: var(--ink-2);
    line-height: 1.75;
    padding-bottom: 0;
    font-size: 15px;
  }
  .ibm-exp-faq-item.open .ibm-exp-faq-chevron {
    transform: rotate(180deg);
    background: var(--madison);
    border-color: var(--madison);
    color: #fff;
  }
  .ibm-exp-faq-item.open .ibm-exp-faq-answer {
    max-height: 320px;
    padding-bottom: 20px;
  }

  @media (max-width: 1100px) {
    .ibm-exp-process-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 680px) {
    .ibm-exp-intro { min-height: 430px; }
    .ibm-exp-intro__inner { width: calc(100% - 28px); padding: 70px 8px; }
    .ibm-exp-intro__text { font-size: 16px; line-height: 1.7; }
    .ibm-exp-process-grid { grid-template-columns: 1fr; }
    .ibm-exp-heading { font-size: clamp(28px, 8vw, 38px); }
  }

  /* Contact Form 7 inside landing cards */
  .ibm-form-shell .ibm-cf7-wrap .wpcf7 {
    margin: 0;
  }
  .ibm-form-shell .ibm-cf7-wrap .wpcf7-form-control-wrap {
    display: block;
  }
  .ibm-form-shell .ibm-cf7-wrap .wpcf7-not-valid-tip {
    margin-top: 4px;
    font-size: 13px;
  }
  .ibm-form-shell .ibm-cf7-wrap .wpcf7-response-output {
    margin: 12px 0 0;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--white);
  }
  .ibm-form-shell .ibm-cf7-wrap input[type="text"],
  .ibm-form-shell .ibm-cf7-wrap input[type="tel"],
  .ibm-form-shell .ibm-cf7-wrap input[type="email"],
  .ibm-form-shell .ibm-cf7-wrap select,
  .ibm-form-shell .ibm-cf7-wrap textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .ibm-form-shell .ibm-cf7-wrap input[type="submit"] {
    width: 100%;
    margin-top: 8px;
    background-color: var(--glacier) !important;
  }

  .ibm-job-openings {
    background-color: var(--astral);
    background-size: auto 60%;
    background-repeat: no-repeat;
	  background-position:top right;
    position: relative;
    overflow: hidden;
    direction: ltr;
    text-align: left;
  }
  .ibm-job-openings::before{
    content: '';
    position: absolute;
    background: var(--astral);
    background: linear-gradient(90deg, rgba(48, 124, 180, 1) 50%, rgba(48, 124, 180, 0) 80%);
    left: 0;
    top: 0;
    width: 90%;
    height: 100%;
    background-size: cover;
    z-index: 0;
  }
  .ibm-job-openings .section-label{ color: var(--gold);}
  .ibm-job-openings .section-label::before {background-color: var(--gold);}
  .ibm-job-openings .section-title em{ color: var(--gold); background-image: none; background: none; animation: none; background-clip: none; text-fill-color: var(--gold); -webkit-background-clip: var(--gold); -webkit-text-fill-color: var(--gold); }
  .ibm-job-openings .container{ padding-bottom: 0; position: relative; z-index: 1; }
  .ibm-job-openings .container-fluid{ padding: 0px 48px; position: relative; z-index: 1; }
  .ibm-job-openings .job-cta-inner{ width:55%;}
  .ibm-job-openings .job-cta-inner ul{ margin:0px; padding:0px; }
  .ibm-job-openings .job-cta-inner ul li{ margin:0px; padding:0px; list-style:none; display:flex; justify-content: flex-start; align-items:center; gap:12px; margin-bottom:20px; font-size:18px; color:var(--white); }
  .ibm-job-openings .job-cta-inner ul li .job-icon{ margin-right: 15px; background: var(--white); color:var(--gold);}
  .ibm-job-openings .section-title{ color: var(--white); }
  .ibm-job-openings .ba-grid{ display: grid; grid-template-columns: 1fr 1fr 1fr 2fr; gap:16px; margin:48px 0; color: var(--white);}
  .ibm-job-openings .ba-grid .ba-grid-item{ padding: 20px; background: rgba(var(--astral-rgb), 0.8); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 16px;}
  .ibm-job-openings .ba-grid .ba-item{ margin-bottom: 0; line-height: 1.2;}
  .ibm-job-openings .ba-grid .ba-grid-item p{ margin-bottom: 1.5rem;}
  .ibm-job-openings .ba-grid .ba-grid-item .ba-head{border-color: rgba(255, 255, 255, 0.12);}
  .ibm-job-openings .ba-grid .ba-grid-item .ba-title{ font-size:20px; font-weight: 600; color: var(--gold); line-height: 22px;}
  .ibm-job-openings .ba-grid .ba-grid-item .ba-dot { background: var(--gold); color: var(--madison);}
  .ibm-job-openings .ibm-job-form{ margin-top:24px; color: var(--white);}
  .ibm-job-openings .ibm-job-form .wpcf7 p{ margin-bottom: 0;}

  .ibm-job-openings input, .ibm-job-openings select{ direction: ltr !important;}

  .intl-tel-input .selected-flag{ padding:0 8px 0 0px; }
  .country-select.inside .flag-dropdown{ direction: ltr; }
  .country-select .country-list li.country{ color: var(--madison);}
  .intl-tel-input.allow-dropdown .flag-container, .intl-tel-input.separate-dial-code .flag-container{ direction: ltr;}
  .ibm-job-openings select{ color: var(--white);}
  .ibm-job-openings select option{ color: var(--madison);}
  .intl-tel-input .country-list .country .dial-code, .intl-tel-input .country-list .country-name, .intl-tel-input .country-list .flag-box{ color: var(--madison);}
  .intl-tel-input .selected-flag .iti-flag{left: 10px;}
  .intl-tel-input.separate-dial-code .selected-dial-code{ text-align: center;}
  .ibm-job-form .wpcf7-form-control.wpcf7-submit{ background: var(--gold) !important;}
  .intl-tel-input .selected-flag .iti-arrow, .country-select .selected-flag .arrow{ border-top: 4px solid var(--white); }
  .video_section .video_wrraper{ width: 100%; position: relative;}
  .video_section .container{ padding: 0px; }
  .video_section .video_wrraper .video-play-button{ width: 100px; height: 100px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; cursor: pointer; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;}
  .video-modal{ position:fixed; inset:0; background:rgba(4, 19, 42, 0.62); display:flex; justify-content:center; align-items:center; opacity:0; visibility:hidden; transition:.35s ease; z-index:9999;}
  .video-modal.active{ opacity:1; visibility:visible;}
  .video-overlay{ position:absolute; inset:0;}
  .video-container{ position:relative; width:min(1000px,90%); transform:scale(.9); transition:.35s; z-index:2;}
  .video-modal.active .video-container{transform:scale(1);}
  .video-wrapper{ position:relative; width:100%; padding-top:56.25%; /* 16:9 */ border-radius:16px; overflow:hidden; background:#000; box-shadow:0 28px 70px rgba(4, 19, 42, 0.35);}
  .video-wrapper iframe{ position:absolute; inset:0; width:100%; height:100%; border:0;}
  .video-close{ position:absolute; right:-12px; top:-48px; width:42px; height:42px; border:none; border-radius:50%; background:#fff; color:#000; font-size:28px; cursor:pointer; transition:.3s;}
  .video-close:hover{transform:rotate(90deg);}

  /* === About === */
  .about-section {
    background: linear-gradient(135deg, var(--astral) 0%, var(--madison) 100%);
    position: relative;
    overflow: hidden;
  }
  .about-section::before{
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108,156,196,0.3), transparent 70%);
  }
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .about-section .section-title, .about-section .section-body { color: var(--white); }
  .about-section .section-body{ margin: 0;}
  .about-section h3{ font-weight: bold; font-size: 1.5rem; color: var(--white); margin-bottom: 1rem;}
  .vision-mision{ display: grid; grid-template-columns: 1fr 1fr; gap:20px;}
  .vision-mision .vision-item{ background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 16px; padding: 20px; transition: all 0.3s ease;}
  .vision-mision .vision-item:hover{ background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.3); box-shadow: 0px 12px 36px rgba(4, 19, 42, 0.12);}
  .vision-mision .vision-item .c-icon{ width: 68px; height: 68px; background:none; border-color:transparent; color:var(--white); margin-bottom: 1rem;}
  .vision-mision .vision-item h4{ font-weight: bold; font-size: 1.2rem; color: var(--white); margin-bottom: 1rem;}
  .vision-mision .vision-item p{ font-size: 15px; color: rgba(255, 255, 255, 0.8); line-height: 1.7; margin-bottom: 0;}
  .services-section { background: var(--off-white); position: relative; overflow: hidden;}
  .services-section .section-title{ text-align: center; margin-bottom: 40px;}
  .services-section .services-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;}
  .services-section .services-item{ background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 40px 20px; transition: all 0.3s ease;}
  .services-section .services-item:hover{ background: rgba(48, 124, 180, 0.08); border-color: rgba(48, 124, 180, 0.3); box-shadow: 0px 12px 36px rgba(4, 19, 42, 0.12);}
  .services-section .services-item h4{ font-weight: bold; font-size: 1.2rem; color: var(--madison); margin-bottom: 1rem;}
  .services-section .services-item ul{ margin:0; padding:0; list-style:none;}
  .services-section .services-item ul li{ margin:0; padding:0; list-style:none; font-size: 15px; color: var(--ink-2); line-height: 1.7; margin-bottom: 0.5rem; display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px;}
  .services-section .services-item ul li .ba-dot { color: var(--madison); background: var(--glacier);}

  .workingmodel-section .section-title{ text-align: center; margin-bottom: 40px;}
  .workingmodel-section .workingmodel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
  .workingmodel-section .workingmodel-grid .workingmodel-item{background:var(--off-white); border: 1px solid var(--border); border-radius: 14px; padding:25px 20px; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; text-align: center; transition: all 0.3s ease;}
  .workingmodel-section .workingmodel-grid .workingmodel-item:hover{ background-color: var(--white); box-shadow: 0px 12px 36px rgba(4, 19, 42, 0.12);}
  .workingmodel-section .workingmodel-grid .workingmodel-item h4{ font-size:20px; font-weight: 600; color: var(--madison); margin-bottom: 8px;}
  .workingmodel-section .workingmodel-grid .workingmodel-item p{color: var(--ink-2); line-height: 1.75; font-size: 15px;}
  .workingmodel-section .workingmodel-grid .workingmodel-item .workingmodel-icon{ width: 100%; display: flex; justify-content: center;}
  .workingmodel-section .workingmodel-grid .workingmodel-item .workingmodel-icon svg{ color: var(--madison);}



  .services-cta-bar { width: 100%; display:flex; justify-content: center; align-items: center; margin-top:40px; }
  .services-cta-btn { text-decoration: none; text-align: center; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.25s; margin:0 5px; padding:12px 30px;}
  .services-cta-btn svg{ color: var(--gold);}
  .services-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(4,19,42,0.22); }
  .services-cta-btn-contact:hover { background: var(--off-white); border-color: var(--madison); }
  .services-cta-btn-contact { background: var(--white); color: var(--madison); border: 1px solid var(--border-strong); }

  .advantages-section{ background: var(--off-white); position: relative; overflow: hidden; margin-bottom: 100px;}
  .advantages-section .section-title{ margin-bottom: 40px;}
  .advantages-section .ag-grid{display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px;}
  .advantages-section .ag-grid .ag-item{display: flex; align-items: center; gap: 14px;}
  .advantages-section .ag-grid .ag-item .ag-icon{min-width: 78px; min-height:78px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background-color: var(--madison);}
  .advantages-section .ag-grid .ag-item .ag-icon svg{ color: var(--off-white);}
  .advantages-section .ag-grid .ag-item .ag-content .ag-title{ font-size: 20px; color: var(--madison); font-weight: 600;}
  .advantages-section .ag-grid .ag-item .ag-content p{ color: var(--ink-2); line-height: 1.75; font-size: 15px;}


@media (max-width:1499px) {
    .mid-cta-section::after {
      background: linear-gradient(90deg, rgba(247, 249, 252, 0) 0%, rgba(247, 249, 252, 1) 40%);
      width:70%;
    }
}
  @media (max-width:1299px) {
    .container{
      padding-left:18px;
      padding-right:18px;
    }
	.nav-menu a{ padding:6px;}
    .hero-content{
      padding: 0px 18px;
    }
    .trust-bar-inner{
      max-width: calc(1280px - 36px);
      margin: 0 18px;
    }
    .mid-cta-section::after {
      background: linear-gradient(90deg, rgba(247, 249, 252, 0) 0%, rgba(247, 249, 252, 1) 40%);
      width:50%;
    }
    .ibm-job-openings{background-size: auto 40%;}
    .ibm-job-openings .ba-grid{grid-template-columns: repeat(3, 1fr);}
    .ibm-job-openings .ba-grid > :nth-child(4) { grid-column: 1 / -1;}
}
	@media (max-width:1099px) {
      .nav-menu a{
        font-size: 16px;
        padding: 6px;
      }
      .hero-text{
        flex: 0 0 60%;
        width: 60%;
      }
      .worker_wrraper .worker_inner {
        width: 100%;
      }
      .process-layout{
        gap: 24px;
      }
      .contact-grid {
        padding-right:00px;
      }
    }

    @media (max-width:990px) {
      .hero-text{
        flex: 0 0 70%;
        width:70%;
      }
      .mid-cta-section::before{
        display: none;
      }
      .mid-cta-section .container{
        flex-wrap: wrap;
      }
      .mid-cta-inner{
        width:100%;
      }
      .mid-cta-people{
        width:100%;
        margin-top:30px;
        padding: 30px;
        background: var(--madison);
        border-radius: 12px;
      }
      .contact-section{
        background-image: none !important;
      }
      .mid-cta-section{ background-image: none !important;}
      .mid-cta-section::after {
        display: none;
      }
      .ibm-job-openings {background-size: auto 30%;}
      .ibm-job-openings .container-fluid{ padding: 0px 18px;}
      .ibm-job-openings .job-cta-inner{ width:75%;}
      .ibm-job-openings .ba-grid .ba-grid-item{ padding: 20px 10px; }
      .ibm-job-openings .job-cta-inner ul li{ font-size: 16px;}
      .ibm-job-openings .ba-grid .ba-grid-item .ba-title{ font-size:18px; }

      .about-inner{grid-template-columns: 1fr; gap: 40px;}
      .services-section .services-grid{grid-template-columns: 1fr;}
      .workingmodel-section .workingmodel-grid{grid-template-columns: repeat(2, 1fr);}
    }
    @media (max-width:767px) {
      .hero{
        background-size: cover;
      }
      .hero-overlay{
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%);
      }
      .hero-text {
        flex: 0 0 100%;
        width: 100%;
      }
      .ibm-job-openings { background-image:none !important;}
      .ibm-job-openings .job-cta-inner{ width:100%;}
      .ibm-job-openings .ba-grid{grid-template-columns:1fr;}
      .ibm-job-openings .ba-grid > :nth-child(4) { grid-column:auto;}
      .ibm-job-openings .ba-grid .ba-grid-item p{ margin-bottom: 1rem;}
      .ibm-job-openings .ba-grid .ba-grid-item .ba-title{ font-size:24px; }
      .ibm-job-openings .ba-grid .ba-grid-item .ba-head{margin-bottom:18px; padding-bottom:10px;}
    }
    @media (max-width:599px) {
      .mid-cta-people{
        grid-template-columns: repeat(2, 1fr);
      }
      .mid-cta-people .mid-cta-row:nth-child(3n) .mid-cta-avtar::after { display: block; }
      .mid-cta-people .mid-cta-row:nth-child(2n) .mid-cta-avtar::after { display: none; }
      .process-steps{
        grid-template-columns: 1fr;
      }
      .video_section .video_wrraper .video-play-button{ width:50px; height: 50px;}
      .video_section .video_wrraper .video-play-button svg{ width:24px; height: 24px;}
      .advantages-section .ag-grid{grid-template-columns: 1fr;}
      .vision-mision{grid-template-columns: 1fr;}
      .workingmodel-section .workingmodel-grid{grid-template-columns: 1fr;}
      .hero-content {
        padding: 0px 14px;
      }
      .trust-bar {
        padding: 25px 14px;
      }
       .trust-bar-inner {
        max-width: 100%;
        margin: 0px;
      }
      .trust-num{
        font-size: 30px;
      }
       .container {
        padding:50px 14px;
      }
      .elig-form-card{
        padding: 20px;
      }
    }

@media (max-width:479px) {
  .services-cta-bar{ flex-wrap: wrap;}
  .services-cta-btn{ width: 100%; margin: 5px 0;}
}