/* ═══════════════════════════════════════════════════════════
   INNER PAGE — HERO BANNER
═══════════════════════════════════════════════════════════ */
.ip-hero {
  position: relative;
  background: url('../../assets/imgs/inner-background.webp') no-repeat center center / cover;
  padding: 88px 0 80px;
  overflow: hidden;
}
.ip-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,15,60,0.92) 0%, rgba(0,65,194,0.80) 100%);
}
/* subtle dot texture */
.ip-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.ip-hero .container { position: relative; z-index: 2; }

/* breadcrumb */
.ip-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.74rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.ip-breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s ease;
}
.ip-breadcrumb a:hover { color: #fff; }
.ip-breadcrumb .sep { color: rgba(255,255,255,0.30); font-size: 0.65rem; }
.ip-breadcrumb .current { color: rgba(255,255,255,0.90); }

.ip-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.ip-hero .ip-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.ip-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ip-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 5px 13px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.ip-hero-badge i { font-size: 0.8rem; color: #7dd3fc; }

/* right side stat strip */
.ip-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.ip-hero-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 18px 24px;
  min-width: 180px;
  backdrop-filter: blur(6px);
}
.ip-hero-stat .stat-n {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  display: block;
}
.ip-hero-stat .stat-l {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.60);
  margin-top: 4px;
  display: block;
}
@media (max-width: 991px) {
  .ip-hero h1 { font-size: 1.9rem; }
  .ip-hero-stats { flex-direction: row; flex-wrap: wrap; margin-top: 32px; }
  .ip-hero-stat  { min-width: 140px; }
}


/* ═══════════════════════════════════════════════════════════
   INNER PAGE — INTRO SECTION
═══════════════════════════════════════════════════════════ */
.ip-intro {
  padding: 80px 0;
  background: #ffffff;
}
.ip-intro-lead {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.85;
  margin-bottom: 24px;
}
.ip-intro-body {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.9;
}
.ip-intro-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ip-intro-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1e293b;
  padding: 10px 0;
  border-bottom: 1px dashed #e2e8f0;
}
.ip-intro-points li:last-child { border-bottom: none; }
.ip-intro-points li i {
  color: #0041C2;
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════
   INNER PAGE — CAPABILITIES GRID
═══════════════════════════════════════════════════════════ */
.ip-caps {
  padding: 80px 0;
  background: #f8faff;
  border-top: 1px solid #e8eef8;
}
.ip-caps-header {
  margin-bottom: 48px;
}
.ip-caps-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0b1937;
  margin-bottom: 10px;
  line-height: 1.3;
}
.ip-caps-sub {
  font-size: 0.88rem;
  color: #64748b;
  max-width: 520px;
  line-height: 1.8;
}
.ip-caps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 991px) { .ip-caps-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 767px) { .ip-caps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .ip-caps-grid { grid-template-columns: 1fr; } }

.ip-cap-card {
  background: #ffffff;
  border: 1px solid #e8eef8;
  border-radius: 14px;
  padding: 26px 20px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.ip-cap-card:hover {
  border-color: #0041C2;
  box-shadow: 0 8px 28px rgba(0,65,194,0.10);
  transform: translateY(-4px);
}
.ip-cap-icon {
  width: 50px;
  height: 50px;
  background: rgba(0,65,194,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.22s ease;
}
.ip-cap-card:hover .ip-cap-icon {
  background: rgba(0,65,194,0.15);
}
.ip-cap-icon i {
  font-size: 22px;
  color: #0041C2;
}
.ip-cap-card h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0b1937;
  margin-bottom: 8px;
  line-height: 1.35;
}
.ip-cap-card p {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════
   INNER PAGE — WHY CHOOSE US (horizontal strips)
═══════════════════════════════════════════════════════════ */
.ip-why {
  padding: 80px 0;
  background: #0b1937;
  position: relative;
  overflow: hidden;
}
.ip-why::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: 48px 48px;
  pointer-events: none;
}
.ip-why .container { position: relative; }
.ip-why-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.ip-why-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.ip-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 767px) { .ip-why-grid { grid-template-columns: 1fr; } }

.ip-why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 22px 20px;
  transition: background 0.22s ease, border-color 0.22s ease;
}
.ip-why-card:hover {
  background: rgba(0,65,194,0.22);
  border-color: rgba(0,140,255,0.30);
}
.ip-why-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,140,255,0.15);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s ease;
}
.ip-why-card:hover .ip-why-icon { background: rgba(0,140,255,0.28); }
.ip-why-icon i { font-size: 18px; color: #7dd3fc; }
.ip-why-card h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}
.ip-why-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.7;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════
   INNER PAGE — FAQ
═══════════════════════════════════════════════════════════ */
.ip-faq {
  padding: 80px 0;
  background: #ffffff;
  border-top: 1px solid #f0f4ff;
}
.ip-faq-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #0b1937;
  margin-bottom: 8px;
}
.ip-faq-sub {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 40px;
}
.ip-faq .accordion-item {
  border: 1px solid #e8eef8 !important;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.ip-faq .accordion-button {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0b1937;
  background: #ffffff;
  padding: 18px 22px;
  box-shadow: none !important;
}
.ip-faq .accordion-button:not(.collapsed) {
  color: #0041C2;
  background: #f0f6ff;
}
.ip-faq .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230041C2'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.ip-faq .accordion-body {
  font-size: 0.83rem;
  color: #475569;
  line-height: 1.85;
  padding: 4px 22px 20px;
  background: #f8faff;
}


/* ═══════════════════════════════════════════════════════════
   INNER PAGE — TWO-COLUMN BODY (content + sidebar)
═══════════════════════════════════════════════════════════ */
.ip-body { padding: 56px 0 64px; background: #ffffff; }

/* ── Left column overrides ─────────────────────────────── */
.ip-main .ip-section { padding: 0 0 56px; }
.ip-main .ip-section:last-child { padding-bottom: 0; }
.ip-main .ip-section-shaded {
  background: #f8faff;
  border: 1px solid #e8eef8;
  border-radius: 16px;
  padding: 40px 32px;
  margin-bottom: 56px;
}
.ip-main .ip-section-dark {
  background: #0b1937;
  border-radius: 16px;
  overflow: hidden;
  padding: 44px 32px;
  position: relative;
  margin-bottom: 56px;
}
.ip-main .ip-section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.ip-main .ip-section-dark > * { position: relative; }

/* Caps grid — 3 cols when inside the left column */
.ip-main .ip-caps-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1199px) { .ip-main .ip-caps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .ip-main .ip-caps-grid { grid-template-columns: 1fr; } }

/* Why grid — single column when narrow */
.ip-main .ip-why-grid { grid-template-columns: 1fr 1fr; }
@media (max-width: 1199px) { .ip-main .ip-why-grid { grid-template-columns: 1fr; } }

/* ── Sticky sidebar ────────────────────────────────────── */
.ip-sidebar {
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 40px;
}
.ip-sidebar::-webkit-scrollbar { display: none; }
.ip-sidebar { -ms-overflow-style: none; scrollbar-width: none; }

.ip-sidebar-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0041C2;
  margin-bottom: 10px;
}

/* Mini TOC */
.ip-sidebar-toc {
  background: #f8faff;
  border: 1px solid #e8eef8;
  border-radius: 14px;
  padding: 20px;
}
.ip-sidebar-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ip-sidebar-toc li a {
  display: block;
  padding: 7px 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  border-radius: 7px;
  transition: background 0.15s ease, color 0.15s ease;
}
.ip-sidebar-toc li a:hover,
.ip-sidebar-toc li a.active {
  background: #e8eef8;
  color: #0041C2;
}

/* WhatsApp button */
.ip-sidebar-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.ip-sidebar-wa:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  color: #fff;
}
.ip-sidebar-wa i { font-size: 1.15rem; }

