 /* ════════════════════════════════════════
       PREMIUM HERO  — Deep Navy Professional
    ════════════════════════════════════════ */

    .hero {
      min-height: 100svh;
      background: linear-gradient(135deg, #060f2e 0%, #0a1a4a 45%, #0d2158 70%, #0a1a4a 100%);
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
    }

    /* Clean — no colour blobs */
    .hero::before { content: ''; position: absolute; inset: 0; z-index: 1; }
    .hero::after  { content: none; }

    /* ── Hero inner grid ── */
    .hero-inner {
      position: relative; z-index: 2;
      display: grid;
      grid-template-columns: 55fr 45fr;
      gap: 2rem;
      align-items: center;
      width: 96%; max-width: 1400px;
      margin: 0 auto;
      padding: calc(var(--nav-height) + 3rem) 0 4rem;
    }

    /* ── LEFT CONTENT ── */
    .hero-left {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    /* Animated pill badge */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(4,97,255,0.18);
      border: 1px solid rgba(99,179,255,0.35);
      border-radius: 50px;
      padding: 9px 20px;
      font-size: 0.76rem;
      font-weight: 700;
      color: #93c5fd;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      width: fit-content;
      backdrop-filter: blur(8px);
      box-shadow: 0 0 20px rgba(4,97,255,0.2);
    }
    .hero-badge .live-dot {
      width: 8px; height: 8px;
      background: #4ade80;
      border-radius: 50%;
      box-shadow: 0 0 8px #4ade80;
      animation: blink 1.4s infinite;
      flex-shrink: 0;
    }
    @keyframes blink {
      0%,100% { opacity:1; } 50% { opacity:0.25; }
    }

    /* Big headline */
    .hero-headline {
      font-size: clamp(2.2rem, 3.2vw, 3.6rem);
      font-weight: 900;
      line-height: 1.08;
      color: #ffffff;
      margin-bottom: 1.25rem;
      letter-spacing: -0.025em;
    }
    .hero-headline .word-static { color: #ffffff; }
    .hero-headline .word-accent {
      background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
    }
    .hero-headline .word-underline {
      position: relative;
      color: #ffffff;
    }
    .hero-headline .word-underline::after {
      content: '';
      position: absolute;
      left: 0; bottom: -5px;
      width: 100%; height: 3px;
      border-radius: 2px;
      background: linear-gradient(90deg, #3b82f6, #93c5fd);
    }

    /* Subtext */
    .hero-sub {
      font-size: 1rem;
      color: rgba(200,215,255,0.75);
      line-height: 1.82;
      max-width: 500px;
      margin-bottom: 1.75rem;
    }
    .hero-sub strong { color: #93c5fd; font-weight: 600; }

    /* Feature chips */
    .hero-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.75rem;
    }
    .hero-chip {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 50px;
      padding: 6px 14px;
      font-size: 0.775rem;
      font-weight: 500;
      color: rgba(210,225,255,0.85);
      backdrop-filter: blur(6px);
      white-space: nowrap;
    }
    .hero-chip i { color: #60a5fa; font-size: 0.7rem; }

    /* CTA Buttons */
    .hero-ctas {
      display: flex;
      gap: 0.875rem;
      flex-wrap: wrap;
      align-items: center;
      margin-bottom: 2rem;
    }
    .hero-btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
      color: #fff;
      padding: 14px 30px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.925rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 10px 32px rgba(37,99,235,0.55);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      letter-spacing: 0.01em;
      text-decoration: none;
    }
    .hero-btn-primary::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.14), transparent);
      border-radius: inherit;
    }
    .hero-btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 44px rgba(37,99,235,0.7);
      color: #fff;
    }
    .hero-btn-primary .btn-arrow {
      width: 26px; height: 26px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.7rem;
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .hero-btn-primary:hover .btn-arrow { transform: translateX(3px); }

    .hero-btn-secondary {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent;
      color: #e2eaff;
      padding: 14px 30px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.925rem;
      border: 2px solid rgba(255,255,255,0.22);
      cursor: pointer;
      transition: all 0.3s ease;
      backdrop-filter: blur(4px);
      text-decoration: none;
    }
    .hero-btn-secondary:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.55);
      transform: translateY(-3px);
      color: #fff;
    }

    /* Trust row */
    .hero-trust {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      flex-wrap: wrap;
    }
    .hero-trust-avatars { display: flex; }
    .trust-avatar {
      width: 34px; height: 34px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.25);
      background: linear-gradient(135deg, #2563eb, #3b82f6);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.65rem; font-weight: 700; color: #fff;
      margin-left: -9px;
      box-shadow: 0 2px 10px rgba(37,99,235,0.35);
    }
    .trust-avatar:first-child { margin-left: 0; }
    .hero-trust-text {
      font-size: 0.78rem;
      color: rgba(180,200,255,0.7);
      line-height: 1.45;
    }
    .hero-trust-text strong { color: #fff; }

    /* ── RIGHT SIDE VISUAL ── */
    .hero-right {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
    }

    /* Main image direct styling - no extra container frame */
    .hero-main-img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      display: block;
      border-radius: 22px;
      box-shadow: 0 20px 48px rgba(0,0,8,0.45);
    }

    /* Metric cards */
    .hero-metric-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.875rem;
      width: 100%;
    }
    .hero-metric {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 16px;
      padding: 1.1rem 1.25rem;
      backdrop-filter: blur(16px);
      display: flex;
      align-items: center;
      gap: 0.875rem;
      transition: all 0.3s;
    }
    .hero-metric:hover {
      background: rgba(37,99,235,0.2);
      border-color: rgba(99,179,255,0.3);
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(37,99,235,0.2);
    }
    .hm-icon {
      width: 42px; height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, #2563eb, #3b82f6);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1rem;
      flex-shrink: 0;
      box-shadow: 0 5px 16px rgba(37,99,235,0.4);
    }
    .hm-num {
      font-size: 1.4rem; font-weight: 900;
      color: #fff; line-height: 1;
      margin-bottom: 2px;
    }
    .hm-lbl {
      font-size: 0.67rem; font-weight: 500;
      color: rgba(180,200,255,0.65);
    }

    /* Scroll indicator */
    .hero-scroll-hint {
      position: absolute;
      bottom: 1.75rem; left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      color: rgba(180,200,255,0.4);
      font-size: 0.68rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
    }
    .scroll-wheel {
      width: 22px; height: 36px;
      border: 2px solid rgba(255,255,255,0.18);
      border-radius: 12px;
      display: flex; justify-content: center; padding-top: 6px;
    }
    .scroll-wheel::before {
      content: '';
      width: 4px; height: 8px;
      background: rgba(99,179,255,0.55);
      border-radius: 2px;
      animation: scroll-down 1.6s ease infinite;
    }
    @keyframes scroll-down {
      0%   { transform: translateY(0); opacity: 1; }
      100% { transform: translateY(10px); opacity: 0; }
    }

    /* ── Stats bar ── */
    .stats-bar {
      background: linear-gradient(90deg, #061847 0%, #092660 50%, #061847 100%);
      border-top: 1px solid rgba(4,97,255,0.2);
      border-bottom: 1px solid rgba(4,97,255,0.1);
      padding: 0;
    }
    .stats-bar-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      width: 96%; max-width: 1400px;
      margin: 0 auto;
    }
    .stat-box {
      padding: 1.75rem 1rem;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.08);
      transition: background 0.3s;
    }
    .stat-box:hover { background: rgba(4,97,255,0.08); }
    .stat-box:last-child { border-right: none; }
    .stat-box .num {
      display: block;
      font-size: 2.4rem; font-weight: 900;
      color: #79c7ff; line-height: 1;
      margin-bottom: 5px;
      letter-spacing: -0.02em;
    }
    .stat-box .lbl {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.55);
      font-weight: 500;
    }

    /* ── Services section ── */
    .services-sec { padding: 5rem 0; background: #fff; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .srv-card {
      background: #fff;
      border: 1px solid rgba(4,97,255,0.1);
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .srv-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(9,38,96,0.14);
      border-color: rgba(4,97,255,0.2);
    }
    .srv-img { width: 100%; height: 200px; object-fit: cover; display: block; }
    .srv-body { padding: 1.5rem; }
    .srv-icon-wrap {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, #0461ff, #3a85ff);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.2rem;
      margin-bottom: 1rem;
      box-shadow: 0 6px 20px rgba(4,97,255,0.35);
    }
    .srv-body h4 { color: #092660; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
    .srv-body p  { font-size: 0.875rem; color: #5a7295; margin-bottom: 1rem; line-height: 1.65; }
    .srv-link {
      display: inline-flex; align-items: center; gap: 6px;
      color: #0461ff; font-size: 0.85rem; font-weight: 600;
      transition: gap 0.2s;
    }
    .srv-link:hover { gap: 10px; }

    /* ── Why Us ── */
    .why-sec { padding: 5rem 0; background: #ebf7ff; }
    .why-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      width: 96%; max-width: 1400px; margin: 0 auto;
    }
    .why-img {
      border-radius: 20px; overflow: hidden;
      box-shadow: 0 20px 60px rgba(9,38,96,0.18);
      position: relative;
    }
    .why-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
    .why-img-badge {
      position: absolute; bottom: 24px; left: 24px;
      background: #fff; border-radius: 16px;
      padding: 16px 20px;
      box-shadow: 0 8px 32px rgba(9,38,96,0.18);
      display: flex; align-items: center; gap: 12px;
    }
    .why-img-badge .wib-icon {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, #0461ff, #3a85ff);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.1rem;
    }
    .why-img-badge .wib-text .big { font-size: 1.2rem; font-weight: 800; color: #092660; }
    .why-img-badge .wib-text .sml { font-size: 0.75rem; color: #6b84a8; }
    .why-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
    .why-point {
      display: flex; align-items: flex-start; gap: 1rem;
      background: #fff; border-radius: 14px; padding: 1.25rem;
      border: 1px solid rgba(4,97,255,0.08); transition: all 0.3s;
    }
    .why-point:hover { box-shadow: 0 8px 28px rgba(9,38,96,0.1); transform: translateX(4px); }
    .why-point-icon {
      width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
      background: linear-gradient(135deg, #0461ff, #3a85ff);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1rem;
    }
    .why-point h5 { color: #092660; margin-bottom: 3px; font-size: 0.95rem; }
    .why-point p  { color: #5a7295; font-size: 0.85rem; margin: 0; }

    /* ── Process ── */
    .process-sec {
      padding: 5rem 0;
      background: url('assets/cta-bg.jpg') center / cover no-repeat;
      position: relative;
    }
    .process-sec::before { content: ''; position: absolute; inset: 0; background: rgba(6,24,71,0.88); }
    .process-inner { position: relative; z-index: 2; }
    .process-steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem; margin-top: 3rem;
    }
    .p-step {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px; padding: 2rem 1.5rem;
      text-align: center; transition: all 0.3s;
    }
    .p-step:hover { background: rgba(4,97,255,0.18); border-color: rgba(4,97,255,0.4); transform: translateY(-6px); }
    .p-step-num {
      width: 56px; height: 56px; border-radius: 50%;
      background: linear-gradient(135deg, #0461ff, #3a85ff);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; font-weight: 900; color: #fff;
      margin: 0 auto 1.25rem;
      box-shadow: 0 8px 24px rgba(4,97,255,0.45);
    }
    .p-step h4 { color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
    .p-step p  { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin: 0; }

    /* ── Training ── */
    .training-sec { padding: 5rem 0; background: #fff; }
    .training-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
      width: 96%; max-width: 1400px; margin: 0 auto;
    }
    .training-img { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(9,38,96,0.15); }
    .training-img img { width: 100%; height: 420px; object-fit: cover; }
    .training-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
    .training-item {
      display: flex; align-items: center; gap: 0.875rem;
      padding: 0.875rem 1rem; background: #ebf7ff;
      border-radius: 12px; font-size: 0.9rem; font-weight: 500; color: #092660;
    }
    .training-item i { color: #0461ff; width: 20px; text-align: center; }

    /* ── Testimonials ── */
    .testi-sec { padding: 5rem 0; background: #f8faff; }
    .testi-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem; margin-top: 3rem;
    }
    .testi-card {
      background: #fff; border-radius: 20px; padding: 2rem;
      border: 1px solid rgba(4,97,255,0.1); transition: all 0.3s; position: relative;
    }
    .testi-card:hover { box-shadow: 0 16px 48px rgba(9,38,96,0.12); transform: translateY(-4px); }
    .testi-card::before {
      content: '\201C';
      position: absolute; top: 1rem; right: 1.5rem;
      font-size: 5rem; color: rgba(4,97,255,0.08);
      font-family: Georgia, serif; line-height: 1;
    }
    .testi-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
    .testi-text { font-size: 0.9rem; color: #4a5e7a; line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 0.875rem; }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, #0461ff, #3a85ff);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; color: #fff; font-size: 0.875rem; flex-shrink: 0;
    }
    .testi-name { font-weight: 700; color: #092660; font-size: 0.9rem; }
    .testi-role { font-size: 0.78rem; color: #7a94b4; }

    /* ── CTA Banner ── */
    .cta-sec {
      background: url('assets/cta-bg.jpg') center / cover;
      position: relative; padding: 5rem 0;
    }
    .cta-sec::before { content: ''; position: absolute; inset: 0; background: rgba(6,24,71,0.85); }
    .cta-inner { position: relative; z-index: 2; text-align: center; }
    .cta-inner h2 { color: #fff; margin-bottom: 1rem; }
    .cta-inner p  { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 2rem; }
    .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ── Sectors strip ── */
    .sectors-strip { background: #092660; padding: 1.125rem 0; overflow: hidden; width: 100%; }
    .sectors-scroll {
      display: flex; gap: 1.5rem;
      animation: scroll-left 28s linear infinite;
      white-space: nowrap; width: max-content;
    }
    .sector-pill {
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 50px; padding: 8px 22px;
      color: #79c7ff; font-size: 0.85rem; font-weight: 500; flex-shrink: 0;
    }
    @keyframes scroll-left {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ══════════════════════════════════
       MOBILE HERO — CENTERED LAYOUT
    ══════════════════════════════════ */

    /* Tablet single-col switch */
    @media (max-width: 1024px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: calc(var(--nav-height) + 2.5rem) 0 3rem;
        width: 92%;
      }
      .hero-left  { align-items: center; text-align: center; }
      .hero-badge { margin-left: auto; margin-right: auto; }
      .hero-sub   { max-width: 600px; margin-left: auto; margin-right: auto; }
      .hero-chips { justify-content: center; }
      .hero-ctas  { justify-content: center; }
      .hero-trust { justify-content: center; }
      .hero-right { align-items: stretch; }
      .hero-main-img { height: 300px; }
      .hero-headline { font-size: clamp(2rem, 5vw, 3rem); }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .hero { min-height: 100svh; }
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: calc(var(--nav-height) + 0.5rem) 0 2.5rem;
        width: 90%;
      }

      /* ── Center all left-side content ── */
      .hero-left  { align-items: center; text-align: center; }
      .hero-badge { margin-left: auto; margin-right: auto; margin-bottom: 1rem; }
      .hero-headline {
        font-size: clamp(1.75rem, 7.5vw, 2.4rem);
        line-height: 1.12;
        text-align: center;
      }
      .hero-sub {
        font-size: 0.9rem;
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.25rem;
      }
      .hero-chips  { justify-content: center; margin-bottom: 1.25rem; }
      .hero-chip   { font-size: 0.74rem; padding: 6px 12px; }
      .hero-ctas   {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        width: 100%;
      }
      .hero-btn-primary,
      .hero-btn-secondary {
        width: 100%;
        max-width: 340px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.9rem;
      }
      .hero-trust  { justify-content: center; }
      .hero-trust-text { text-align: center; font-size: 0.78rem; }

      /* ── Right visual ── */
      .hero-right  { gap: 0.75rem; }
      .hero-main-img { height: 220px; }
      .hero-metric-row     { grid-template-columns: 1fr 1fr; gap: 0.625rem; }
      .hero-metric         { padding: 0.9rem 1rem; border-radius: 14px; gap: 0.625rem; }
      .hm-icon  { width: 38px; height: 38px; border-radius: 10px; font-size: 0.9rem; }
      .hm-num   { font-size: 1.15rem; }
      .hm-lbl   { font-size: 0.62rem; }

      /* ── Stats bar ── */
      .stats-bar-inner { grid-template-columns: 1fr 1fr; }
      .stat-box:nth-child(2) { border-right: none; }
      .stat-box:nth-child(1),
      .stat-box:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
      .stat-box .num { font-size: 1.9rem; }
      .stat-box { padding: 1.25rem 0.75rem; }

      /* ── Other sections ── */
      .hero-scroll-hint { display: none; }
      .hero::after      { width: 250px; height: 250px; top: -40px; right: -40px; }
      .services-grid    { grid-template-columns: 1fr; }
      .why-inner        { grid-template-columns: 1fr; gap: 2rem; }
      .why-img img      { height: 260px; }
      .process-steps    { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
      .training-inner   { grid-template-columns: 1fr; gap: 2rem; }
      .training-img img { height: 240px; }
      .testi-grid       { grid-template-columns: 1fr; }
      .cta-inner p      { font-size: 0.9rem; }
      .cta-btns         { flex-direction: column; align-items: center; }
      .cta-btns a       { width: 100%; max-width: 300px; justify-content: center; text-align: center; }
    }

    /* Small mobile */
    @media (max-width: 480px) {
      .hero-inner {
        width: 88%;
        padding: calc(var(--nav-height) + -6.25rem) 0 2rem;
        gap: 1.5rem;
      }
      .hero-headline { font-size: clamp(1.55rem, 8vw, 2rem); }
      .hero-badge    { font-size: 0.68rem; padding: 6px 14px; }
      .hero-chips    { display: none; }
      .hero-btn-primary,
      .hero-btn-secondary { font-size: 0.875rem; padding: 13px 20px; max-width: 100%; }
      .hero-main-img { height: 185px; }
      .hm-num  { font-size: 1rem; }
      .hm-lbl  { font-size: 0.6rem; }
      .stat-box .num { font-size: 1.65rem; }
      .process-steps { grid-template-columns: 1fr; }
    }