/**
 * MIDsource — services.css
 * Save to: css/services.css
 * Load in <head> AFTER style-v2.css:
 *   <link href="css/services.css" rel="stylesheet">
 *
 * Three services section options — switch by changing the
 * <section> class in index.html:
 *   services-section-light  → Option A: white cards + hover bg image
 *   services-section-dark   → Option B: dark navy glass cards
 *   services-section-grid   → Option C: flush grid, no gap (active)
 *
 * WOW.js scroll animation delay helpers (used on all options):
 *   class="wow fadeInUp wd-1" through wd-8
 */
 
/* ══════════════════════════════════════
   WOW STAGGER DELAYS
══════════════════════════════════════ */
.wd-1 { animation-delay: 0.05s !important; }
.wd-2 { animation-delay: 0.15s !important; }
.wd-3 { animation-delay: 0.25s !important; }
.wd-4 { animation-delay: 0.35s !important; }
.wd-5 { animation-delay: 0.45s !important; }
.wd-6 { animation-delay: 0.55s !important; }
.wd-7 { animation-delay: 0.65s !important; }
.wd-8 { animation-delay: 0.75s !important; }
 
/* ══════════════════════════════════════
   SHARED SEC-TITLE OVERRIDES
   (enhances the existing .sec-title from style-v2.css)
══════════════════════════════════════ */
.services-section-light .sec-title .title-bar,
.services-section-dark  .sec-title .title-bar,
.services-section-grid  .sec-title .title-bar {
  display: inline-block;
  width: 54px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0d70b7, #4eb3f8);
  margin-bottom: 14px;
}
.services-section-dark .sec-title .title-bar {
  background: linear-gradient(90deg, #4eb3f8, #5bc4ff);
}
.services-section-light .sec-title .subtitle,
.services-section-grid  .sec-title .subtitle {
  font-size: 15.5px;
  font-weight: 400;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
  color: #666;
}
.services-section-dark .sec-title .subtitle {
  font-size: 15.5px;
  font-weight: 400;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
  color: rgba(255,255,255,0.52);
}
 
/* ══════════════════════════════════════════════════
   OPTION A — LIGHT
   White cards on #f7f9fc background.
   On hover: background image fades in at 0.50 opacity
   behind a navy tint, all text switches to white.
══════════════════════════════════════════════════ */
.services-section-light {
  background: #f7f9fc;
  padding: 90px 0 70px;
}
.services-section-light .sec-title h2 { color: #0f1e35; }
 
/* 2-column grid */
.services-section-light .svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 26px;
}
 
/* Card base */
.svc-card-light {
  background: #ffffff;
  border: 1px solid #dde8f2;
  border-radius: 12px;
  padding: 36px 30px 32px;
  text-align: left;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  cursor: default;
}
 
/* Blue top-bar sweeps in on hover */
.svc-card-light::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0d70b7, #4eb3f8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.36s ease;
  border-radius: 12px 12px 0 0;
  z-index: 3;
}
 
/* Background image layer */
.svc-card-light::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Replace this URL with your own image path e.g. url('../images/services-bg.jpg') */
  background-image: url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?w=800&q=60&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
  z-index: 1;
}
 
/* Navy tint at 0.50 opacity over the image */
.svc-card-light-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 40, 0.50);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
  z-index: 2;
  pointer-events: none;
}
 
/* Hover */
.svc-card-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(13,112,183,0.15);
  border-color: #9dcef5;
}
.svc-card-light:hover::before  { transform: scaleX(1); }
.svc-card-light:hover::after   { opacity: 1; }
.svc-card-light:hover .svc-card-light-overlay { opacity: 1; }
 
/* All content above overlay layers */
.svc-card-light .card-content  { position: relative; z-index: 4; }
 