/* Quote CTA card */
.ip-sidebar-cta {
  background: linear-gradient(135deg, #0b1937, #0041C2);
  border-radius: 14px;
  padding: 24px 20px;
  color: #ffffff;
}
.ip-sidebar-cta .ip-sidebar-label { color: rgba(255,255,255,0.60); }
.ip-sidebar-cta-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}
.ip-sidebar-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #0041C2;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.ip-sidebar-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.20);
}

/* Sidebar related services (link list) */
.ip-sidebar-related {
  background: #f8faff;
  border: 1px solid #e8eef8;
  border-radius: 14px;
  padding: 20px;
}
.ip-sidebar-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ip-sidebar-related li {
  border-bottom: 1px solid #edf2f7;
}
.ip-sidebar-related li:last-child { border-bottom: none; }
.ip-sidebar-related a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color 0.15s ease;
}
.ip-sidebar-related a:hover { color: #0041C2; }
.ip-sidebar-related a i {
  font-size: 0.7rem;
  color: #94a3b8;
  transition: transform 0.15s ease, color 0.15s ease;
}
.ip-sidebar-related a:hover i {
  color: #0041C2;
  transform: translateX(3px);
}

/* Sidebar badge/trust list */
.ip-sidebar-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ip-sidebar-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #475569;
}
.ip-sidebar-trust-item i {
  font-size: 0.9rem;
  color: #0041C2;
}

/* Featured project card (inline portfolio) */
.ip-project-card {
  background: #ffffff;
  border: 1px solid #e8eef8;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.ip-project-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}
.ip-project-img {
  width: 100%;
  overflow: hidden;
  background: #f1f5f9;
}
.ip-project-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 340px;
}
.ip-project-body {
  padding: 28px;
}
.ip-project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.ip-project-tags span {
  font-size: 0.70rem;
  font-weight: 600;
  color: #0041C2;
  background: rgba(0,65,194,0.06);
  border: 1px solid rgba(0,65,194,0.12);
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}
.ip-project-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0b1937;
  margin-bottom: 10px;
  line-height: 1.3;
}
.ip-project-body p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 16px;
}
.ip-project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.80rem;
  color: #64748b;
  margin-bottom: 18px;
}
.ip-project-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ip-project-meta i { color: #94a3b8; font-size: 0.85rem; }
.ip-project-meta a { color: #0041C2; font-weight: 600; text-decoration: none; }
.ip-project-meta a:hover { text-decoration: underline; }
.ip-project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #0041C2;
  text-decoration: none;
  transition: gap 0.15s ease;
}
.ip-project-link:hover { gap: 12px; }

/* Mobile: sidebar stacks below content */
@media (max-width: 991px) {
  .ip-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
    padding-bottom: 0;
  }
  .ip-body { padding: 40px 0 0; }
  .ip-main .ip-section-shaded,
  .ip-main .ip-section-dark { padding: 32px 20px; }
}


/* ═══════════════════════════════════════════════════════════
   INNER PAGE — CTA STRIP
═══════════════════════════════════════════════════════════ */
.ip-cta {
  background: linear-gradient(135deg, #0041C2 0%, #0060e0 50%, #008CFF 100%);
  padding: 64px 0;
}
.ip-cta h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.ip-cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  line-height: 1.8;
  margin: 0;
}
.ip-cta .btn-cta-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0041C2;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.ip-cta .btn-cta-light:hover {
  background: #f0f6ff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}
.ip-cta .btn-cta-light i { font-size: 0.9rem; transition: transform 0.2s ease; }
.ip-cta .btn-cta-light:hover i { transform: translateX(3px); }


/* ═══════════════════════════════════════════════════════════
   HOME HERO — two-column, benefit-led
═══════════════════════════════════════════════════════════ */
.h-hero {
  position: relative;
  background: url('../../assets/imgs/inner-background.webp') no-repeat center center / cover;
  padding: 108px 0 100px;
  overflow: hidden;
}
.h-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,15,60,0.95) 0%, rgba(0,65,194,0.83) 100%);
}
.h-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.h-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 64px;
}
.h-hero-left {
  flex: 1 1 0;
  min-width: 0;
}
.h-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7dd3fc;
  background: rgba(125,211,252,0.10);
  border: 1px solid rgba(125,211,252,0.22);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.h-hero-headline {
  font-size: 3.1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.13;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.h-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.78;
  max-width: 500px;
  margin: 0 0 32px;
}
.h-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.h-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #0b1937;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.h-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.20);
  color: #0b1937;
}
.h-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.30);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.h-hero-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}
.h-hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.h-proof-dot { opacity: 0.4; }

/* Right: frosted stats card */
.h-hero-right {
  flex: 0 0 320px;
  width: 320px;
  align-self: flex-start;
  padding-top: 10px;
}
.h-hero-card {
  position: relative;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  overflow: hidden;
}
/* top accent bar */
.h-hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #a78bfa, #60a5fa);
  border-radius: 20px 20px 0 0;
}
.h-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 28px 26px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* remove right border on right-column cells */
.h-hero-stat:nth-child(2n) { border-right: none; }
/* remove bottom border on last-row cells */
.h-stat-bottom { border-bottom: none; }

.h-stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(96,165,250,0.15);
  border: 1px solid rgba(96,165,250,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.h-stat-icon i {
  font-size: 15px;
  color: #93c5fd;
}
.h-stat-n {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.h-stat-l {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.52);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .h-hero { padding: 80px 0 72px; }
  .h-hero-inner { flex-direction: column; gap: 44px; }
  .h-hero-right { flex: none; width: 100%; }
  .h-hero-card { max-width: 400px; }
  .h-hero-headline { font-size: 2.5rem; }
}
@media (max-width: 575px) {
  .h-hero-headline { font-size: 2rem; }
  .h-stat-n { font-size: 2rem; }
}


/* ═══════════════════════════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════════════════════════ */
.industries-section {
  background: #0b1937;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
/* Subtle grid texture */
.industries-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.ind-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
  position: relative;
}
.ind-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}
.ind-intro {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  max-width: 360px;
  line-height: 1.85;
  margin: 0;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .ind-header { flex-direction: column; align-items: flex-start; }
  .ind-title  { font-size: 1.6rem; }
  .ind-intro  { max-width: 100%; }
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 991px) { .ind-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .ind-grid { grid-template-columns: 1fr; } }

.ind-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 30px 26px;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}
.ind-card:hover {
  background: rgba(0,65,194,0.30);
  border-color: rgba(0,140,255,0.40);
  transform: translateY(-4px);
}
.ind-icon {
  width: 50px;
  height: 50px;
  background: rgba(0,140,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: background 0.25s ease;
}
.ind-card:hover .ind-icon {
  background: rgba(0,140,255,0.28);
}
.ind-icon i {
  font-size: 22px;
  color: #008CFF;
}
.ind-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.ind-card p {
  font-size: 0.79rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.ind-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.50);
  font-size: 0.85rem;
  margin-top: 6px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
}
.ind-card:hover .ind-arrow {
  background: #0041C2;
  color: #ffffff;
  transform: translateX(3px);
}


/* ═══════════════════════════════════════════════════════════
   HOME BLOG SECTION
═══════════════════════════════════════════════════════════ */
.home-blog-section {
  background: #ffffff;
  padding: 90px 0;
  border-top: 1px solid #f0f4ff;
}
.home-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.home-blog-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0b1937;
  margin: 0;
  line-height: 1.25;
}
.home-blog-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #0041C2;
  text-decoration: none;
  border: 1.5px solid #0041C2;
  padding: 9px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.home-blog-all:hover {
  background: #0041C2;
  color: #ffffff;
}

