:root {
  --black: #050505;
  --white: #ffffff;
  --blue: #0ea5ff;
  --navy: #031f4b;
  --red: #d71920;
  --dark-red: #5a0000;
  --gray: #b8c2d1;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --max: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(14, 165, 255, 0.15), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(215, 25, 32, 0.12), transparent 22%),
    linear-gradient(180deg, #071327 0%, #020202 42%, #000000 100%);
  z-index: -3;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-bg::before {
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
  opacity: .45;
  transform: skewY(-8deg) scale(1.4);
}

.site-bg::after {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent 70%);
  opacity: .18;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(3, 10, 24, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.45));
  flex-shrink: 0;
}

.brand-copy h1 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: .04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-copy p {
  font-size: .9rem;
  color: rgba(255,255,255,.74);
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  font-size: .95rem;
}

.nav a {
  color: rgba(255,255,255,.84);
  transition: .25s ease;
}

.nav a:hover {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: .95rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
  border: 0;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), #ff373f);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(215, 25, 32, .32);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(14,165,255,.18), rgba(3,31,75,.95));
  color: var(--white);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}

section {
  position: relative;
}

.hero {
  position: relative;
  padding: 40px 0 48px;
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px auto;
  z-index: 1;
  overflow: hidden;
  border-radius: 28px;
}

.hero-video {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 1;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "left right"
    "features features";
  align-items: start;
  gap: 28px 42px;
}

.hero-left {
  grid-area: left;
  max-width: 860px;
  min-width: 0;
}

.hero-right {
  grid-area: right;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 0;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--blue);
  margin-bottom: 20px;
  max-width: 100%;
}

.hero h2 {
  font-size: clamp(2.6rem, 6vw, 5.65rem);
  line-height: .94;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.03em;
  text-shadow: 0 8px 22px rgba(0,0,0,.45);
}

.hero h2 .white {
  color: var(--white);
}

.hero h2 .blue {
  color: var(--blue);
}

.hero h2 .red {
  color: var(--red);
  display: block;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255,255,255,.84);
  font-size: 1.08rem;
  margin-top: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 700px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-left: auto;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -20% 35% auto -20%;
  height: 240px;
  background: radial-gradient(circle, rgba(14,165,255,.36), transparent 68%);
  pointer-events: none;
}

.hero-logo-wrap {
  background: linear-gradient(180deg, rgba(0, 82, 130, 0.45), rgba(2, 20, 60, 0.92));
  border-radius: 28px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
}

.hero-logo-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.feature-row {
  grid-area: features;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  width: 100%;
}

.feature-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 116px;
  padding: 22px 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  color: var(--white);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  min-width: 0;
}

.mini-card strong {
  display: block;
  font-size: 1.1rem;
  color: var(--white);
}

.mini-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}

.services {
  padding: 34px 0 60px;
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.section-head h3 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.section-head p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.5;
}

.services .container {
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.service-card {
  position: relative;
  width: calc(33.333% - 14px);
  max-width: 360px;
  padding: 28px 26px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #062d63 0%, #04244e 100%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 24px 46px rgba(0,0,0,.34);
}

.service-icon {
  width: 100%;
  min-height: 38px;
  height: auto;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--dark-red));
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 11px;
  box-shadow: 0 12px 22px rgba(0,0,0,.3);
  padding: 10px 16px;
  text-align: center;
}

.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1px;
  line-height: 1.35;
}

.service-card p {
  color: rgba(255,255,255,.94);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card li {
  display: grid;
  grid-template-columns: 16px 1fr;
  column-gap: 10px;
  align-items: start;
  margin-bottom: 10px;
  line-height: 1.35;
}

.service-card li::before {
  content: "•";
  display: block;
  font-size: 1.15rem;
  line-height: 1.1;
  color: #ffffff;
}

.service-card li:last-child {
  margin-bottom: 0;
}

.why-us {
  padding: 48px 0;
}

.why-grid {
  display: block;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.why-panel,
.cta-panel,
.contact-panel {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}

.why-panel {
  padding: 28px;
}

.why-panel h4 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why-panel p {
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  margin-bottom: 20px;
}

.checklist {
  display: grid;
  gap: 14px;
}

.check {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  font-weight: 700;
  color: rgba(255,255,255,.9);
}

.marquee-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 8px;
  padding: 18px 0;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #050505 0%, rgba(5,5,5,0) 100%);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #050505 0%, rgba(5,5,5,0) 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: marqueeLoop 18s linear infinite;
}

.marquee-track span {
  flex: 0 0 auto;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #ffffff;
}

@keyframes marqueeLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

.cta {
  padding: 48px 0;
}

.cta-panel {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  background:
    radial-gradient(circle at right center, rgba(14,165,255,.22), transparent 28%),
    linear-gradient(135deg, rgba(3,31,75,.94), rgba(215,25,32,.92));
}

.cta-panel h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  text-transform: uppercase;
  line-height: .95;
  margin-bottom: 12px;
}