/* Icon */
.svc-card-light .icon-wrap {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f3fc, #cce5f7);
  border: 1px solid rgba(13,112,183,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background 0.32s ease, border-color 0.32s ease;
}
.svc-card-light:hover .icon-wrap { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.32); }
.svc-card-light .icon-wrap span,
.svc-card-light .icon-wrap i    { font-size: 26px; color: #0d70b7; line-height: 1; transition: color 0.32s ease; }
.svc-card-light:hover .icon-wrap span,
.svc-card-light:hover .icon-wrap i { color: #ffffff; }
 
/* Heading */
.svc-card-light h3              { font-size: 17px; font-weight: 700; color: #0f1e35; margin-bottom: 10px; transition: color 0.22s; }
.svc-card-light:hover h3        { color: #ffffff; }
.svc-card-light h3 a            { color: inherit; text-decoration: none; }
 
/* Divider */
.svc-card-light .divider {
  width: 32px; height: 2px;
  background: #0d70b7; border-radius: 2px; margin-bottom: 12px;
  opacity: 0.38; transition: opacity 0.28s, width 0.28s, background 0.28s;
}
.svc-card-light:hover .divider  { opacity: 1; width: 46px; background: #ffffff; }
 
/* Body text */
.svc-card-light p               { font-size: 14.5px; color: #5a6472; line-height: 1.75; font-weight: 300; margin: 0; transition: color 0.22s; }
.svc-card-light:hover p         { color: rgba(255,255,255,0.84); }
 
/* Read more link */
.svc-card-light .read-more {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px; font-size: 13px; font-weight: 600;
  color: #0d70b7; text-decoration: none;
  opacity: 0; transform: translateY(5px);
  transition: opacity 0.25s, transform 0.25s, color 0.25s;
}
.svc-card-light:hover .read-more { opacity: 1; transform: translateY(0); color: #ffffff; }
 
/* CTA strip */
.svc-cta-light                  { text-align: center; padding: 44px 20px 0; }
.svc-cta-light .cta-btn {
  display: inline-block; padding: 14px 38px; border-radius: 8px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; background: #0d70b7; color: #fff;
  box-shadow: 0 6px 20px rgba(13,112,183,0.28); transition: all 0.22s;
}
.svc-cta-light .cta-btn:hover   { background: #0959a0; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(13,112,183,0.38); color: #fff; }
 
 
/* ══════════════════════════════════════════════════
   OPTION B — DARK
   Navy background, semi-transparent glass cards,
   blue glow border and corner accent on hover.
══════════════════════════════════════════════════ */
.services-section-dark {
  background: #071630;
  padding: 90px 0 70px;
  position: relative;
}
.services-section-dark .sec-title h2 { color: #ffffff; }
 
/* 2-column grid */
.services-section-dark .svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}
 
/* Card */
.svc-card-dark {
  background: rgba(255,255,255,0.042);
  border: 1px solid rgba(78,179,248,0.16);
  border-radius: 14px; padding: 34px 28px 30px;
  text-align: left; position: relative; overflow: hidden;
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
  cursor: default;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
 
/* Corner glow */
.svc-card-dark::after {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(78,179,248,0.16) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.36s; pointer-events: none; z-index: 0;
}
.svc-card-dark:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.068);
  border-color: rgba(78,179,248,0.42);
  box-shadow: 0 18px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(78,179,248,0.18);
}
.svc-card-dark:hover::after     { opacity: 1; }
.svc-card-dark .card-content    { position: relative; z-index: 1; }
 
/* Icon */
.svc-card-dark .icon-wrap {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(78,179,248,0.09);
  border: 1px solid rgba(78,179,248,0.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: background 0.28s, border-color 0.28s;
}
.svc-card-dark:hover .icon-wrap { background: rgba(78,179,248,0.2); border-color: rgba(78,179,248,0.48); }
.svc-card-dark .icon-wrap span,
.svc-card-dark .icon-wrap i     { font-size: 24px; color: #4eb3f8; line-height: 1; }
 
/* Heading */
.svc-card-dark h3               { font-size: 17px; font-weight: 700; color: #ffffff; margin-bottom: 10px; transition: color 0.2s; }
.svc-card-dark:hover h3         { color: #4eb3f8; }
.svc-card-dark h3 a             { color: inherit; text-decoration: none; }
 
/* Divider */
.svc-card-dark .divider {
  width: 32px; height: 2px;
  background: linear-gradient(90deg, #4eb3f8, #5bc4ff);
  border-radius: 2px; margin-bottom: 12px;
  opacity: 0.42; transition: opacity 0.28s, width 0.28s;
}
.svc-card-dark:hover .divider   { opacity: 1; width: 46px; }
 
/* Body text */
.svc-card-dark p                { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.75; font-weight: 300; margin: 0; transition: color 0.2s; }
.svc-card-dark:hover p          { color: rgba(255,255,255,0.76); }
 
/* Read more */
.svc-card-dark .read-more {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px; font-size: 13px; font-weight: 600;
  color: #4eb3f8; text-decoration: none;
  opacity: 0; transform: translateY(5px);
  transition: opacity 0.25s, transform 0.25s;
}
.svc-card-dark:hover .read-more { opacity: 1; transform: translateY(0); }
 
/* CTA */
.svc-cta-dark                   { text-align: center; padding: 44px 20px 0; }
.svc-cta-dark .cta-btn {
  display: inline-block; padding: 14px 38px; border-radius: 8px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; background: #4eb3f8; color: #071630;
  box-shadow: 0 6px 20px rgba(78,179,248,0.28); transition: all 0.22s;
}
.svc-cta-dark .cta-btn:hover    { background: #5bc4ff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(78,179,248,0.42); color: #071630; }
 
 
/* ══════════════════════════════════════════════════
   OPTION C — FLUSH GRID  ← ACTIVE IN index.html
   No gap between cells — shared 1px borders.
   Icon in absolute-positioned box on the left
   (matches original services-block-two feel).
   Blue left-edge bar slides up on hover.
══════════════════════════════════════════════════ */
.services-section-grid {
  background: #ffffff;
  padding: 80px 0 0;
}
.services-section-grid .sec-title h2 { color: #111820; }
 
/* Outer wrapper — carries the vertical centre line */
.svc-flush-wrap {
  position: relative;
  border: 1px solid #e0e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0;
}
 
/* Vertical centre divider line */
.svc-flush-wrap::before {
  content: '';
  position: absolute;
  left: 50%; top: 0;
  width: 1px; height: 100%;
  background: #e0e8f0;
  z-index: 1;
  pointer-events: none;
}
 
/* Flush 2-col grid — gap:0 so rows share a single border */
.svc-flush-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
 
/* Each cell */
.svc-cell {
  position: relative;
  padding: 40px 36px 38px 92px;
  border-bottom: 1px solid #e0e8f0;
  overflow: hidden;
  transition: background 0.28s ease;
  cursor: default;
  background: #ffffff;
}
 
/* Remove bottom border from last two cells */
.svc-flush-grid .svc-cell:nth-last-child(-n+2) { border-bottom: none; }
 
/* Blue left-edge accent bar — slides up on hover */
.svc-cell::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #0d70b7, #4eb3f8);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.32s ease;
  z-index: 2;
}
.svc-cell:hover                 { background: #f4f8fd; }
.svc-cell:hover::before         { transform: scaleY(1); }
 
/* Icon box — absolute left column */
.svc-cell .cell-icon {
  position: absolute;
  left: 22px; top: 40px;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e4f0fb, #cce2f6);
  border-radius: 12px;
  border: 1px solid rgba(13,112,183,0.14);
  transition: background 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}
.svc-cell .cell-icon i,
.svc-cell .cell-icon span {
  font-size: 22px;
  color: #0d70b7;
  line-height: 1;
  transition: color 0.28s ease;
  display: block;
}
.svc-cell:hover .cell-icon {
  background: linear-gradient(135deg, #0d70b7, #1a88d4);
  border-color: transparent;
  transform: scale(1.08);
}
.svc-cell:hover .cell-icon i,
.svc-cell:hover .cell-icon span { color: #ffffff; }
 
/* Heading */
.svc-cell h3 {
  font-size: 17px; font-weight: 700; color: #111820; margin-bottom: 6px; transition: color 0.22s;
}
.svc-cell:hover h3              { color: #0d70b7; }
.svc-cell h3 a                  { color: inherit; text-decoration: none; transition: color 0.22s; }
.svc-cell:hover h3 a            { color: #0d70b7; }
 
/* Thin rule under heading */
.svc-cell .cell-rule {
  width: 28px; height: 2px;
  background: #0d70b7; border-radius: 2px; margin-bottom: 10px;
  opacity: 0.3; transition: width 0.28s, opacity 0.28s;
}
.svc-cell:hover .cell-rule      { width: 42px; opacity: 0.85; }
 
/* Body text */
.svc-cell p {
  font-size: 14.5px; color: #707880; line-height: 1.75; font-weight: 300; margin: 0;
}
 
/* CTA strip below the grid */
.svc-grid-cta {
  text-align: center;
  padding: 48px 20px;
  background: #f7f9fc;
  border-top: 1px solid #e0e8f0;
}
.svc-grid-cta .cta-btn {
  display: inline-block; padding: 13px 36px; border-radius: 7px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; background: #0d70b7; color: #fff;
  box-shadow: 0 5px 18px rgba(13,112,183,0.24); transition: all 0.22s;
}
.svc-grid-cta .cta-btn:hover    { background: #0959a0; transform: translateY(-2px); box-shadow: 0 9px 26px rgba(13,112,183,0.34); color: #fff; }
 
 
/* ══════════════════════════════════════
   RESPONSIVE — all options
══════════════════════════════════════ */
@media (max-width: 991px) {
  .services-section-light .svc-grid,
  .services-section-dark  .svc-grid { grid-template-columns: 1fr; }
}
 
@media (max-width: 640px) {
  .svc-flush-wrap::before          { display: none; }
  .svc-flush-grid                  { grid-template-columns: 1fr; }
  .svc-flush-grid .svc-cell:nth-last-child(-n+2) { border-bottom: 1px solid #e0e8f0; }
  .svc-flush-grid .svc-cell:last-child { border-bottom: none; }
  .svc-cell                        { padding-left: 84px; }
}
 
/* ══════════════════════════════════════
   LEARN MORE LINK — Option C cells
══════════════════════════════════════ */
.svc-cell .svc-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #0d70b7;
  text-decoration: none;
  transition: color 0.22s, gap 0.22s;
}
.svc-cell .svc-learn-more i {
  font-size: 11px;
  transition: transform 0.22s;
}
.svc-cell:hover .svc-learn-more {
  color: #0d70b7;
  gap: 8px;
}
.svc-cell:hover .svc-learn-more i {
  transform: translateX(3px);
}
 


/* ══════════════════════════════════════════════════
    SERVICES PAGE — New Card Blocks
   ══════════════════════════════════════════════════ */

/* ── Scoped reset ── */
.ms-section *, .ms-section *::before, .ms-section *::after { box-sizing: border-box; }

/* ── Section: WHITE background ── */
.ms-section {
  background: #ffffff;
  padding: 80px 0 90px;
  font-family: 'Inter', sans-serif;
}
.ms-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px; 
}

/* ── Section header ── */
.ms-header { text-align: center; margin-bottom: 56px; }
.ms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a6bc4;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.ms-eyebrow::before, .ms-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #1a6bc4;
}

/* h2 with blue underline bar — matches site sec-title style */
.ms-header h2 {
  font-size: 46px;
  font-weight: 700;
  color: #0d1524;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 0;
  padding-bottom: 22px;
  position: relative;
  font-family: 'Inter', sans-serif;
}
.ms-header h2 span { color: #1a6bc4; }

/* Blue 4px bar, centered, below the heading, above the paragraph */
.ms-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #0d70b7;
  border-radius: 2px;
}

.ms-header p {
  max-width: 860px;
  margin: 22px auto 0;
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  padding: 4px 12px;
}

/* ── Grid ── */
.ms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Card ── */
.ms-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 8px 28px rgba(0,0,0,0.07);
  transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), box-shadow 0.28s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  opacity: 0;
  font-family: 'Inter', sans-serif;
}
.ms-card.animated { opacity: 1; }
.ms-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.06), 0 20px 52px rgba(26,107,196,0.16);
}

/* ── Image area ── */
.ms-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.ms-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  filter: brightness(0.88) saturate(1.05);
}
.ms-card:hover .ms-card-img img { transform: scale(1.06); }

/* Dark gradient at bottom — fades out when blue overlay appears */
.ms-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,18,35,0) 35%, rgba(10,18,35,0.62) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.ms-card:hover .ms-card-img::after { opacity: 0; }

/* Blue overlay — fades IN on hover, matching original overlay-box style */
.ms-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 90, 180, 0.85);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ms-card:hover .ms-card-overlay { opacity: 1; }

/* Centered icomoon icon circle on hover */
.ms-overlay-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 0.3s ease 0.06s, transform 0.32s cubic-bezier(.22,.68,0,1.4) 0.06s;
}
.ms-card:hover .ms-overlay-icon {
  opacity: 1;
  transform: scale(1);
}
.ms-overlay-icon .icon {
  font-size: 32px;
  color: #ffffff;
  line-height: 1;
}

/* Category badge */
.ms-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: rgba(10,18,35,0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #e8edf5;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
}

/* ── Card body ── */
.ms-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #ffffff;
}

/* Title row */
.ms-card-title-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}

/* Icon pill */
.ms-title-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #e6f0fb;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.ms-card:hover .ms-title-icon {
  background: #1a6bc4;
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(26,107,196,0.35);
}
.ms-title-icon .icon {
  font-size: 20px;
  color: #1a6bc4;
  line-height: 1;
  transition: color 0.25s ease;
}
.ms-card:hover .ms-title-icon .icon { color: #ffffff; }

.ms-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #0d1524;
  letter-spacing: -0.01em;
  line-height: 1.3;
  font-family: 'Inter', sans-serif;
}

/* Animated blue divider */
.ms-divider {
  width: 32px;
  height: 2px;
  background: #1a6bc4;
  border-radius: 2px;
  margin-bottom: 12px;
  transition: width 0.3s ease;
}
.ms-card:hover .ms-divider { width: 56px; }

.ms-card-text {
  font-size: 14px;
  color: #5a6478;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}

/* Read more arrow link */
.ms-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1a6bc4;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: gap 0.2s ease, color 0.2s ease;
  font-family: 'Inter', sans-serif;
}
.ms-card-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}
.ms-card:hover .ms-card-link { gap: 10px; color: #0d4f9c; }
.ms-card:hover .ms-card-link svg { transform: translateX(3px); }

/* ── CTA Banner ── */
.ms-cta {
  margin-top: 64px;
  background: linear-gradient(135deg, #0d1524 0%, #12284a 50%, #0f1e3d 100%);
  border-radius: 20px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.ms-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.06);
}
.ms-cta::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 40%;
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(26,107,196,0.25);
}
.ms-cta-text h3 {
  font-size: 26px;
  font-weight: 700;
  color: #f0f4fc;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.ms-cta-text p {
  font-size: 15px;
  color: #8a9bbf;
  line-height: 1.55;
  font-family: 'Inter', sans-serif;
}
.ms-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a6bc4;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(26,107,196,0.4);
  position: relative; z-index: 1;
  font-family: 'Inter', sans-serif;
}
.ms-cta-btn svg {
  width: 16px; height: 16px;
  stroke: #fff; fill: none;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.ms-cta-btn:hover {
  color: #1559a8;
  background-color: aliceblue;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,107,196,0.5);
}
.ms-cta-btn:hover svg {
  width: 16px; height: 16px;
  stroke: #1559a8; fill: none;
  stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
/* ── Scroll animation ── */
@keyframes msSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ms-card.animated { animation: msSlideUp 0.55s cubic-bezier(.22,.68,0,1.05) forwards; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .ms-grid { grid-template-columns: repeat(2, 1fr); }
  .ms-cta { flex-direction: column; text-align: center; padding: 40px 32px; }
}
@media (max-width: 600px) {
  .ms-grid { grid-template-columns: 1fr; }
  .ms-header h2 { font-size: 28px; }
  .ms-section { padding: 56px 0 64px; }
}
 

<style>
/* ══════════════════════════════════════════════════
   EYEBROW / H2 / BLUE-LINE SYSTEM
   (also lives in style-v2-additions.css for site-wide use)
   ══════════════════════════════════════════════════ */
.ms-section-header { margin-bottom: 40px; }
.ms-section-header.centered { text-align: center; }

.ms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d70b7;
  margin-bottom: 12px;
  font-family: 'Nunito Sans', sans-serif;
}
.ms-eyebrow::before, .ms-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #0d70b7;
  flex-shrink: 0;
}

.ms-section-header h2 {
  position: relative;
  color: #1a1a2e;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0;
  padding-bottom: 18px;
  font-family: 'Nunito Sans', sans-serif;
}
.ms-section-header h2 span { color: #0d70b7; }
.ms-section-header h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 80px; height: 4px;
  background-color: #0d70b7;
  border-radius: 2px;
}
.ms-section-header.centered h2::after {
  left: 50%;
  transform: translateX(-50%);
}
.ms-section-header p {
  margin-top: 18px;
  font-size: 16px;
  color: #666;
  line-height: 1.8em;
  font-weight: 300;
}
.ms-section-header.centered p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}





 

/* ══════════════════════════════════════════════════
   ABOUT US - SCROLL REVEAL — slowed to 0.90s with gentler easing
   ══════════════════════════════════════════════════ */
.ms-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.90s cubic-bezier(.16,.84,.44,1),
              transform 0.90s cubic-bezier(.16,.84,.44,1);
}
.ms-reveal.ms-reveal--left  { transform: translateX(-32px); }
.ms-reveal.ms-reveal--right { transform: translateX(32px); }
.ms-reveal.ms-revealed { opacity: 1; transform: translate(0,0); }
.ms-delay-1 { transition-delay: 0.12s; }
.ms-delay-2 { transition-delay: 0.26s; }
.ms-delay-3 { transition-delay: 0.40s; }
.ms-delay-4 { transition-delay: 0.54s; }
.ms-delay-5 { transition-delay: 0.68s; }