/* Override the legacy blog card styles for the home page */
.home-blog-grid .blogs-container {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  flex-wrap: unset !important;
}
@media (max-width: 991px) {
  .home-blog-grid .blogs-container { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 575px) {
  .home-blog-grid .blogs-container { grid-template-columns: 1fr !important; }
}

.home-blog-grid .blog-card {
  width: 100% !important;
  border-radius: 14px !important;
  border: 1px solid #e8eef8 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
  overflow: hidden !important;
  background: #ffffff !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}
.home-blog-grid .blog-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 32px rgba(0,65,194,0.10) !important;
  border-color: rgba(0,65,194,0.25) !important;
}
.home-blog-grid .blog-card img.blog-img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.35s ease !important;
}
.home-blog-grid .blog-card:hover img.blog-img {
  transform: scale(1.04) !important;
}
.home-blog-grid .blog-card .blog-content {
  padding: 22px 20px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}
.home-blog-grid .blog-card h3 {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #0b1937 !important;
  line-height: 1.45 !important;
  margin-bottom: 8px !important;
}
.home-blog-grid .blog-card h3 a {
  color: inherit !important;
  text-decoration: none !important;
}
.home-blog-grid .blog-card h3 a:hover {
  color: #0041C2 !important;
}
.home-blog-grid .blog-card small {
  font-size: 0.73rem !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 10px !important;
}
.home-blog-grid .blog-card p {
  font-size: 0.80rem !important;
  color: #64748b !important;
  line-height: 1.7 !important;
  flex: 1 !important;
  margin-bottom: 18px !important;
}
.home-blog-grid .blog-card .read-more {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: #0041C2 !important;
  text-decoration: none !important;
  transition: gap 0.2s ease !important;
  align-self: flex-start !important;
}
.home-blog-grid .blog-card .read-more::after {
  content: '→';
  transition: transform 0.2s ease;
}
.home-blog-grid .blog-card:hover .read-more {
  gap: 8px !important;
}


/* ═══════════════════════════════════════════════════════════
   SHARED EYEBROW LABEL
═══════════════════════════════════════════════════════════ */
.wwd-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0041C2;
  background: rgba(0, 65, 194, 0.08);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}


/* ═══════════════════════════════════════════════════════════
   WHAT WE DO
═══════════════════════════════════════════════════════════ */
.what-we-do {
  background: #ffffff;
  padding: 90px 0;
}
.wwd-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.wwd-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #0b1937;
  line-height: 1.25;
  margin: 0;
}
.wwd-intro {
  font-size: 0.92rem;
  color: #64748b;
  max-width: 380px;
  line-height: 1.8;
  margin: 0;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .wwd-header { flex-direction: column; align-items: flex-start; }
  .wwd-title  { font-size: 1.6rem; }
  .wwd-intro  { max-width: 100%; }
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) { .wwd-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .wwd-grid { grid-template-columns: 1fr; } }

.wwd-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 26px 28px;
  border-radius: 16px;
  text-decoration: none !important;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.wwd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.14);
}

/* Colour variants */
.wwd-card--blue   { background: linear-gradient(145deg, #0041C2, #0060e0); }
.wwd-card--teal   { background: linear-gradient(145deg, #0284c7, #0ea5e9); }
.wwd-card--indigo { background: linear-gradient(145deg, #4338ca, #6366f1); }
.wwd-card--crimson{ background: linear-gradient(145deg, #be123c, #e11d48); }

/* Decorative big number */
.wwd-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.10);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.wwd-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.22);
}
.wwd-icon-wrap i { font-size: 24px; color: #fff; }

.wwd-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.35;
}
.wwd-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 22px;
}
.wwd-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  border-top: 1px solid rgba(255,255,255,0.20);
  padding-top: 14px;
  margin-top: auto;
  transition: gap 0.2s ease;
}
.wwd-card:hover .wwd-link { gap: 10px; }
.wwd-link i { font-size: 0.85rem; }


/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════════════════ */
.wcu-section {
  background: #f8faff;
  padding: 90px 0;
  border-top: 1px solid #e8eef8;
}
.wcu-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #0b1937;
  line-height: 1.3;
  margin-bottom: 18px;
}
.wcu-intro {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.85;
  margin-bottom: 28px;
}
.wcu-proof-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.wcu-proof-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #334155;
  padding: 7px 0;
  border-bottom: 1px dashed #e2e8f0;
}
.wcu-proof-list li:last-child { border-bottom: none; }
.wcu-proof-list li i {
  color: #0041C2;
  font-size: 1rem;
  flex-shrink: 0;
}
.wcu-cta {
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  padding: 11px 28px;
  background: #0041C2;
  border-color: #0041C2;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.wcu-cta:hover {
  background: #0030a0;
  border-color: #0030a0;
  box-shadow: 0 6px 20px rgba(0,65,194,0.28);
}

/* 2×3 tile grid */
.wcu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 575px) { .wcu-grid { grid-template-columns: 1fr; } }

.wcu-tile {
  background: #ffffff;
  border: 1px solid #e8eef8;
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.wcu-tile:hover {
  border-color: #0041C2;
  box-shadow: 0 6px 24px rgba(0,65,194,0.09);
  transform: translateY(-3px);
}
.wcu-tile-icon {
  width: 46px;
  height: 46px;
  background: rgba(0,65,194,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.wcu-tile-icon i {
  font-size: 20px;
  color: #0041C2;
}
.wcu-tile h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0b1937;
  margin-bottom: 6px;
}
.wcu-tile p {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}




/* ═══════════════════════════════════════════════════════════
   POPPINS — Global font override
═══════════════════════════════════════════════════════════ */
:root {
  --bs-body-font-family: 'Poppins', sans-serif;
  --bs-font-sans-serif:  'Poppins', sans-serif;
}
*, *::before, *::after {
  font-family: 'Poppins', sans-serif;
}
body {
  font-family: 'Poppins', sans-serif;
}


/* ═══════════════════════════════════════════════════════════
   SITE HEADER
═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 65, 194, 0.10);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.site-header .navbar-brand {
  margin-bottom: 0;
  line-height: 1;
}
.site-header .navbar-brand img {
  height: 38px;
  display: block;
}

/* Nav links */
.site-header .nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: #1e293b;
  padding: 7px 11px;
  border-radius: 6px;
  transition: color 0.18s ease, background 0.18s ease;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}
.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-header .nav-link.show {
  color: #0041C2;
  background: rgba(0, 65, 194, 0.06);
}
.site-header .dropdown-toggle::after {
  vertical-align: 0.15em;
  opacity: 0.5;
}

/* Dropdown panel */
.site-header .dropdown-menu {
  border: 1px solid rgba(0, 65, 194, 0.10);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
  padding: 8px;
  min-width: 230px;
  margin-top: 8px !important;
  animation: dropIn 0.15s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.site-header .dropdown-item {
  font-size: 0.79rem;
  font-weight: 400;
  color: #334155;
  padding: 8px 12px;
  border-radius: 6px;
  white-space: normal;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-header .dropdown-item:hover,
.site-header .dropdown-item:focus {
  background: rgba(0, 65, 194, 0.07);
  color: #0041C2;
}

/* Iconed dropdown items (subtle polish for compact dropdowns) */
.site-header .dropdown-item-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header .dropdown-item-icon i {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #eaf1ff, #f8fbff);
  color: #0041C2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: 1px solid rgba(0, 65, 194, 0.10);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.site-header .dropdown-item-icon:hover i,
.site-header .dropdown-item-icon:focus i {
  background: linear-gradient(135deg, #0041C2, #2b6bff);
  color: #fff;
  border-color: transparent;
}

/* ─── Mega menu (Products) ─────────────────────────────── */
.site-header .mega-dropdown .mega-menu {
  min-width: 820px;
  padding: 0;
  border: 1px solid rgba(0, 65, 194, 0.10);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(11, 25, 55, 0.14);
  overflow: hidden;
}
.site-header .mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 22px 10px;
}
.site-header .mega-col {
  padding: 0 14px;
  position: relative;
}
.site-header .mega-col + .mega-col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: #eef2f7;
}
.site-header .mega-col-title {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #94a3b8;
  margin: 4px 8px 10px;
}
.site-header .mega-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 9px 8px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}
.site-header .mega-item:hover,
.site-header .mega-item:focus {
  background: rgba(0, 65, 194, 0.05);
  text-decoration: none;
}
.site-header .mega-item-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #eaf1ff, #f8fbff);
  color: #0041C2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1px solid rgba(0, 65, 194, 0.10);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.site-header .mega-item:hover .mega-item-icon {
  background: linear-gradient(135deg, #0041C2, #2b6bff);
  color: #fff;
  border-color: transparent;
}
.site-header .mega-item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.site-header .mega-item-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0b1937;
}
.site-header .mega-item-desc {
  font-size: 0.71rem;
  color: #64748b;
  margin-top: 1px;
}
.site-header .mega-item:hover .mega-item-name {
  color: #0041C2;
}

/* Promo card inside column 3 */
.site-header .mega-promo {
  margin-top: 12px;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0041C2 0%, #2b6bff 100%);
  color: #fff;
}
.site-header .mega-promo-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 6px;
}
.site-header .mega-promo-text {
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 10px;
}
.site-header .mega-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}
.site-header .mega-promo-cta:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.site-header .mega-promo-cta i {
  transition: transform 0.15s ease;
}
.site-header .mega-promo-cta:hover i {
  transform: translateX(3px);
}

