
    @font-face {
      font-family: 'Axiforma';
      src: local('Axiforma'), local('Axiforma-Regular');
      font-weight: 400;
    }

    :root {
      --navy:  #0f2246;
      --blue:  #1a56db;
      --sky:  radial-gradient(ellipse 60% 120% at 62% -10%, rgba(253,246,236,0.7) 0%, transparent 60%),
      radial-gradient(ellipse 50% 100% at 100% 50%, rgba(196,242,235,0.6) 0%, transparent 55%),
      linear-gradient(to right, #e8f1fb, #edf4fc, #d8f2ee);
      --accent:#096bd8;
      --light: #f7f9ff;
      --font-h: 'Cabinet Grotesk', sans-serif;
      --font-b: 'Axiforma', 'Nunito', sans-serif;
      --maxw:  1270px;
    }

    *, *::before, *::after { box-sizing: border-box; scroll-behavior: smooth; }
    body  { margin: 0; font-family: var(--font-b); color: #1e293b; background: #fff; }
    h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); margin: 0; }
    p { margin: 0; }
    a { text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* ── Container: 1270px, zero padding on large screens ── */
    .wrap {
      width: 100%;
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0;
    }
    /* Breathing room only when viewport < 1310px */
    @media (max-width: 1309px) { .wrap { padding: 0 20px; } }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 50;
      background: #fff; box-shadow: 0 1px 8px rgba(15,34,70,.08);
    }
    .nav-row {
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
    }
    /* Logo */
    .logo-img  { height: 42px; width:180px; object-fit: contain; }
    /* Desktop links */
    .desk-links { display: flex; gap: 2rem; }
    .desk-links a { font-family: var(--font-b); font-size: .98rem; font-weight: 700; color: #000000; transition: color .2s; }
    .desk-links a:hover { color: var(--blue); }
    /* CTA pill */
    .cta-pill {
      background: var(--blue); color: #fff; font-family: var(--font-h);
      font-size: .8rem; font-weight: 700; letter-spacing: .06em;
      border-radius: 999px; padding: .44rem 1.4rem; white-space: nowrap;
    }
    /* Hamburger */
    .ham { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; cursor: pointer; }
    .ham span { display: block; width: 22px; height: 2px; background: #374151; border-radius: 2px; }

    @media (max-width: 768px) {
      .desk-links, .cta-pill { display: none; }
      .ham { display: flex; }
    }

    /* Mobile dropdown */
    #mob { display: none; background: #fff; border-top: 1px solid #edf1fb; }
    #mob.open { display: block; }
    .mob-inner { display: flex; flex-direction: column; padding: .6rem 20px 1rem; gap: .1rem; }
    .mob-inner a { padding: .55rem 0; font-size: .95rem; font-weight: 500; color: #374151; border-bottom: 1px solid #f3f6fc; }
    .mob-inner a:last-child { border-bottom: none; }
    .mob-cta { margin-top: .5rem; background: var(--blue); color: #fff !important; text-align: center; border-radius: 8px; padding: .6rem; font-weight: 700; font-size: .9rem; font-family: var(--font-h); }

    /* ── SECTIONS ── */
    .s-about    { padding: 80px 0; background: #fff; }
    .s-mission  { padding: 80px 0; background: var(--sky); }
    .s-svc-hdr  { padding: 72px 0 24px; background: #fff; text-align: center; }
    .s-vaas     { padding: 56px 0; background: #fff; }
    .s-staff    { padding: 56px 0; background: #fff; border-top: 1px solid #edf2fb; }
    .s-contact  { padding: 80px 0; background: var(--sky); }

    @media (max-width: 860px) {
      .s-about,.s-mission,.s-vaas,.s-staff,.s-contact { padding: 52px 0; }
      .s-svc-hdr { padding: 48px 0 16px; }
    }

    /* ── TWO-COL GRID ── */
    .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    @media (max-width: 860px) {
      .grid2 { grid-template-columns: 1fr; gap: 32px; }
      .rev-mob { order: -1; }  /* pull image above text on mobile when needed */
    }

    /* ── IMAGES — aspect-ratio based, no fixed height ── */
    .img-box {
      width: 100%;
      border-radius: 18px;
      aspect-ratio: 4 / 3;
    }
    .img-box img { width: 100%; height:auto; object-fit: cover; border-radius: 18px; }

    

    /* ── TEXT HELPERS ── */
    .eyebrow   { font-family: var(--font-h); font-size: 1.0rem; font-weight: 800; letter-spacing: .14em; color: var(--blue); text-transform: uppercase; margin-bottom: .4rem; }
    .acc-line  { display: block; width: 44px; height: 3px; background: var(--accent); border-radius: 4px; margin-bottom: .8rem; }
    .sec-title { font-size: clamp(1.55rem,3vw,2.3rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
    .body-p    { font-size: .99rem; line-height: 1.82; color: #4b5772; margin-bottom: .9rem; }
    .body-p:last-child { margin-bottom: 0; }

    /* ── BULLETS ── */
    .feat-list  { margin-top: .4rem; }
    .feat-item  { display: flex; gap: .55rem; align-items: flex-start; margin-bottom: .7rem; }
    .feat-dot   { min-width: 7px; height: 7px; background: var(--blue); border-radius: 50%; margin-top: .52rem; flex-shrink: 0; }
    .feat-text  { font-size: .98rem; line-height: 1.72; color: #4b5772; }

    /* ── SERVICES HEADER ── */
    .svc-title { font-size: clamp(1.2rem,2.4vw,2.0rem); font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .7rem; }
    .svc-sub   { font-size: .98rem; line-height: 1.75; color: #5a6479; max-width: 700px; margin: 0 auto; }

    /* ── CONTACT FORM ── */
    .form-r2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
    @media (max-width: 540px) { .form-r2 { grid-template-columns: 1fr; } }
    .f-label { display: block; font-family: var(--font-h); font-size: .72rem; font-weight: 700; color: #5a6479; margin-bottom: 5px; }
    input, textarea {
      width: 100%; border: 1.5px solid #d1d9ee; border-radius: 8px; padding: 0.40rem .85rem !important;
      font-size: .9rem; font-family: var(--font-b); outline: none; transition: border .2s, box-shadow .2s;
      color: #1e293b; background: #fff;
    }
    input::placeholder, textarea::placeholder { color: #b0bac8; }
    input:focus, textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(26,86,219,.1);
    }
    textarea { resize: vertical; }
    .btn-submit {
      background: var(--blue); color: #fff; font-family: var(--font-h); font-weight: 700;
      font-size: .94rem; letter-spacing: .03em; border: none; border-radius: 8px;
      padding: .72rem 2.8rem; cursor: pointer; transition: background .2s, transform .15s;
    }
    .btn-submit:hover { background: #1345b7; transform: translateY(-1px); }

    /* ── FOOTER ── */
    footer { background: #000000; border-top: 1px solid #e8edf7; padding: 1.4rem 0; text-align: center; }
    .ft-txt { font-size: .79rem; color: #ffffff; }
  