/* ══════════════════════════════════════════════════
   EYEBROW / H2 (+10px on all h2) / BLUE-LINE SYSTEM
   ══════════════════════════════════════════════════ */
.ms-section-header { margin-bottom: 40px; }
.ms-section-header.centered { text-align: center; }
.ms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d70b7;
  margin-bottom: 12px;
  font-family: 'Nunito Sans', sans-serif;
}
.ms-eyebrow::before, .ms-eyebrow::after {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: #0d70b7;
  flex-shrink: 0;
}
.ms-eyebrow.light { color: rgba(255,255,255,0.78); }
.ms-eyebrow.light::before, .ms-eyebrow.light::after { background: rgba(255,255,255,0.45); }

/* h2 bumped from 36px → 46px (+10px) */
.ms-section-header h2 {
  position: relative;
  color: #1a1a2e;
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  padding-bottom: 18px;
  font-family: 'Nunito Sans', sans-serif;
}
.ms-section-header h2 span { color: #0d70b7; }
.ms-section-header h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 80px; height: 4px;
  background-color: #0d70b7;
  border-radius: 2px;
}
.ms-section-header.centered h2::after { left: 50%; transform: translateX(-50%); }
.ms-section-header.light h2 { color: #ffffff; }
.ms-section-header.light h2 span { color: #5bbfff; }
.ms-section-header.light h2::after { background: rgba(255,255,255,0.5); }
.ms-section-header p {
  margin-top: 18px;
  font-size: 17px;
  color: #666;
  line-height: 1.8em;
  font-weight: 300;
}
.ms-section-header.centered p { max-width: 820px; margin-left: auto; margin-right: auto; }
.ms-section-header.light p { color: rgba(255,255,255,0.70); }

@media (max-width: 768px) {
  .ms-section-header h2 { font-size: 30px; }
}


/* ══════════════════════════════════════════════════
   1. ABOUT — video LEFT, text RIGHT
   ══════════════════════════════════════════════════ */
.about-split { padding: 72px 0 64px; }
.about-split .text-col { padding-left: 48px; }
.about-split .text-col p {
  font-size: 15px;
  color: #555;
  line-height: 1.85em;
  margin-bottom: 16px;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}
	
.about-cta { padding: 12px 0 94px; }
.about-cta .text-col { padding-left: 48px; }
.about-cta .text-col p {
  font-size: 15px;
  color: #555;
  line-height: 1.85em;
  margin-bottom: 16px;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}	
	
@media (max-width: 991px) {
  .about-split .text-col { padding-left: 15px; margin-top: 36px; }
  /* Vision image — smaller on tablet/mobile */
  .vision-img-panel { max-height: 320px; overflow: hidden; }
  .vision-img-panel .vip-inner img { max-height: 316px; object-fit: cover; object-position: center; }
  .vip-overlay-btn { bottom: 14px; }
}
@media (max-width: 600px) {
  .vision-img-panel { max-height: 240px; }
  .vision-img-panel .vip-inner img { max-height: 236px; }
}

/* Video panel */
.about-video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12);
  height: 620px;
  background: #000;
}
.about-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;   /* anchors to top — logo visible on all screens */
  display: block;
  border-radius: 16px;
}
/* On mobile reduce height so the column stacks cleanly */
@media (max-width: 991px) {
  .about-video-wrap {
    height: 420px;
  }
  .about-video-wrap video {
    object-position: top center;
  }
}
/* Glass shine sweep on hover */
.about-video-wrap::after {
  content: '';
  position: absolute;
  top: -60%; left: -80%;
  width: 55%; height: 220%;
  background: linear-gradient(105deg,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0) 60%
  );
  transform: skewX(-15deg);
  transition: left 0.80s cubic-bezier(.22,.68,0,1.05);
  z-index: 2;
  pointer-events: none;
}
.about-video-wrap:hover::after { left: 130%; }

/* 20+ badge */
.about-video-wrap .img-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  background: #0d70b7;
  color: #fff;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 8px 24px rgba(13,112,183,0.55);
  text-align: center;
  min-width: 100px;
  backdrop-filter: blur(6px);
}
.about-video-wrap .img-badge strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  font-family: 'Nunito Sans', sans-serif;
}
.about-video-wrap .img-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.90;
  font-family: 'Nunito Sans', sans-serif;
}


/* ══════════════════════════════════════════════════
   2. VISION — #f9f9f9, image gets gradient border + button
   ══════════════════════════════════════════════════ */