/* Header CTA button */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 50px;
  background: #0041C2;
  color: #ffffff !important;
  text-decoration: none !important;
  border: 2px solid #0041C2;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
  line-height: 1;
}
.header-cta svg,
.header-cta i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.header-cta:hover {
  background: #0030a0;
  border-color: #0030a0;
  box-shadow: 0 4px 16px rgba(0, 65, 194, 0.30);
  transform: translateY(-1px);
}
.header-cta:hover svg,
.header-cta:hover i {
  transform: translateX(3px);
}

/* Hamburger button */
.site-header .navbar-toggler {
  border: none;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(0, 65, 194, 0.07);
  transition: background 0.2s ease;
}
.site-header .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.site-header .navbar-toggler:hover {
  background: rgba(0, 65, 194, 0.14);
}
.site-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230041C2' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 20px;
  height: 20px;
}


/* ═══════════════════════════════════════════════════════════
   OFF-CANVAS MOBILE MENU
═══════════════════════════════════════════════════════════ */
#mobileOffcanvas {
  width: 300px;
}
#mobileOffcanvas .offcanvas-header {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
}
#mobileOffcanvas .offcanvas-header img {
  height: 34px;
}
#mobileOffcanvas .offcanvas-body {
  padding: 0;
  display: flex;
  flex-direction: column;
}

/* Accordion nav */
.mobile-nav {
  flex: 1 1 auto;
  overflow-y: auto;
}
.mobile-nav .accordion-item {
  border: none;
  border-bottom: 1px solid #f1f5f9;
}
.mobile-nav .accordion-button {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e293b;
  background: transparent;
  padding: 13px 20px;
  box-shadow: none !important;
  letter-spacing: 0.01em;
}
.mobile-nav .accordion-button:not(.collapsed) {
  color: #0041C2;
  background: rgba(0, 65, 194, 0.04);
}
.mobile-nav .accordion-button::after {
  width: 14px;
  height: 14px;
  background-size: 14px;
}
.mobile-nav .accordion-body {
  padding: 4px 0 10px;
  background: #f8faff;
}
.mobile-nav .accordion-body a {
  display: block;
  font-size: 0.79rem;
  font-weight: 400;
  color: #475569;
  padding: 8px 20px 8px 30px;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}
.mobile-nav .accordion-body a:hover {
  color: #0041C2;
  background: rgba(0, 65, 194, 0.05);
}

/* Categorized products in mobile menu */
.mobile-nav .mobile-products a,
.mobile-nav .mobile-iconed a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px 9px 30px;
}
.mobile-nav .mobile-products a i,
.mobile-nav .mobile-iconed a i {
  font-size: 0.95rem;
  color: #0041C2;
  width: 18px;
  text-align: center;
}
.mobile-nav .mobile-group-title {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #94a3b8;
  margin: 14px 20px 4px;
  padding: 0;
}
.mobile-nav .mobile-products .mobile-group-title:first-child {
  margin-top: 6px;
}

/* Direct links (no sub-menu) */
.mobile-direct {
  border-bottom: 1px solid #f1f5f9;
}
.mobile-direct a {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1e293b;
  padding: 13px 20px;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  transition: color 0.15s ease, background 0.15s ease;
}
.mobile-direct a:last-child {
  border-bottom: none;
}
.mobile-direct a:hover {
  color: #0041C2;
  background: rgba(0, 65, 194, 0.04);
}
.mobile-direct.mobile-direct-iconed a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-direct.mobile-direct-iconed a i {
  font-size: 0.95rem;
  color: #0041C2;
  width: 18px;
  text-align: center;
}

/* Canvas bottom CTA */
.mobile-nav-footer {
  flex-shrink: 0;
  padding: 20px;
  border-top: 1px solid #f1f5f9;
}
.mobile-nav-footer .btn-primary {
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  padding: 11px 0;
  background: #0041C2;
  border-color: #0041C2;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.mobile-nav-footer .btn-primary:hover {
  background: #0030a0;
  border-color: #0030a0;
  box-shadow: 0 4px 14px rgba(0, 65, 194, 0.28);
}


/* ═══════════════════════════════════════════════════════════
   SITE FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: #0b1937;
  color: #94a3b8;
  font-size: 0.82rem;
  padding-top: 64px;
}
.site-footer .footer-logo {
  height: 34px;
  filter: brightness(0) invert(1);
  display: block;
  margin-bottom: 16px;
}
.site-footer .footer-tagline {
  font-size: 0.79rem;
  color: #8899b4;
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 235px;
}
.site-footer .footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.site-footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #8899b4;
  font-size: 0.8rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.site-footer .footer-social a:hover {
  background: #0041C2;
  color: #ffffff;
}
.site-footer .footer-col-title {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e2e8f0;
  margin-bottom: 16px;
  margin-top: 0;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.site-footer .footer-links li {
  margin-bottom: 9px;
}
.site-footer .footer-links a {
  color: #8899b4;
  text-decoration: none;
  font-size: 0.79rem;
  transition: color 0.18s ease;
}
.site-footer .footer-links a:hover {
  color: #ffffff;
}
.site-footer .footer-bottom {
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.75rem;
  color: #4a5568;
}
.site-footer .footer-bottom a {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.18s ease;
}
.site-footer .footer-bottom a:hover {
  color: #e2e8f0;
}


/* ═══════════════════════════════════════════════════════════
   COMPANY PAGES — BLOG LISTING
═══════════════════════════════════════════════════════════ */
.blog-page-section {
  background: #f8faff;
  border-top: 1px solid #e8eef8;
}