.cta-panel p {
  color: rgba(255,255,255,.9);
  max-width: 700px;
  font-size: 1.02rem;
}

.contact {
  padding: 48px 0 82px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
}

.contact-panel,
.form-wrap {
  padding: 28px;
}

.contact-panel h4,
.form-wrap h4 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}

.contact-panel p,
.form-wrap p {
  color: rgba(255,255,255,.76);
  margin-bottom: 18px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}

.contact-item small {
  display: block;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-item span,
.contact-item a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  word-break: break-word;
}

.form-wrap {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer {
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.35);
}

.footer-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.68);
  font-size: .95rem;
}

.accent {
  color: var(--blue);
}

.flip-services {
  padding: 60px 0;
}

.flip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.flip-card {
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 200px;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 22px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.flip-front {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  border-radius: 24px;
}

.flip-front h4 {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.flip-back {
  background: #003261;
  transform: rotateY(180deg);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.flip-back p {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.emergency-banner {
  padding: 0 0 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: min(100%, 1400px);
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.emergency-badge {
  width: min(100%, 1080px);
  max-width: 100%;
  height: auto;
  flex-shrink: 1;
}

.trust-title-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
  padding: 0 24px;
}

.trust-title {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 100%;
  width: 100%;
}

.trust-title-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc(100% - 48px);
  max-width: 1200px;
  height: 100%;
  min-height: 100%;
  background: #003262;
  z-index: 1;
  border-radius: 0;
}
.contact-logo-wrap {
  margin-top: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-logo {
  max-width: 740px;
  width: 100%;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

@media (max-width: 1080px) {
  .hero-layout,
  .hero-grid,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    gap: 20px;
  }

  .service-card {
    width: calc(50% - 10px);
    max-width: 360px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 14px 0;
  }

  .brand {
    flex-direction: column;
  }

  .brand-copy h1,
  .brand-copy p {
    text-align: center;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-video-wrap {
    width: min(100%, calc(100% - 20px));
    min-height: 0;
    margin-bottom: 24px;
  }

  .hero-video {
    min-height: 0;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "right"
      "features";
    gap: 24px;
  }

  .hero-right {
    justify-content: center;
  }

  .hero h2 {
    font-size: clamp(2.2rem, 14vw, 4rem);
  }

  .cta-panel,
  .hero-card,
  .why-panel,
  .form-wrap,
  .contact-panel {
    padding: 22px;
  }

  .feature-row,
  .stats-grid,
  .field-grid,
  .contact-grid,
  .flip-grid {
    grid-template-columns: 1fr;
  }

  .feature-box {
    min-height: 90px;
    font-size: 1rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
  }

  .service-card {
    width: min(100%, 420px);
    max-width: 420px;
    min-height: auto;
    height: auto;
    margin: 0;
    padding: 22px 20px;
    border-radius: 20px;
  }

  .service-icon {
    width: 100%;
    max-width: 100%;
    font-size: 1.15rem;
    min-height: 44px;
    height: auto;
    padding: 10px 16px;
  }

  .service-card li {
    grid-template-columns: 14px 1fr;
    column-gap: 8px;
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .marquee-track span {
    font-size: clamp(1.5rem, 8vw, 2.6rem);
  }

  .trust-title-wrap::before {
    height: 28px;
    width: min(92vw, 1200px);
  }

  .contact-logo-wrap {
    margin-top: 24px;
  }

  .contact-logo {
    max-width: 100%;
  }

  .emergency-badge {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .flip-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

* {
  flex-shrink: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 760px) {
  .hero {
    padding-top: 0 !important;
  }

  .hero-video-wrap {
    margin: 0 auto 20px auto !important;
    border-radius: 0 !important;
  }

  .topbar {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 760px) {
  .service-card {
    margin-bottom: 20px !important;
  }

  .service-card + .service-card {
    margin-top: 0 !important;
  }
}

/* STOP horizontal scroll on mobile */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 760px) {
  body {
    min-width: 0 !important;
  }

  .container,
  .hero,
  .hero-layout,
  .hero-left,
  .hero-right,
  .hero-card,
  .hero-logo-wrap,
  .hero-video-wrap,
  .feature-row,
  .services-grid,
  .service-card,
  .contact-grid,
  .flip-grid,
  .emergency-inner,
  .contact-logo-wrap,
  .contact-logo {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hero-layout,
  .contact-grid,
  .feature-row,
  .flip-grid,
  .field-grid,
  .stats-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .service-icon {
    width: 100% !important;
    max-width: 100% !important;
  }

  .trust-title-wrap::before,
  .emergency-badge {
    max-width: 100% !important;
  }
}
@media (max-width: 760px) {
  .trust-title-wrap {
    padding: 0 16px;
  }

  .trust-title {
    font-size: clamp(1.9rem, 7vw, 3rem);
    line-height: 1.15;
  }

  .trust-title-wrap::before {
    width: calc(100% - 32px);
    height: 100%;
  }
}
/* UNIFORM SERVICE SPACING (DESKTOP + MOBILE) */
.services-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 28px !important; /* change this number if you want tighter/looser */
}

.service-card {
  margin: 0 !important;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.hero {
  padding-top: 80px; /* adjust if nav height changes */
}

.hero-video-wrap {
  margin-top: -40px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 20px;
}

.service-card {
  margin: 0;
}

.trust-title-wrap {
  display: inline-block;
  background: #0b3a66;
  padding: 10px 20px;
  border-radius: 6px;
}

.trust-title {
  margin: 0;
  line-height: 1.3;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* FORCE SERVICES: 1 per row mobile, 3 per row desktop */
.services-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 28px !important;
  width: min(1200px, 100%) !important;
  margin: 0 auto !important;
}

.service-card {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: stretch !important;
  }

  .service-card {
    width: 100% !important;
    max-width: none !important;
  }
}

/* TRUST / COMMITMENT TEXT CLEANUP */
.trust-title-wrap {
  background: #0b3a66;
  padding: 16px 18px;
  border-radius: 10px;
  margin: 20px 0;
}

.trust-title {
  font-size: 22px;
  line-height: 1.35;
  text-align: center;
  margin: 0;
}

/* MOBILE REFINEMENT */
@media (max-width: 600px) {
  .trust-title-wrap {
    padding: 14px 16px;
    border-radius: 8px;
  }

  .trust-title {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.3px;
  }
}

/* TRUST BLOCK */
.trust-title-wrap {
  background: #0b3a66;
  padding: 16px 18px;
  border-radius: 10px;
  margin: 20px 0;
}

.trust-title {
  font-size: 22px;
  line-height: 1.35;
  text-align: center;
  margin: 0;
  color: #ffffff;
}

/* 🔥 PREMIUM HIGHLIGHT EFFECT */
.highlight {
  color: #4db8ff;
  font-weight: 700;
  position: relative;
}

/* subtle glow */
.highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 6px;
  background: rgba(77, 184, 255, 0.25);
  border-radius: 4px;
  z-index: -1;
}

/* MOBILE */
@media (max-width: 600px) {
  .trust-title {
    font-size: 20px;
    line-height: 1.4;
  }
}

/* DESKTOP: FORCE SINGLE LINE */
@media (min-width: 900px) {
  .trust-title {
    white-space: nowrap;
    font-size: 24px; /* adjust if needed */
  }
}.service-card .service-icon {
  white-space: nowrap;
}
.service-card ul {
  list-style-position: outside;
  padding-left: 0;
  margin: 0;
}

.service-card li {
  margin-left: 2px;   /* controls bullet position */
  padding-left: -40px;   /* controls space between bullet and text */
}