.vision-section {
  padding: 72px 0 64px;
  background: #f9f9f9;
}
.vision-section .vision-h5 {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0d70b7;
  margin: 0 0 10px;
  font-family: 'Nunito Sans', sans-serif;
}
.vision-section .vision-p {
  font-size: 18px;
  color: #555;
  line-height: 1.8em;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 32px;
}
.attr-list { list-style: none; padding: 0; margin: 0; }
.attr-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  font-size: 16px;
  color: #444;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5em;
}
.attr-list li::before {
  content: '\f05d';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0; top: 1px;
  color: #0d70b7;
  font-size: 13px;
}

/* Vision image: animated gradient border frame + CTA button below */
.vision-img-panel {
  position: relative;
  /* gradient border via padding + pseudo-element */
  padding: 4px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0d70b7 0%, #5bbfff 40%, #0d3c8e 70%, #0d70b7 100%);
  background-size: 300% 300%;
  animation: visionBorderFlow 5s ease infinite;
  box-shadow: 0 8px 40px rgba(13,112,183,0.30), 0 2px 8px rgba(0,0,0,0.10);
}
@keyframes visionBorderFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.vision-img-panel .vip-inner {
  border-radius: 17px;
  overflow: hidden;
  position: relative;
  background: #000;
}
.vision-img-panel .vip-inner img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 17px;
  transition: transform 0.55s cubic-bezier(.22,.68,0,1.05),
              filter 0.45s ease;
  filter: brightness(0.90) saturate(1.06);
}
.vision-img-panel:hover .vip-inner img {
  transform: scale(1.05);
  filter: brightness(0.72) saturate(1.2);
}
/* Blue overlay fade */
.vision-img-panel .vip-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(13,112,183,0.70) 0%,
    rgba(5,60,130,0.50) 60%,
    rgba(0,20,60,0.25) 100%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
  border-radius: 17px;
}
.vision-img-panel:hover .vip-inner::before { opacity: 1; }
/* Glass shine */
.vision-img-panel .vip-inner::after {
  content: '';
  position: absolute;
  top: -60%; left: -80%;
  width: 55%; height: 220%;
  background: linear-gradient(105deg,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0.24) 50%,
    rgba(255,255,255,0) 60%
  );
  transform: skewX(-15deg);
  transition: left 0.70s cubic-bezier(.22,.68,0,1.05);
  z-index: 2; pointer-events: none;
}
.vision-img-panel:hover .vip-inner::after { left: 130%; }

/* CTA button below the vision image */
.vision-img-cta {
  text-align: center;
  margin-top: 20px;
}
.vision-img-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d70b7;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 8px;
  border: 2px solid #0d70b7;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease,
              box-shadow 0.22s ease;
  box-shadow: 0 4px 16px rgba(13,112,183,0.35);
  font-family: 'Nunito Sans', sans-serif;
}
.vision-img-cta a:hover {
  background: transparent;
  color: #0d70b7;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,112,183,0.22);
}
.vision-img-cta a svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.22s ease;
}
.vision-img-cta a:hover svg { transform: translateX(3px); }


/* ══════════════════════════════════════════════════
   3. FOUNDERS — animated dark-blue gradient bg
   ══════════════════════════════════════════════════ */
.founders-section {
  padding: 72px 0 64px;
  position: relative;
  background: linear-gradient(-45deg, #011733, #03294f, #062040, #010f24);
  background-size: 400% 400%;
  animation: foundersBg 12s ease infinite;
}
@keyframes foundersBg {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.founders-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(13,112,183,0.16) 0%, transparent 68%);
  pointer-events: none;
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.founder-card {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  position: relative;
  overflow: visible;
}
.founder-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 16px 48px rgba(0,0,0,0.40);
}
.founder-card .fc-img {
  flex-shrink: 0;
  width: 180px; height: 210px;
  overflow: hidden;
  border-radius: 14px 0 0 14px;
  position: relative;
}
.founder-card .fc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: brightness(0.90) saturate(0.95);
  transition: transform 0.45s ease;
}
.founder-card:hover .fc-img img { transform: scale(1.05); }
.founder-card .fc-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(13,112,183,0.60);
  opacity: 0;
  transition: opacity 0.32s ease;
}
.founder-card:hover .fc-img::after { opacity: 1; }
.founder-card .fc-body { padding: 24px 28px; flex: 1; }
.founder-card .fc-name {
  font-size: 20px; font-weight: 800; color: #fff;
  margin: 0 0 4px;
  font-family: 'Nunito Sans', sans-serif;
}
.founder-card .fc-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #5bbfff; margin-bottom: 14px;
}
.founder-card .fc-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  background: none;           /* no pill background */
  border: none;               /* no border */
  padding: 0;
  text-decoration: none;
  transition: color 0.2s ease;
}
/* Small bg only around the icon itself */
.founder-card .fc-linkedin .fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.20);
  font-size: 13px;
  color: #fff;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.founder-card .fc-linkedin:hover { color: #5bbfff; }
.founder-card .fc-linkedin:hover .fa { background: #0d70b7; border-color: #0d70b7; }
@media (max-width: 991px) {
  /* Single column grid — cards stay HORIZONTAL (never stack) */
  .founders-grid { grid-template-columns: 1fr; }
  .founder-card { flex-direction: row; }           /* always row */
  /* Shrink image on tablet */
  .founder-card .fc-img { width: 140px; height: 170px; }
}
@media (max-width: 640px) {
  /* Even smaller image on phone — card stays horizontal */
  .founder-card { flex-direction: row; }           /* never stack */
  .founder-card .fc-img {
    width: 110px;
    height: 100%;                                  /* full card height */
    min-height: 160px;
    border-radius: 14px 0 0 14px;                  /* left corners only */
    flex-shrink: 0;
  }
  .founder-card .fc-body {
    padding: 18px 16px;
  }
  .founder-card .fc-name { font-size: 17px; }
}


/* ══════════════════════════════════════════════════
   4. SERVICES CAROUSEL — equal-height cards
   ══════════════════════════════════════════════════ */
.approach-section.grey-bgf3 {
  background-color: #f0f2f5;
  padding: 72px 0 60px;
}

/* overflow:visible lets lifted cards show their shadow;
   owl-stage-outer needs to stay hidden for clipping carousel edges */
.approach-section .four-item-carousel.owl-carousel { overflow: visible !important; }
.approach-section .four-item-carousel .owl-stage-outer { overflow: hidden !important; }

/* Equal-height slides via flex */
.approach-section .four-item-carousel .owl-stage { display: flex !important; }
.approach-section .four-item-carousel .owl-item  { display: flex !important; flex: 1; }

/* Card wrapper — min-height so cards are tall enough to fit button without clip */
.featured-block-three {
  padding: 8px 6px 16px;
  display: flex;
  flex: 1;
  min-height: 320px;           /* ensures button always has room */
}

/* Inner-box: flex column, fills full equal height */
.featured-block-three .inner-box {
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  position: relative;          /* overlay-box positions against this */
  background: #fff;
}
.featured-block-three .inner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(13,112,183,0.18), 0 4px 10px rgba(0,0,0,0.10);
}

/* Title div grows to push View link down */
.featured-block-three .inner-box h3 { flex-grow: 0; }
.featured-block-three .inner-box .title { flex: 1; min-height: 40px; }

/* "View →" hint — visible on card face, hidden when overlay is active */
.fc-view-link {
  display: block;            /* block so it always starts at the left edge */
  font-size: 13px;
  font-weight: 600;
  color: #1a6bc4;
  cursor: default;
  letter-spacing: 0.01em;
  font-family: 'Nunito Sans', sans-serif;
  flex-shrink: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  position: relative;
  z-index: 1;
  /* left padding = theme inner-box side padding (25px) so text lines up under h3 */
  padding-left: 0px;
  padding-bottom: 0;
  /* push DOWN 16px more than before: was 26px bottom, now 42px */
  margin: auto 0 42px 0;
}
/* arrow sits inline via a pseudo-element approach — use a child span instead */
.fc-view-link-inner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fc-view-link-inner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fc-view-link svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.2s ease;
}
/* Hide the View link entirely when overlay is showing — stops bleed-through */
.featured-block-three .inner-box:hover .fc-view-link {
  opacity: 0;
  pointer-events: none;
}

/* ── Overlay-box: covers the whole inner-box absolutely ── */
.featured-block-three .inner-box .overlay-box {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 28px 22px 20px !important;
  box-sizing: border-box;
  border-radius: 8px !important;
  z-index: 5;
  /* Flush to all four edges — no offset so border never clips or shifts */
}