/* Grid wrapper that overrides the legacy flex layout */
.blog-page-grid .blogs-container {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  flex-wrap: unset !important;
}
@media (max-width: 991px) {
  .blog-page-grid .blogs-container { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 575px) {
  .blog-page-grid .blogs-container { grid-template-columns: 1fr !important; }
}

.blog-page-grid .blog-card {
  width: 100% !important;
  border-radius: 16px !important;
  border: 1px solid #e8eef8 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
  overflow: hidden !important;
  background: #ffffff !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}
.blog-page-grid .blog-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 32px rgba(0,65,194,0.10) !important;
  border-color: rgba(0,65,194,0.25) !important;
}
.blog-page-grid .blog-card img.blog-img {
  width: 100% !important;
  height: 210px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.35s ease !important;
}
.blog-page-grid .blog-card:hover img.blog-img {
  transform: scale(1.04) !important;
}
.blog-page-grid .blog-card .blog-content {
  padding: 22px 20px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}
.blog-page-grid .blog-card h3 {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #0b1937 !important;
  line-height: 1.45 !important;
  margin-bottom: 8px !important;
}
.blog-page-grid .blog-card h3 a { color: inherit !important; text-decoration: none !important; }
.blog-page-grid .blog-card h3 a:hover { color: #0041C2 !important; }
.blog-page-grid .blog-card small {
  font-size: 0.73rem !important;
  color: #94a3b8 !important;
  font-weight: 500 !important;
  margin-bottom: 10px !important;
}
.blog-page-grid .blog-card p {
  font-size: 0.82rem !important;
  color: #64748b !important;
  line-height: 1.7 !important;
  flex: 1 !important;
  margin-bottom: 18px !important;
}
.blog-page-grid .blog-card .read-more {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: #0041C2 !important;
  text-decoration: none !important;
  align-self: flex-start !important;
  transition: gap 0.2s ease !important;
}
.blog-page-grid .blog-card .read-more::after {
  content: '→';
  transition: transform 0.2s ease;
}
.blog-page-grid .blog-card:hover .read-more { gap: 8px !important; }


/* ═══════════════════════════════════════════════════════════
   EVENTS PAGE
═══════════════════════════════════════════════════════════ */

/* Hero */
.ev-hero {
  background: #ffffff;
  padding: 72px 0 56px;
  border-bottom: 1px solid #e8eef8;
}
.ev-hero-inner { max-width: 720px; }
.ev-hero-headline {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0b1937;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
}
.ev-hero-body {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 28px;
}
.ev-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ev-filter {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 6px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.ev-filter:hover {
  background: #0041C2;
  color: #ffffff;
  border-color: #0041C2;
}

/* Grid section */
.ev-grid-section {
  background: #f8faff;
  padding: 64px 0 80px;
  border-top: 1px solid #e8eef8;
}
.ev-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) { .ev-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .ev-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .ev-grid { grid-template-columns: 1fr; } }

/* Card — full link */
.ev-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e8eef8;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.ev-card:hover {
  box-shadow: 0 10px 32px rgba(0,65,194,0.11);
  transform: translateY(-4px);
  border-color: rgba(0,65,194,0.20);
}
.ev-card-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.ev-card:hover .ev-card-img img { transform: scale(1.05); }
.ev-card-img { overflow: hidden; }

.ev-card-body {
  padding: 16px 18px 12px;
  flex: 1;
}
.ev-card-date {
  font-size: 0.72rem;
  font-weight: 600;
  color: #0041C2;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.ev-date-sep { color: #94a3b8; margin: 0 2px; }
.ev-card-body h5 {
  font-size: 0.86rem;
  font-weight: 700;
  color: #0b1937;
  line-height: 1.4;
  margin-bottom: 10px;
}
.ev-card-location {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ev-card-location i { color: #0041C2; font-size: 0.8rem; }

.ev-card-footer {
  padding: 10px 18px 14px;
  border-top: 1px solid #f1f5f9;
}
.ev-card-footer span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0041C2;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s ease;
}
.ev-card:hover .ev-card-footer span { gap: 8px; }

.ev-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.ev-seo-text {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid #e8eef8;
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.8;
}


/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */
.ct-section {
  background: #ffffff;
  min-height: calc(100vh - 80px);
}

/* Left: form side */
.ct-form-side {
  padding: 72px 56px 72px 0;
  border-right: 1px solid #e8eef8;
}
@media (max-width: 991px) {
  .ct-form-side { padding: 56px 0 48px; border-right: none; border-bottom: 1px solid #e8eef8; }
}

.ct-headline {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b1937;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
}
.ct-subline {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

/* Form fields */
.ct-form { margin-top: 0; }
.ct-form-row { margin-bottom: 20px; }
.ct-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 575px) { .ct-form-row-2 { grid-template-columns: 1fr; } }

.ct-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0b1937;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.ct-req { color: #0041C2; }
.ct-field input,
.ct-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.88rem;
  color: #0b1937;
  background: #f8faff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
  font-family: inherit;
  resize: vertical;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: #94a3b8; }
.ct-field input:focus,
.ct-field textarea:focus {
  border-color: #0041C2;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0,65,194,0.08);
}

.ct-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0041C2;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  font-family: inherit;
}
.ct-submit:hover {
  background: #0035a0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,65,194,0.25);
}
.ct-submit-note {
  display: inline-block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-left: 16px;
  vertical-align: middle;
}
@media (max-width: 480px) { .ct-submit-note { display: block; margin: 8px 0 0; } }

/* Right: info side */
.ct-info-side {
  padding: 72px 0 72px 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 991px) {
  .ct-info-side { padding: 48px 0 72px; }
}

.ct-info-top { margin-bottom: 40px; }
.ct-info-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0b1937;
  margin-bottom: 12px;
}
.ct-info-body {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 320px;
}
.ct-info-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ct-info-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #0041C2;
  background: rgba(0,65,194,0.07);
  padding: 5px 12px;
  border-radius: 50px;
}
.ct-info-badges i { font-size: 0.78rem; }

/* Office list */
.ct-offices {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ct-office {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f1f5f9;
}
.ct-office:last-child { border-bottom: none; }
.ct-office-flag {
  width: 40px;
  height: 40px;
  background: rgba(0,65,194,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ct-office-flag i { color: #0041C2; font-size: 1rem; }
.ct-office-body h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0b1937;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ct-hq {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #0041C2;
  background: rgba(0,65,194,0.08);
  padding: 2px 7px;
  border-radius: 50px;
}
.ct-office-body p {
  font-size: 0.80rem;
  color: #64748b;
  margin-bottom: 5px;
  line-height: 1.5;
}
.ct-office-body a {
  font-size: 0.80rem;
  color: #0041C2;
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}
.ct-office-body a:hover { text-decoration: underline; }
.ct-phone {
  font-size: 0.78rem !important;
  color: #475569 !important;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ct-phone i { color: #0041C2; font-size: 0.75rem; }


/* ═══════════════════════════════════════════════════════════
   PORTFOLIO LISTING PAGE
═══════════════════════════════════════════════════════════ */

/* Hero */
.pf-hero {
  background: #ffffff;
  padding: 72px 0 56px;
  border-bottom: 1px solid #e8eef8;
}
.pf-hero-inner { max-width: 640px; }
.pf-hero-headline {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0b1937;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 8px 0 16px;
}
.pf-hero-body {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

/* Grid */
.pf-grid-section {
  background: #f8faff;
  padding: 64px 0 80px;
  border-top: 1px solid #e8eef8;
}
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) { .pf-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px)  { .pf-grid { grid-template-columns: 1fr; } }

.pf-item {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e8eef8;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.pf-item:hover {
  box-shadow: 0 12px 36px rgba(0,65,194,0.12);
  transform: translateY(-5px);
  border-color: rgba(0,65,194,0.20);
}

/* Image with hover overlay */
.pf-item-img {
  position: relative;
  overflow: hidden;
}
.pf-item-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pf-item:hover .pf-item-img img {
  transform: scale(1.06);
}
.pf-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,15,60,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pf-item:hover .pf-item-overlay { opacity: 1; }
.pf-view-btn {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #0041C2;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}
.pf-item:hover .pf-view-btn { transform: scale(1); }

/* Card body */
.pf-item-body {
  padding: 20px 22px 22px;
}
.pf-item-body h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0b1937;
  margin-bottom: 6px;
  line-height: 1.35;
}
.pf-item-body p {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.pf-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}


/* ═══════════════════════════════════════════════════════════
   COMPANY PAGES — PROJECT DETAIL
═══════════════════════════════════════════════════════════ */
.project-detail-section {
  background: #ffffff;
  padding: 80px 0;
}
.project-detail-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 460px;
}
.project-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 0.84rem;
}
.project-meta-item:last-child { border-bottom: none; }
.project-meta-label {
  font-weight: 700;
  color: #0b1937;
  min-width: 110px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.project-meta-value { color: #334155; }
.project-meta-value a { color: #0041C2; text-decoration: none; }
.project-meta-value a:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════
   COMPANY PAGES — CAREERS
═══════════════════════════════════════════════════════════ */
.careers-apply-section {
  background: #f8faff;
  padding: 80px 0;
  border-top: 1px solid #e8eef8;
}


/* ═══════════════════════════════════════════════════════════
   CAREERS PAGE
═══════════════════════════════════════════════════════════ */

/* Hero */
.careers-hero {
  background: #ffffff;
  padding: 80px 0 72px;
  border-bottom: 1px solid #e8eef8;
}
.careers-hero-headline {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0b1937;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 10px 0 20px;
}
.careers-hero-body {
  font-size: 1rem;
  color: #475569;
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 28px;
}
.careers-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
}
.careers-hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.careers-hero-meta i { color: #0041C2; }

/* Right panel */
.careers-hero-panel {
  background: #f8faff;
  border: 1px solid #e8eef8;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.chp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e8eef8;
}
.chp-item:last-child { border-bottom: none; }
.chp-item > i {
  font-size: 1.3rem;
  color: #0041C2;
  margin-top: 2px;
  flex-shrink: 0;
}
.chp-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0b1937;
  margin-bottom: 3px;
}
.chp-item span {
  display: block;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.5;
}

/* Roles section */
.careers-roles {
  background: #f8faff;
  padding: 90px 0;
  border-top: 1px solid #e8eef8;
}
.careers-roles-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0b1937;
  line-height: 1.3;
  margin-bottom: 16px;
}
.careers-roles-intro {
  font-size: 0.87rem;
  color: #64748b;
  line-height: 1.85;
  margin-bottom: 24px;
}
.careers-role-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e8eef8;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}
.careers-role-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px;
  border-bottom: 1px solid #e8eef8;
  transition: background 0.18s ease;
}
.careers-role-item:last-child { border-bottom: none; }
.careers-role-item:hover { background: #f8faff; }
.cri-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,65,194,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.cri-icon i { font-size: 1.3rem; color: #0041C2; }
.cri-body h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0b1937;
  margin-bottom: 8px;
}
.cri-body p {
  font-size: 0.83rem;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 12px;
}
.cri-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cri-tags span {
  font-size: 0.70rem;
  font-weight: 600;
  color: #0041C2;
  background: rgba(0,65,194,0.08);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

/* Apply CTA */
.careers-apply {
  background: #0b1937;
  padding: 72px 0;
}
.careers-apply-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cai-left h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.cai-left p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  max-width: 460px;
  line-height: 1.75;
  margin: 0;
}
.cai-right { flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — unique editorial layout
═══════════════════════════════════════════════════════════ */

/* Hero */
.about-hero {
  background: #ffffff;
  border-bottom: 1px solid #e8eef8;
  padding: 80px 0 72px;
}
.about-hero-inner {
  max-width: 820px;
}
.about-hero-headline {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0b1937;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  margin-top: 8px;
}
.about-hero-body {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 48px;
}
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #e8eef8;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-hero-stats { grid-template-columns: 1fr 1fr; }
  .about-hero-headline { font-size: 2rem; }
}
@media (max-width: 480px) {
  .about-hero-stats { grid-template-columns: 1fr; }
}
.about-hero-stat {
  padding: 24px 20px;
  border-right: 1px solid #e8eef8;
}
.about-hero-stat:last-child { border-right: none; }
@media (max-width: 767px) {
  .about-hero-stat:nth-child(2) { border-right: none; }
  .about-hero-stat:nth-child(3) { border-right: 1px solid #e8eef8; }
  .about-hero-stat { border-bottom: 1px solid #e8eef8; }
  .about-hero-stat:last-child, .about-hero-stat:nth-last-child(2) { border-bottom: none; }
}
.ahs-n {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #0041C2;
  line-height: 1;
  margin-bottom: 6px;
}
.ahs-l {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
}

/* Mission quote */
.about-mission {
  background: #0b1937;
  padding: 64px 0;
}
.about-quote {
  margin: 0;
  padding: 0;
  border: none;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.about-quote-icon {
  font-size: 3rem;
  color: rgba(0,140,255,0.5);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}
.about-quote p {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}

/* Story */
.about-story {
  background: #ffffff;
  padding: 90px 0;
}
.about-story-visual {
  background: #f8faff;
  border: 1px solid #e8eef8;
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 340px;
  justify-content: center;
}
.asv-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e8eef8;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #0b1937;
}
.asv-badge i {
  font-size: 1.3rem;
  color: #0041C2;
  flex-shrink: 0;
}
.asv-locations {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px dashed #e2e8f0;
}
.asv-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.80rem;
  color: #475569;
  font-weight: 500;
}
.asv-flag i { color: #0041C2; }
.about-story-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0b1937;
  line-height: 1.3;
  margin-bottom: 18px;
}
.about-story-lead {
  font-size: 1rem;
  color: #334155;
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 500;
}
.about-story-body {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 14px;
}
.about-story-body:last-child { margin-bottom: 0; }

/* Coverage list */
.about-coverage {
  background: #f8faff;
  padding: 90px 0;
  border-top: 1px solid #e8eef8;
}
.about-coverage-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0b1937;
  line-height: 1.3;
  margin-bottom: 16px;
}
.about-coverage-intro {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.9;
}
.about-coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 575px) {
  .about-coverage-grid { grid-template-columns: 1fr; }
}
.about-coverage-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  border-bottom: 1px solid #e8eef8;
  border-right: 1px solid #e8eef8;
  background: #ffffff;
  transition: background 0.2s ease;
}
.about-coverage-item:hover { background: #f0f6ff; }
.about-coverage-item:nth-child(even) { border-right: none; }
.about-coverage-item:nth-last-child(-n+2) { border-bottom: none; }
@media (max-width: 575px) {
  .about-coverage-item { border-right: none; }
  .about-coverage-item:last-child { border-bottom: none; }
  .about-coverage-item:nth-last-child(2) { border-bottom: 1px solid #e8eef8; }
}
.about-coverage-item > i {
  font-size: 1.4rem;
  color: #0041C2;
  margin-top: 2px;
  flex-shrink: 0;
  width: 32px;
}
.about-coverage-item h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0b1937;
  margin-bottom: 6px;
  line-height: 1.3;
}
.about-coverage-item p {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Values — numbered list layout */
.about-values {
  background: #ffffff;
  padding: 90px 0;
  border-top: 1px solid #f0f4ff;
}
.about-values-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0b1937;
  margin-bottom: 0;
}
.about-values-list {
  border-top: 1px solid #e8eef8;
  margin-top: 48px;
}
.about-value-row {
  display: grid;
  grid-template-columns: 64px 240px 1fr;
  gap: 0 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid #e8eef8;
  transition: background 0.18s ease;
}
.about-value-row:last-child { border-bottom: none; }
.about-value-row:hover { background: #f8faff; }
@media (max-width: 767px) {
  .about-value-row {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
  }
  .avr-body {
    grid-column: 2;
    margin-top: 8px;
  }
}
@media (max-width: 480px) {
  .about-value-row { grid-template-columns: 1fr; }
  .avr-num { margin-bottom: 8px; }
  .avr-body { grid-column: 1; }
}
.avr-num {
  font-size: 1rem;
  font-weight: 800;
  color: #0041C2;
  opacity: 0.5;
  padding-top: 2px;
}
.avr-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0b1937;
  line-height: 1.4;
  padding-top: 2px;
}
.avr-body {
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.85;
}

/* Offices */
.about-offices {
  background: #f8faff;
  padding: 90px 0;
  border-top: 1px solid #e8eef8;
}
.about-offices-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0b1937;
}
.about-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .about-offices-grid { grid-template-columns: 1fr; }
}
.about-office-card {
  background: #ffffff;
  border: 1px solid #e8eef8;
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.about-office-card:hover {
  box-shadow: 0 8px 28px rgba(0,65,194,0.09);
  transform: translateY(-3px);
}
.aoc-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,65,194,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.aoc-icon i { font-size: 1.3rem; color: #0041C2; }
.about-office-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #0b1937;
  margin-bottom: 8px;
}
.aoc-location {
  font-size: 0.83rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
}
.aoc-email {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.80rem;
  color: #0041C2;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 8px;
}
.aoc-email:hover { text-decoration: underline; }
.aoc-phone {
  font-size: 0.80rem;
  color: #475569;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.aoc-phone i { color: #0041C2; }
.aoc-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0041C2;
  background: rgba(0,65,194,0.08);
  padding: 4px 12px;
  border-radius: 50px;
}

/* CTA */
.about-cta {
  background: #0b1937;
  padding: 80px 0;
}
.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.about-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.about-cta p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.60);
  margin: 0;
  max-width: 420px;
  line-height: 1.7;
}
.about-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.about-cta .btn-outline-secondary {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.25);
}
.about-cta .btn-outline-secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.45);
  color: #ffffff;
}