/* Override theme centering — left-align all overlay text */
.featured-block-three .inner-box .overlay-box .overlay-inner {
  flex: 1;
  text-align: left !important;
}
.featured-block-three .inner-box .overlay-box h3,
.featured-block-three .inner-box .overlay-box .overlay-title,
.featured-block-three .inner-box .overlay-box .text {
  text-align: left !important;
}
/* Large bg icon — keep it decorative, right-aligned */
.featured-block-three .inner-box .overlay-box .large-icon {
  position: absolute;
  right: 0; top: 0;
  z-index: 0;
}
.featured-block-three .inner-box .overlay-box .overlay-inner > *:not(.large-icon) {
  position: relative;
  z-index: 1;
}

/* "Learn More" button — solid theme blue, pinned to bottom of overlay */
.fc-overlay-btn {
  display: block;
  margin: 12px 0 0;
  padding: 8px 0;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: #0d70b7;          /* theme primary blue */
  border-radius: 6px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
  transition: background 0.22s ease, color 0.22s ease, transform 0.18s ease;
  font-family: 'Nunito Sans', sans-serif;
  box-shadow: 0 3px 10px rgba(0,0,0,0.20);
}
.fc-overlay-btn:hover {
  background: #051e3e;          /* very dark navy */
  color: #5bbfff;               /* light blue text */
  transform: translateY(-1px);
}

/* ── Modern OWL nav arrows — squared glass effect ── */
.approach-section .owl-nav { margin-top: 32px; text-align: right; }
.approach-section .owl-nav .owl-prev,
.approach-section .owl-nav .owl-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;           /* squared, not circular */
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(13,112,183,0.18);
  box-shadow: 0 4px 18px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease,
              box-shadow 0.22s ease, transform 0.18s ease;
}
.approach-section .owl-nav .owl-prev:hover,
.approach-section .owl-nav .owl-next:hover {
  background: rgba(13,112,183,0.90);
  border-color: #0d70b7;
  box-shadow: 0 6px 22px rgba(13,112,183,0.30);
  transform: translateY(-2px);
}
/* Hide default owl text/icon, show SVG arrow instead */
.approach-section .owl-nav .owl-prev span,
.approach-section .owl-nav .owl-next span { display: none; }
.approach-section .owl-nav .owl-prev::after,
.approach-section .owl-nav .owl-next::after {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background-color: #0d70b7;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.22s ease;
}
.approach-section .owl-nav .owl-prev:hover::after,
.approach-section .owl-nav .owl-next:hover::after {
  background-color: #ffffff;
}
/* Prev arrow — points left */
.approach-section .owl-nav .owl-prev::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5M12 5l-7 7 7 7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 12H5M12 5l-7 7 7 7'/%3E%3C/svg%3E");
}
/* Next arrow — points right */
.approach-section .owl-nav .owl-next::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
}


/* CTA button overlaid at bottom of vision image */
.vip-inner {
  position: relative; /* ensure children can be absolutely positioned */
}
.vip-overlay-btn {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: calc(100% - 48px);
  text-align: center;
}
.vip-overlay-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(13,112,183,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.28);
  font-family: 'Nunito Sans', sans-serif;
}
.vip-overlay-btn a:hover {
  background: rgba(13,112,183,0.98);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,112,183,0.50);
  color: #fff;
}
.vip-overlay-btn a svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none;
  stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.22s ease;
}
.vip-overlay-btn a:hover svg { transform: translateX(3px); }

/* Phone number in founder cards */
.founder-card .fc-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  font-family: 'Nunito Sans', sans-serif;
}
.founder-card .fc-phone .fa {
  font-size: 13px;
  color: #5bbfff;
}
.founder-card .fc-phone:hover { color: #5bbfff; }

/* Stack phone above linkedin — always left-aligned */
.founder-card .fc-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* ensures all children pin to left */
  gap: 0;
  text-align: left;
}
.founder-card .fc-phone { margin-bottom: 10px; }
.founder-card .fc-linkedin { align-self: flex-start; }
.testimonial-section-two { overflow: visible; padding: 72px 0 30px; }
.testimonial-section-two .three-item-carousel.owl-carousel { overflow: visible !important; }
.testimonial-block-two { padding: 8px 4px 12px; }
.testimonial-block-two .inner-box {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  overflow: visible;
}
.testimonial-block-two .inner-box:hover {
  transform: translateY(-5px);
  border-color: #0d70b7;
  box-shadow: 0 12px 32px rgba(13,112,183,0.14);
}
.testimonial-block-two .inner-box .stars .fa { color: #f5a623; }
.testimonial-block-two .inner-box .quote-icon { border-radius: 0 0 12px 0; }
.testimonial-block-two .inner-box h3 { font-size: 18px; font-weight: 800; color: #1a1a2e; }

 
/* Site-wide modern footer refresh */
.main-footer,
.main-footer .widgets-section {
  background: #06284d !important;
}
.main-footer .footer-bottom {
  background: #041f3c !important;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.main-footer .footer-widget h2,
.main-footer .footer-widget h3 {
  color: #ffffff;
  letter-spacing: 0.08em;
}
.main-footer .footer-widget hr {
  border-color: #1d85d6;
}
.main-footer .logo-widget .text p,
.main-footer .form-widget p {
  color: rgba(232,242,252,0.86) !important;
}
.footer-contact-cta {
  margin: 18px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-contact-cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-contact-cta a .fa {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #0d70b7;
  border-radius: 8px;
  flex: 0 0 22px;
}
.footer-contact-cta a span {
  display: block;
  color: rgba(220,237,252,0.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-contact-cta a:hover {
  color: #75caff;
  transform: translateX(3px);
}
.main-footer .footer-links li a {
  transition: color 0.2s ease, padding-left 0.2s ease, background 0.2s ease;
}
.main-footer .links-widget .footer-links li a:hover {
  color: #75caff !important;
  padding-left: 8px;
}
.main-footer .footer-gateway-btn,
.main-footer .footer-links li a.footer-gateway-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 10px 14px !important;
  color: #ffffff !important;
  background: #0d70b7;
  border-radius: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.main-footer .footer-gateway-btn:hover,
.main-footer .footer-links li a.footer-gateway-btn:hover {
  background: #1592e6;
  color: #ffffff !important;
  padding-left: 14px !important;
  transform: translateY(-1px);
}
.main-footer .newsletter-form input {
  border-radius: 8px;
}
.main-footer .newsletter-form button {
  border-radius: 8px;
}

/* Footer refinement pass */
.main-footer .widgets-section > .auto-container > .row.clearfix {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.main-footer .widgets-section > .auto-container > .row.clearfix > .footer-column {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.main-footer .widgets-section > .auto-container > .row.clearfix > .footer-column:nth-child(1) {
  width: 25%;
  flex: 0 0 25%;
  margin-right: 10px;
  padding-right: 16px;
}
.main-footer .widgets-section > .auto-container > .row.clearfix > .footer-column:nth-child(2) {
  width: 16%;
  flex: 0 0 16%;
}
.main-footer .widgets-section > .auto-container > .row.clearfix > .footer-column:nth-child(3) {
  width: 22%;
  flex: 0 0 22%;
}
.main-footer .widgets-section > .auto-container > .row.clearfix > .footer-column:nth-child(4) {
  width: 22%;
  flex: 1 1 22%;
}
.footer-contact-cta {
  gap: 8px;
}
.footer-contact-cta a {
  gap: 9px;
}
.footer-contact-cta a span {
  display: none !important;
}
.main-footer .logo-widget h2 {
  padding-top: 16px;
}
.footer-contact-cta a .fa {
  width: 18px;
  height: 18px;
  color: #0d70b7;
  background: transparent !important;
  border-radius: 0;
  flex: 0 0 18px;
}
.main-footer .footer-gateway-btn,
.main-footer .footer-links li a.footer-gateway-btn {
  margin-top: 8px;
  padding: 7px 12px !important;
  color: #ffffff !important;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(117,202,255,0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 11px;
  line-height: 1.2;
}
.main-footer .footer-gateway-btn:hover,
.main-footer .footer-links li a.footer-gateway-btn:hover {
  background: rgba(21,146,230,0.26);
  border-color: rgba(117,202,255,0.72);
  color: #75caff !important;
  padding-left: 12px !important;
}
.main-footer .newsletter-form input,
.main-footer .newsletter-form textarea {
  border: 1px solid rgba(117,202,255,0.48) !important;
  background: rgba(4,31,60,0.68) !important;
  color: #ffffff !important;
}
.main-footer .newsletter-form input::placeholder,
.main-footer .newsletter-form textarea::placeholder {
  color: rgba(255,255,255,0.78);
}
.main-footer .form-widget .newsletter-form form .row.clearfix {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  column-gap: 10px;
  row-gap: 10px;
}
.main-footer .form-widget .newsletter-form form .row.clearfix .form-group {
  float: none;
  width: auto;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}
.main-footer .form-widget .newsletter-form form .row.clearfix .form-group:has(input[name="Name"]) {
  order: 1;
}
.main-footer .form-widget .newsletter-form form .row.clearfix .form-group:has(input[name="Phone"]) {
  order: 2;
}
.main-footer .form-widget .newsletter-form form .row.clearfix .form-group:has(input[type="email"]) {
  grid-column: 1 / -1;
  order: 3;
}
.main-footer .form-widget .newsletter-form form .row.clearfix .form-group:has(button) {
  grid-column: 1 / -1;
  order: 5;
}
.main-footer .form-widget .newsletter-form form .row.clearfix > div:not(.form-group) {
  order: 4;
}
.main-footer .footer-bottom {
  background: #03182d !important;
  border-top-color: rgba(117,202,255,0.16);
}
.main-footer .footer-bottom .copyright,
.main-footer .footer-bottom .footer-nav li a {
  color: #ffffff !important;
}
.main-footer .footer-bottom .footer-nav li a:hover {
  color: #75caff !important;
}

@media (max-width: 991px) {
  .main-footer .widgets-section > .auto-container > .row.clearfix {
    flex-wrap: wrap;
    gap: 32px 28px;
  }
  .main-footer .widgets-section > .auto-container > .row.clearfix > .footer-column:nth-child(n) {
    width: calc(50% - 14px);
    flex: 0 0 calc(50% - 14px);
  }
}

@media (max-width: 767px) {
  .main-footer .widgets-section > .auto-container > .row.clearfix {
    display: block;
  }
  .main-footer .widgets-section > .auto-container > .row.clearfix > .footer-column:nth-child(n) {
    width: 100%;
    max-width: 100%;
    margin-bottom: 34px;
  }
  .main-footer .footer-widget {
    text-align: left;
  }
  .main-footer .footer-bottom .column {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .main-footer .footer-bottom .footer-nav {
    text-align: center;
  }
}


/* Blog and footer final polish */
.main-footer,
.main-footer .widgets-section {
  background: #021a35 !important;
}
.main-footer .footer-bottom {
  background: #ffffff !important;
  border-top: 1px solid rgba(13,112,183,0.18) !important;
}
.main-footer .footer-bottom .copyright,
.main-footer .footer-bottom .footer-nav li a {
  color: #0d70b7 !important;
}
.main-footer .footer-bottom .footer-nav li a:hover {
  color: #032f5f !important;
}
.newsletter-box input {
  border: 1px solid rgba(255,255,255,0.22);
}
.post-body .meta {
  color: #7890a8;
  margin: -2px 0 10px;
}


/* Footer contrast and compact copy refinement */
.main-footer,
.main-footer .widgets-section {
  background: #01152d !important;
}
.main-footer .logo-widget .text p,
.main-footer .form-widget p,
.main-footer .footer-contact-cta a {
  font-size: 13px !important;
}
.main-footer .footer-links li a {
  font-size: 14px !important;
}
.main-footer .footer-bottom .copyright,
.main-footer .footer-bottom .footer-nav li a {
  color: #032f5f !important;
}
.main-footer .footer-bottom .footer-nav li a:hover {
  color: #0d70b7 !important;
}

@media (max-width: 767px) {
  .ms-seo-grid {
    grid-template-columns: 1fr !important;
  }
}


/* Who We Help full-width page */
.who-help-page {
  background: #f4f8fc;
}
.who-help-page .auto-container {
  max-width: 1180px;
}
.who-help-intro {
  padding: 76px 0 42px;
}
.who-help-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 34px;
  align-items: stretch;
}
.who-help-copy,
.who-help-proof {
  background: #fff;
  border: 1px solid #d8e6f5;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(6, 45, 86, 0.07);
}
.who-help-copy {
  padding: 34px;
}
.who-help-copy p {
  color: #506274;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
}
.who-help-copy p:last-child {
  margin-bottom: 0;
}
.who-help-proof {
  padding: 28px;
  background: linear-gradient(145deg, #062d56, #0d70b7);
  color: #fff;
}
.who-help-proof h3 {
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 20px;
}
.who-help-proof ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.who-help-proof li {
  display: flex;
  gap: 12px;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.65;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.who-help-proof li:last-child {
  border-bottom: 0;
}
.who-help-proof i {
  color: #72c4ff;
  margin-top: 5px;
}
.who-help-section {
  padding: 42px 0;
}
.who-help-section.white {
  background: #fff;
}
.who-help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.who-help-grid.standard {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.who-help-tile {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: #fff;
  border: 1px solid #d8e6f5;
  border-radius: 9px;
  color: #0b315d;
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 10px 24px rgba(6, 45, 86, 0.045);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.who-help-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(13, 112, 183, 0.38);
  box-shadow: 0 16px 34px rgba(6, 45, 86, 0.09);
}
.who-help-tile i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #eaf5ff;
  color: #0d70b7;
}
.who-help-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.who-help-step {
  background: #fff;
  border: 1px solid #d8e6f5;
  border-radius: 10px;
  padding: 24px;
}
.who-help-step strong {
  display: block;
  color: #0b315d;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  margin: 12px 0 8px;
}
.who-help-step p {
  color: #586b7c;
  line-height: 1.75;
  margin: 0;
}
.who-help-step .num {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0d70b7;
  color: #fff;
  font-weight: 800;
}
.who-help-note {
  margin-top: 22px;
  padding: 20px 24px;
  border-left: 4px solid #0d70b7;
  border-radius: 8px;
  background: #eef7ff;
  color: #38556e;
  line-height: 1.75;
}
.who-help-faqs {
  max-width: 940px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .who-help-lead,
  .who-help-process {
    grid-template-columns: 1fr 1fr;
  }
  .who-help-grid,
  .who-help-grid.standard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 767px) {
  .who-help-intro {
    padding: 44px 0 28px;
  }
  .who-help-lead,
  .who-help-process,
  .who-help-grid,
  .who-help-grid.standard {
    grid-template-columns: 1fr;
  }
  .who-help-copy,
  .who-help-proof,
  .who-help-step {
    padding: 22px;
  }
}


/* Who We Help refinements */
.who-help-lead {
  display: block;
  max-width: 980px;
  margin: 0 auto;
}
.who-help-copy {
  padding: 36px 40px;
}
.who-help-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #d8e6f5;
}
.who-help-highlights div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #365570;
  font-size: 14px;
  line-height: 1.55;
}
.who-help-highlights i {
  color: #0d70b7;
  margin-top: 3px;
}
.who-help-grid {
  gap: 10px 16px;
}
.who-help-tile {
  min-height: 58px;
  padding: 10px 8px;
  border: 0;
  border-bottom: 1px solid #d7e5f2;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: 10px;
  align-items: center;
}
.who-help-tile:hover {
  transform: none;
  border-color: #0d70b7;
  box-shadow: none;
  background: rgba(13, 112, 183, 0.035);
}
.who-help-tile i {
  width: 22px;
  height: auto;
  min-width: 22px;
  display: inline-block;
  background: transparent;
  border-radius: 0;
  color: #0d70b7;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.who-help-tile span {
  display: block;
}
@media only screen and (max-width: 767px) {
  .who-help-copy {
    padding: 24px;
  }
  .who-help-highlights {
    grid-template-columns: 1fr;
  }
}


/* Who We Help clean intro section */
.who-help-page .who-help-lead {
  max-width: 1040px;
}
.who-help-page .who-help-copy {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.who-help-page .who-help-highlights {
  padding: 20px 0 0;
}
@media only screen and (max-width: 767px) {
  .who-help-page .who-help-copy {
    padding: 0;
  }
}


/* Who We Help process section spacing and layered numbers */
.who-help-page .who-help-intro {
  padding-top: 106px;
  padding-bottom: 72px;
}
.who-help-page .who-help-section {
  padding-top: 72px;
  padding-bottom: 72px;
}
.who-help-page .who-help-step {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  padding: 26px 24px 24px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.who-help-page .who-help-step:hover {
  transform: translateY(-4px);
  border-color: rgba(13,112,183,0.38);
  box-shadow: 0 18px 38px rgba(6,45,86,0.10);
  background-color: #fbfdff;
}
.who-help-page .who-help-step .num {
  position: absolute;
  right: 14px;
  bottom: -22px;
  width: auto;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
  color: rgba(11,49,93,0.07);
  font-family: "Nunito Sans", sans-serif;
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}
.who-help-page .who-help-step strong,
.who-help-page .who-help-step p {
  position: relative;
  z-index: 1;
}
.who-help-page .who-help-step strong {
  font-size: 14px;
  line-height: 1.35;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.who-help-page .who-help-step p {
  font-size: 13px;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .who-help-page .who-help-intro {
    padding-top: 74px;
    padding-bottom: 58px;
  }
  .who-help-page .who-help-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .who-help-page .who-help-step {
    min-height: 150px;
  }
}


/* Who We Help extra section bottom spacing */
.who-help-page .who-help-intro,
.who-help-page .who-help-section {
  padding-bottom: 112px;
}
@media only screen and (max-width: 767px) {
  .who-help-page .who-help-intro,
  .who-help-page .who-help-section {
    padding-bottom: 82px;
  }
}


/* Who We Help final section spacing adjustment */
.who-help-page .who-help-section {
  padding-top: 92px;
  padding-bottom: 152px;
}
.who-help-page .who-help-intro {
  padding-bottom: 152px;
}
@media only screen and (max-width: 767px) {
  .who-help-page .who-help-section {
    padding-top: 78px;
    padding-bottom: 122px;
  }
  .who-help-page .who-help-intro {
    padding-bottom: 122px;
  }
}


/* Who We Help dark intro band */
.who-help-page .who-help-intro {
  background: #062d56;
}
.who-help-page .who-help-intro .ms-eyebrow {
  color: #79c7ff;
}
.who-help-page .who-help-intro .ms-section-header h2,
.who-help-page .who-help-intro .ms-section-header h2 span {
  color: #fff;
}
.who-help-page .who-help-intro .ms-section-header h2:after {
  background: #1b8dde;
}
.who-help-page .who-help-copy p {
  color: rgba(255,255,255,0.86);
}
.who-help-page .who-help-highlights {
  border-top-color: rgba(255,255,255,0.20);
}
.who-help-page .who-help-highlights div {
  color: rgba(255,255,255,0.86);
}
.who-help-page .who-help-highlights i {
  color: #79c7ff;
}


/* Who We Help dark intro band padding tune */
.who-help-page .who-help-intro {
  padding-top: 86px;
  padding-bottom: 132px;
}
@media only screen and (max-width: 767px) {
  .who-help-page .who-help-intro {
    padding-top: 54px;
    padding-bottom: 102px;
  }
}


/* Services page secondary content cleanup */
.services-secondary-clean .services-inline-cta {
  margin: 34px 0 44px;
}
.services-clean-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  padding: 8px 0 34px;
  border-top: 1px solid #d8e6f5;
  border-bottom: 1px solid #d8e6f5;
}
.services-clean-col {
  padding-top: 28px;
}
.services-clean-col h3 {
  font-family: "Nunito Sans", sans-serif;
  font-size: 23px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 12px;
}
.services-clean-col p,
.services-path-callout p {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
}
.services-clean-col p {
  margin: 0 0 14px;
}
.services-path-callout {
  margin-top: 34px;
  background: #f4f8fc;
  border-left: 4px solid #0d70b7;
  border-radius: 8px;
  padding: 28px;
}
.services-path-callout p {
  margin: 0 0 14px;
}
.services-path-callout p:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .services-clean-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .services-path-callout {
    padding: 22px;
  }
}


/* Services secondary banner and heading tune */
.services-secondary-clean .services-inline-cta {
  margin: 0 0 46px;
}
.services-secondary-clean .ms-header h2 {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  font-size: 44px;
  line-height: 1.18;
}
.services-secondary-clean .ms-header h2 span {
  white-space: nowrap;
}
.services-clean-content .feature-list li i {
  color: #0d70b7 !important;
}
@media only screen and (max-width: 991px) {
  .services-secondary-clean .ms-header h2 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .services-secondary-clean .ms-header h2 {
    font-size: 30px;
  }
  .services-secondary-clean .ms-header h2 span {
    white-space: normal;
  }
}


/* About SEO pages */
.about-seo-page {
  background: #f4f8fc;
}
.about-seo-page .auto-container {
  max-width: 1180px;
}
.about-seo-intro,
.about-seo-section {
  padding: 76px 0;
}
.about-seo-section.white {
  background: #fff;
}
.about-seo-copy {
  max-width: 980px;
  margin: 0 auto;
}
.about-seo-copy p,
.about-two-col p {
  color: #506274;
  font-size: 16px;
  line-height: 1.85;
}
.about-step-grid,
.about-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.about-step,
.about-benefit {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8e6f5;
  border-radius: 10px;
  padding: 26px 24px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.about-step:hover,
.about-benefit:hover {
  transform: translateY(-4px);
  border-color: rgba(13,112,183,0.38);
  box-shadow: 0 18px 38px rgba(6,45,86,0.10);
}
.about-step .num {
  position: absolute;
  right: 12px;
  bottom: -22px;
  color: rgba(11,49,93,0.07);
  font-family: "Nunito Sans", sans-serif;
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
}
.about-step h3,
.about-benefit h3,
.about-two-col h3 {
  position: relative;
  z-index: 1;
  font-family: "Nunito Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0b315d;
  margin: 0 0 10px;
}
.about-step p,
.about-benefit p {
  position: relative;
  z-index: 1;
  color: #586b7c;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.about-benefit i {
  display: inline-block;
  color: #0d70b7;
  font-size: 24px;
  margin-bottom: 16px;
}
.about-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px;
}
.about-two-col .feature-list li i {
  color: #0d70b7 !important;
}
@media only screen and (max-width: 991px) {
  .about-step-grid,
  .about-benefit-grid,
  .about-two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 767px) {
  .about-seo-intro,
  .about-seo-section {
    padding: 54px 0;
  }
  .about-step-grid,
  .about-benefit-grid,
  .about-two-col {
    grid-template-columns: 1fr;
  }
}


/* Who We Help 2026 layout refinements */
.who-help-page .who-help-intro {
  background: #ffffff;
  color: #4b5d73;
}

.who-help-page .who-help-intro h2,
.who-help-page .who-help-intro h3 {
  color: #101827;
}

.who-help-page .business-types-section {
  background: #062d56;
  color: #ffffff;
}

.who-help-page .business-types-section .ms-eyebrow {
  color: #75c8ff;
}

.who-help-page .business-types-section .ms-section-header h2 {
  color: #ffffff;
}

.who-help-page .business-types-section .ms-section-header h2 span {
  color: #75c8ff;
}

.who-help-page .business-types-section .ms-section-header h2:after {
  background: #1b82d1;
}

.who-help-page .business-types-section .who-help-list {
  border-top-color: rgba(255,255,255,0.18);
}

.who-help-page .business-types-section .who-help-tile {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,0.18);
}

.who-help-page .business-types-section .who-help-tile i {
  color: #75c8ff;
}

.who-help-page .business-types-section .who-help-tile:hover {
  background: rgba(255,255,255,0.06);
  border-color: #75c8ff;
}

.about-intro-cta {
  margin-top: 22px;
}


/* Mobile footer spacing fix */
@media (max-width: 767px) {
  .main-footer .widgets-section {
    padding-top: 52px !important;
    padding-bottom: 42px !important;
  }

  .main-footer .widgets-section > .auto-container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .main-footer .widgets-section > .auto-container > .row.clearfix {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .main-footer .widgets-section > .auto-container > .row.clearfix > .footer-column:nth-child(n) {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 36px !important;
  }

  .main-footer .widgets-section > .auto-container > .row.clearfix > .footer-column:last-child {
    margin-bottom: 0 !important;
  }

  .main-footer .footer-widget {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  .main-footer .form-widget .newsletter-form form .row.clearfix {
    grid-template-columns: 1fr !important;
  }

  .main-footer .footer-bottom {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .main-footer .footer-bottom .auto-container {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}


/* Homepage section heading parity with About page */
.ms-section-header h1 {
  position: relative;
  color: #1a1a2e;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.18em;
  letter-spacing: 0;
  padding-bottom: 18px;
  margin: 0;
  font-family: 'Nunito Sans', sans-serif;
}
.ms-section-header h1 span { color: #0d70b7; }
.ms-section-header h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: #0d70b7;
  border-radius: 999px;
}
.ms-section-header.centered h1::after {
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .ms-section-header h1 { font-size: 30px; }
}


/* Scoped section eyebrow override: keeps homepage hero eyebrow separate */
.ms-section-header .ms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0d70b7;
  margin: 0 0 16px;
  font-family: 'Nunito Sans', sans-serif;
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.ms-section-header .ms-eyebrow::before,
.ms-section-header .ms-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #0d70b7;
  flex-shrink: 0;
}
.ms-section-header.light .ms-eyebrow,
.ms-section-header .ms-eyebrow.light {
  color: rgba(255,255,255,0.82);
}
.ms-section-header.light .ms-eyebrow::before,
.ms-section-header.light .ms-eyebrow::after,
.ms-section-header .ms-eyebrow.light::before,
.ms-section-header .ms-eyebrow.light::after {
  background: rgba(255,255,255,0.48);
}
.default-form textarea {
  position: relative;
  display: block;
  width: 100%;
  min-height: 132px;
  color: #777;
  font-size: 15px;
  line-height: 24px;
  padding: 12px 18px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  resize: vertical;
}


/* Homepage modernized intro section */
.ms-home-intro {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
  padding: 74px 0 82px;
  overflow: hidden;
}
.ms-home-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,112,183,0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(13,112,183,0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.48;
  pointer-events: none;
}
.ms-home-intro .auto-container {
  position: relative;
  z-index: 1;
}
.ms-home-intro-heading {
  max-width: 980px;
  margin: 0 auto 34px;
  padding: 0 20px;
}
.ms-home-intro-row {
  display: flex;
  align-items: stretch;
}
.ms-home-intro-copy {
  height: 100%;
  padding: 38px 36px;
  background: #ffffff;
  border: 1px solid rgba(13,112,183,0.16);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(9,42,76,0.08);
}
.ms-home-intro-copy .intro-kicker {
  color: #0d70b7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.6;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ms-home-intro-copy h3 {
  color: #101827;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  font-family: 'Nunito Sans', sans-serif;
}
.ms-home-intro-copy p {
  color: #526176;
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 14px;
}
.intro-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0 26px;
}
.intro-proof-grid div {
  padding: 15px 12px;
  background: #f3f8fd;
  border: 1px solid rgba(13,112,183,0.14);
  border-radius: 8px;
}
.intro-proof-grid strong {
  display: block;
  color: #0d70b7;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 7px;
}
.intro-proof-grid span {
  display: block;
  color: #526176;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.intro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.intro-btn.primary {
  color: #fff;
  background: #0d70b7;
  box-shadow: 0 12px 26px rgba(13,112,183,0.24);
}
.intro-btn.outline {
  color: #0d70b7;
  background: #ffffff;
  border: 1px solid rgba(13,112,183,0.34);
}
.intro-btn:hover {
  transform: translateY(-1px);
}
.ms-home-video-card {
  height: 100%;
  padding: 14px;
  background: #071f39;
  border-radius: 8px;
  border: 1px solid rgba(13,112,183,0.28);
  box-shadow: 0 24px 55px rgba(6,21,38,0.18);
}
.ms-home-video-card .video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  background: #071f39;
}
.ms-home-video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-caption {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 14px 6px 3px;
}
.video-caption .fa {
  color: #5bbfff;
}
@media (max-width: 991px) {
  .ms-home-intro-row {
    display: block;
  }
  .ms-home-intro-copy {
    margin-bottom: 24px;
  }
}
@media (max-width: 640px) {
  .ms-home-intro {
    padding: 52px 0 58px;
  }
  .ms-home-intro-copy {
    padding: 28px 22px;
  }
  .intro-proof-grid {
    grid-template-columns: 1fr;
  }
  .intro-actions {
    flex-direction: column;
  }
  .intro-btn {
    width: 100%;
  }
}


/* Homepage intro/contact refinements */
.ms-home-intro-row {
  align-items: center;
}
.ms-home-intro-copy {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 34px 32px 34px 0;
}
.ms-home-video-card {
  height: auto;
  align-self: center;
  padding: 12px;
  border-radius: 8px;
}
.ms-home-video-card .video-shell {
  aspect-ratio: 16 / 9;
}
.video-caption {
  padding: 12px 6px 0;
}

.ms-index-contact {
  padding: 54px 0 58px;
}
.ms-index-contact .ms-section-header {
  margin-bottom: 22px !important;
}
.ms-index-contact .inner-column {
  border: 0 !important;
  border-radius: 8px !important;
  background: rgba(5, 28, 52, 0.72);
  padding: 28px 28px 26px;
}
.ms-index-contact .inner-column h2 {
  padding-top: 0 !important;
  margin-bottom: 12px;
  font-size: 20px;
}
.ms-index-contact .inner-column p {
  margin-bottom: 12px;
  line-height: 1.65;
}
.ms-index-contact .inner-column br {
  display: none;
}
.ms-index-contact .default-form {
  padding-bottom: 0 !important;
}
.ms-index-contact .default-form .form-group {
  margin-bottom: 14px;
}
.ms-index-contact .default-form input,
.ms-index-contact .default-form textarea {
  min-height: 44px;
  height: 44px;
  padding: 10px 16px;
  border-color: rgba(91, 191, 255, 0.24);
  background: rgba(1, 20, 39, 0.42);
  color: #ffffff;
}
.ms-index-contact .default-form textarea {
  height: 92px;
  min-height: 92px;
  line-height: 1.55;
}
.ms-index-contact .default-form input::placeholder,
.ms-index-contact .default-form textarea::placeholder {
  color: rgba(255,255,255,0.62);
}
.ms-index-contact .theme-btn.btn-style-one {
  min-height: 46px;
  border-radius: 4px;
}
.ms-index-contact iframe {
  width: 100%;
  height: 320px;
}
.ms-index-contact .accordian-column > br {
  display: none;
}
.ms-index-contact .accordian-column > span {
  display: block;
  margin-top: 22px;
}
@media (max-width: 991px) {
  .ms-home-intro-copy {
    padding: 28px 0 18px;
  }
  .ms-index-contact .accordian-column {
    margin-top: 28px;
  }
}
@media (max-width: 640px) {
  .ms-index-contact {
    padding: 42px 0 46px;
  }
  .ms-index-contact .inner-column {
    padding: 24px 20px;
  }
  .ms-index-contact iframe {
    height: 260px;
  }
}


/* Homepage stat placement and animated contact background */
.intro-proof-grid-video {
  margin: 16px 0 0;
}
.ms-home-video-card .intro-proof-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.ms-home-video-card .intro-proof-grid div {
  background: rgba(255,255,255,0.08);
  border-color: rgba(91,191,255,0.24);
}
.ms-home-video-card .intro-proof-grid strong {
  color: #5bbfff;
}
.ms-home-video-card .intro-proof-grid span {
  color: rgba(255,255,255,0.78);
}
.ms-index-contact {
  position: relative;
  background-image: none !important;
  background:
    radial-gradient(circle at 18% 16%, rgba(28,142,225,0.34), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(68,190,255,0.18), transparent 32%),
    linear-gradient(125deg, #041322, #07345f, #02101d, #0a4e84);
  background-size: 180% 180%;
  animation: midsourceContactGradient 14s ease-in-out infinite;
  overflow: hidden;
}
.ms-index-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.22;
  pointer-events: none;
}
.ms-index-contact .auto-container {
  position: relative;
  z-index: 1;
}
.ms-index-contact .ms-section-header p {
  max-width: 720px;
  color: rgba(255,255,255,0.76);
  font-size: 15px;
  line-height: 1.7;
}
.ms-index-contact .ms-section-header .ms-eyebrow.light {
  color: #8fd5ff;
}
.ms-index-contact .ms-section-header .ms-eyebrow.light::before,
.ms-index-contact .ms-section-header .ms-eyebrow.light::after {
  background: rgba(143,213,255,0.72);
}
@keyframes midsourceContactGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (max-width: 640px) {
  .ms-home-video-card .intro-proof-grid {
    grid-template-columns: 1fr;
  }
}


/* Hard fallback for homepage contact dark background */
body .page-wrapper .ms-index-contact.default-section {
  background-color: #031a31 !important;
  background-image:
    radial-gradient(circle at 18% 16%, rgba(28,142,225,0.34), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(68,190,255,0.18), transparent 32%),
    linear-gradient(125deg, #031a31, #07345f, #02101d, #0a4e84) !important;
  background-size: 180% 180% !important;
  animation: midsourceContactGradient 14s ease-in-out infinite;
}
body .page-wrapper .ms-index-contact .ms-section-header h2 {
  color: #ffffff;
}
body .page-wrapper .ms-index-contact .ms-section-header h2 span {
  color: #5bbfff;
}
body .page-wrapper .ms-index-contact .accordian-column,
body .page-wrapper .ms-index-contact .accordian-column li,
body .page-wrapper .ms-index-contact .accordian-column span {
  color: rgba(255,255,255,0.88) !important;
}


/* Homepage contact form border and map glass treatment */
.ms-index-contact .inner-column {
  border: 1px solid rgba(91,191,255,0.72) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.06);
}
.ms-index-contact .accordion-box.style-two {
  padding: 12px;
  margin: 0;
  border: 1px solid rgba(91,191,255,0.42);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}
.ms-index-contact .accordion-box.style-two iframe {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16) !important;
}


/* Crawlable footer social links */
.main-footer .follow-us {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
}
.main-footer .follow-us a {
  color: #0d70b7;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.main-footer .follow-us a:hover {
  color: #54b7ff;
  opacity: 1;
}


/* Footer newsroom home link */
.main-footer .footer-newsroom-home {
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(84,183,255,0.24);
}
.main-footer .footer-newsroom-home p,
.main-footer .footer-newsroom-signup {
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.main-footer .footer-newsroom-btn {
  display: block;
  width: 98%;
  margin: 0 auto;
  padding: 4px 9px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 5px;
  color: #00284a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  background: #fff;
}
.main-footer .footer-newsroom-btn:hover {
  background: #54b7ff;
  border-color: #54b7ff;
  color: #001d35;
}