/* ═══════════════════════════════════════════════════════════
   OUR EXPERTISE PAGE
═══════════════════════════════════════════════════════════ */

/* Hero */
.ex-hero {
  background: #ffffff;
  padding: 72px 0 56px;
  border-bottom: 1px solid #e8eef8;
}
.ex-hero-headline {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0b1937;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 8px 0 16px;
}
.ex-hero-body {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 560px;
  margin: 0;
}

/* Category grid */
.ex-grid-section {
  background: #f8faff;
  padding: 64px 0 80px;
  border-top: 1px solid #e8eef8;
}
.ex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) { .ex-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px)  { .ex-grid { grid-template-columns: 1fr; } }

.ex-cat {
  background: #ffffff;
  border: 1px solid #e8eef8;
  border-radius: 16px;
  padding: 28px 28px 24px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.ex-cat:hover {
  box-shadow: 0 6px 24px rgba(0,65,194,0.08);
  border-color: rgba(0,65,194,0.18);
}
.ex-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}
.ex-cat-icon {
  width: 42px;
  height: 42px;
  background: rgba(0,65,194,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ex-cat-icon i { font-size: 1.2rem; color: #0041C2; }
.ex-cat-header h2 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0b1937;
  margin: 0;
  line-height: 1.3;
}

/* Link list */
.ex-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ex-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #334155;
  text-decoration: none;
  padding: 7px 0;
  border-bottom: 1px dashed #f1f5f9;
  transition: color 0.15s ease, gap 0.15s ease;
}
.ex-links li:last-child a { border-bottom: none; }
.ex-links li a::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #0041C2;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.15s ease;
}
.ex-links li a:hover {
  color: #0041C2;
  gap: 12px;
}
.ex-links li a:hover::before { opacity: 1; }

/* CTA */
.ex-cta {
  background: #0b1937;
  padding: 64px 0;
}
.ex-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ex-cta h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.ex-cta p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════════
   JOIN NOW / POST A RESUME PAGE
═══════════════════════════════════════════════════════════ */
.jn-section {
  background: #ffffff;
  min-height: calc(100vh - 80px);
}

/* Layout: full-bleed left col, contained right col */
.jn-layout {
  display: flex;
  min-height: calc(100vh - 80px);
}
.jn-left-col {
  width: 35%;
  flex-shrink: 0;
}
.jn-right-col {
  flex: 1;
  max-width: 65%;
}
@media (max-width: 991px) {
  .jn-layout { flex-direction: column; }
  .jn-left-col, .jn-right-col { width: 100%; max-width: 100%; }
}

/* Left info side */
.jn-info-side {
  background: #0b1937;
  padding: 64px 48px;
  height: 100%;
  position: sticky;
  top: 0;
}
@media (max-width: 991px) {
  .jn-info-side {
    padding: 48px 24px 40px;
    background: #0b1937;
    position: static;
  }
}
.jn-info-side .wwd-eyebrow {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.10);
}
.jn-headline {
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 10px 0 16px;
}
.jn-body {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.85;
  margin-bottom: 36px;
}
.jn-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.jn-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.jn-perk > i {
  font-size: 1.1rem;
  color: #7dd3fc;
  margin-top: 2px;
  flex-shrink: 0;
}
.jn-perk strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}
.jn-perk span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.5;
}
.jn-careers-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.80rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.18s ease;
}
.jn-careers-link:hover { color: #ffffff; }

/* Right form side */
.jn-form-side {
  padding: 64px 64px 64px 56px;
  border-left: 1px solid #e8eef8;
  max-width: 800px;
}
@media (max-width: 1199px) {
  .jn-form-side { padding: 56px 40px 56px 48px; }
}
@media (max-width: 991px) {
  .jn-form-side { padding: 48px 24px; border-left: none; max-width: 100%; }
}

.jn-section-label {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0041C2;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #e8eef8;
  margin-top: 32px;
}
.jn-section-label:first-of-type { margin-top: 0; }

.jn-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 4px;
}
@media (max-width: 575px) { .jn-fields { grid-template-columns: 1fr; } }
.jn-field-full { grid-column: 1 / -1; }

.jn-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #0b1937;
  margin-bottom: 6px;
}
.jn-req { color: #0041C2; }
.jn-optional {
  font-size: 0.70rem;
  font-weight: 400;
  color: #94a3b8;
}
.jn-field input,
.jn-field select,
.jn-field textarea {
  width: 100%;
  padding: 10px 13px;
  font-size: 0.87rem;
  color: #0b1937;
  background: #f8faff;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
  font-family: inherit;
  resize: vertical;
  appearance: auto;
}
.jn-field input::placeholder,
.jn-field textarea::placeholder { color: #94a3b8; }
.jn-field input:focus,
.jn-field select:focus,
.jn-field textarea:focus {
  border-color: #0041C2;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0,65,194,0.08);
}
.jn-file-input {
  padding: 8px 13px !important;
  cursor: pointer;
}
.jn-file-hint {
  display: block;
  font-size: 0.70rem;
  color: #94a3b8;
  margin-top: 5px;
}

.jn-recaptcha { margin: 24px 0 20px; }

.jn-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.jn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0041C2;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  font-family: inherit;
}
.jn-submit:hover {
  background: #0035a0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,65,194,0.25);
}
.jn-submit-note {
  font-size: 0.75rem;
  color: #94a3b8;
}


/* ═══════════════════════════════════════════════════════════
   BLOG POST — overrides main.css blog styles to match design system
═══════════════════════════════════════════════════════════ */
.blog-post-header {
  background: #ffffff;
  padding: 56px 0 40px;
  border-bottom: 1px solid #e8eef8;
}
.blog-post-header .blog-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0b1937;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.blog-post-header .blog-title::after { display: none; }
.blog-post-header .blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.84rem;
  color: #64748b;
}
.blog-post-header .author-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-post-header .author-name {
  font-style: normal;
  font-weight: 600;
  color: #0b1937;
}
.blog-post-header .blog-date { font-size: 0.82rem; color: #94a3b8; }
.blog-post-header .blog-buttons { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.blog-post-header .btn {
  padding: 7px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  background: #ffffff;
  font-size: 0.80rem;
  font-weight: 600;
  color: #475569;
  margin: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.blog-post-header .btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

/* ── Blog body ── */
.blog-body { padding: 48px 0; background: #ffffff; }
.blog-body .container { max-width: 900px; }
.blog-body div { font-size: 0.94rem; line-height: 1.85; color: #374151; }
.blog-body p { font-size: 0.94rem; color: #374151; line-height: 1.85; margin-bottom: 18px; }
.blog-body > div > p:first-of-type::first-letter,
.blog-body p:first-of-type::first-letter {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  float: none;
  margin-right: 0;
}
.blog-body h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0b1937;
  margin: 40px 0 12px;
  line-height: 1.3;
}
.blog-body h2::after { display: none; }
.blog-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0b1937;
  margin: 28px 0 8px;
}
.blog-body strong { color: #0b1937; }
.blog-body em { color: #64748b; }
.blog-body a {
  color: #0041C2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}
.blog-body a:hover { color: #0035a0; text-decoration: underline; }
.blog-body ul, .blog-body ol { margin: 16px 0; padding-left: 22px; }
.blog-body ul li, .blog-body ol li {
  font-size: 0.94rem;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 8px;
}
.blog-body blockquote {
  border-left: 3px solid #0041C2;
  padding: 16px 20px;
  margin: 24px 0;
  background: #f8faff;
  border-radius: 0 10px 10px 0;
  font-size: 0.94rem;
  color: #475569;
  font-style: normal;
}
.blog-body table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: 10px; overflow: hidden; }
.blog-body table th {
  background: #0b1937;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
}
.blog-body table td {
  padding: 11px 16px;
  border-bottom: 1px solid #e8eef8;
  font-size: 0.88rem;
  color: #374151;
}
.blog-body table tr:last-child td { border-bottom: none; }
.blog-body table tr:nth-child(even) td { background: #f8faff; }
.blog-body img { border-radius: 12px; margin: 28px auto; }
.blog-body code {
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.88rem;
  color: #0b1937;
}
.blog-body pre {
  background: #0b1937;
  color: #e2e8f0;
  padding: 20px;
  border-radius: 12px;
  font-size: 0.86rem;
  overflow-x: auto;
}

/* ── Blog suggestions ── */
.blogs-suggestion { padding: 56px 0; background: #f8faff; border-top: 1px solid #e8eef8; }
.blogs-suggestion h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0b1937;
  text-align: center;
  margin-bottom: 32px;
}
.blogs-suggestion h2::after { display: none; }
.blogs-suggestion .blog-card {
  border-radius: 14px;
  border: 1px solid #e8eef8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blogs-suggestion .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.blogs-suggestion .blog-card h3 { font-size: 1rem; font-weight: 700; color: #0b1937; }
.blogs-suggestion .blog-card p { font-size: 0.84rem; color: #64748b; }
.blogs-suggestion .blog-card .read-more { color: #0041C2; font-weight: 600; font-size: 0.84rem; }
.blogs-suggestion .blog-card .read-more:hover { color: #0035a0; }

@media (max-width: 767px) {
  .blog-post-header .blog-title { font-size: 1.8rem; }
  .blog-body h2 { font-size: 1.25rem; }
}


/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES — Terms of Service / Privacy Policy
═══════════════════════════════════════════════════════════ */
.legal-page {
  padding: 72px 0 96px;
  background: #ffffff;
}

/* ── Sticky sidebar TOC ── */
.legal-toc {
  position: sticky;
  top: 100px;
  background: #f8faff;
  border: 1px solid #e8eef8;
  border-radius: 14px;
  padding: 28px 24px;
}
.legal-toc-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0041C2;
  margin-bottom: 14px;
}
.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.legal-toc ul li a {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: #374151;
  padding: 6px 10px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.legal-toc ul li a:hover {
  background: #e8eef8;
  color: #0041C2;
}
.legal-toc-contact {
  border-top: 1px solid #e8eef8;
  padding-top: 18px;
}
.legal-toc-contact p {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 8px;
}
.legal-toc-contact a {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0041C2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s ease;
}
.legal-toc-contact a:hover { gap: 10px; }

/* ── Main content ── */
.legal-header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid #e8eef8;
}
.legal-header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0b1937;
  margin: 10px 0 14px;
  line-height: 1.2;
}
.legal-meta {
  font-size: 0.88rem;
  color: #6b7280;
  margin: 0;
}

.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b1937;
  margin: 40px 0 12px;
  padding-top: 8px;
}
.legal-content p {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-content ul li {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-content a {
  color: #0041C2;
  font-weight: 500;
  text-decoration: none;
}
.legal-content a:hover { text-decoration: underline; }

.legal-footer-note {
  margin-top: 56px;
  padding: 24px 28px;
  background: #f8faff;
  border: 1px solid #e8eef8;
  border-radius: 12px;
  font-size: 0.88rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-footer-note i { color: #0041C2; font-size: 1.1rem; }
.legal-footer-note a {
  color: #0041C2;
  font-weight: 600;
  text-decoration: none;
}
.legal-footer-note a:hover { text-decoration: underline; }

@media (max-width: 991px) {
  .legal-page { padding: 48px 0 72px; }
  .legal-header h1 { font-size: 1.9rem; }
}


/* ═══════════════════════════════════════════════════════════
   INDUSTRIES PAGE — editorial company page (ind-page-*)
═══════════════════════════════════════════════════════════ */

/* Hero */
.ind-page-hero {
  background: #ffffff;
  border-bottom: 1px solid #e8eef8;
  padding: 80px 0 72px;
}
.ind-page-hero-inner {
  max-width: 820px;
}
.ind-page-hero-headline {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0b1937;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  margin-top: 8px;
}
.ind-page-hero-body {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .ind-page-hero { padding: 56px 0 48px; }
  .ind-page-hero-headline { font-size: 2rem; }
}

/* Grid section */
.ind-page-grid-section {
  background: #f8faff;
  padding: 80px 0 96px;
}
.ind-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1199px) { .ind-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .ind-page-grid { grid-template-columns: 1fr; } }

/* Card */
.ind-page-card {
  background: #ffffff;
  border: 1px solid #e8eef8;
  border-radius: 16px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ind-page-card:hover {
  box-shadow: 0 8px 32px rgba(0, 65, 194, 0.08);
  transform: translateY(-4px);
}

.ind-page-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef4ff;
  border-radius: 14px;
  margin-bottom: 20px;
}
.ind-page-card-icon i {
  font-size: 1.5rem;
  color: #0041C2;
}

.ind-page-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0b1937;
  margin-bottom: 10px;
}

.ind-page-card-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

/* Service links inside card */
.ind-page-card-links {
  border-top: 1px solid #e8eef8;
  padding-top: 16px;
}
.ind-page-links-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 8px;
}
.ind-page-card-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ind-page-card-links ul li a {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  color: #0041C2;
  background: #eef4ff;
  padding: 5px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.ind-page-card-links ul li a:hover {
  background: #0041C2;
  color: #ffffff;
}

/* CTA */
.ind-page-cta {
  background: #ffffff;
  padding: 80px 0 96px;
}
.ind-page-cta-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.ind-page-cta-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0b1937;
  margin-bottom: 14px;
}
.ind-page-cta-inner p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .ind-page-grid-section { padding: 56px 0 64px; }
  .ind-page-cta { padding: 56px 0 72px; }
  .ind-page-cta-inner h2 { font-size: 1.6rem; }
}
