html,
body {
  background: #182031 url('../images/globalconnections.jpg') center / cover no-repeat fixed;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
}

:root {
  --svc-accent: #0d6efd; /* Bootstrap primary */
  --svc-accent-2: #6c757d; /* Bootstrap secondary */
  --svc-bg: #0b2c1f; /* Hero background */
  --svc-card-bg: #ffffff; /* Card background */
  --svc-card-text: #1f2937; /* Neutral 800 */
  --svc-muted: #6b7280; /* Neutral 500 */
  --svc-gradient: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.08),
    rgba(111, 66, 193, 0.08)
  );
}

/* Section wrapper */
section#services {
  /* background: radial-gradient(
      1200px 600px at 10% -10%,
      rgba(13, 110, 253, 0.12),
      transparent 60%
    ),
    radial-gradient(
      1200px 600px at 90% -10%,
      rgba(111, 66, 193, 0.12),
      transparent 60%
    ),
    var(--svc-bg); */
  color: #f8fafc;
  padding: 4rem 0 5rem;
  position: relative;
  overflow: clip;
}

/* Subtle grid backdrop */
section#services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(var(--svc-gradient)),
    linear-gradient(
      transparent 24px,
      rgba(255, 255, 255, 0.06) 25px,
      rgba(255, 255, 255, 0.06) 26px,
      transparent 27px
    ),
    linear-gradient(
      90deg,
      transparent 24px,
      rgba(255, 255, 255, 0.06) 25px,
      rgba(255, 255, 255, 0.06) 26px,
      transparent 27px
    );
  background-size: auto, 28px 28px, 28px 28px;
  mask-image: radial-gradient(800px 400px at 50% -10%, black, transparent 70%);
}

/* Heading styles */
.svc-eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}
.svc-title {
  color: #353434;
  font-weight: 800;
  line-height: 1.1;
}
/*  .svc-subtitle {
color: rgba(255,255,255,.75);
} */

/* Card styles */
.svc-card {
  background: var(--svc-card-bg);
  color: var(--svc-card-text);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.svc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(13, 110, 253, 0.25);
}

.svc-icon {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.75rem;
  background: rgba(13, 110, 253, 0.1);
  color: var(--svc-accent);
  font-size: 1.4rem;
}

.svc-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1rem 0 0.25rem;
}
.svc-card p {
  color: var(--svc-muted);
  margin-bottom: 0.75rem;
}
.svc-bullets {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--svc-card-text);
}
.svc-bullets li {
  margin: 0.25rem 0;
}

/* CTA button */
.svc-cta {
  background: white;
  border-radius: 999px;
  padding: 0.4rem;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.svc-cta a {
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .svc-card {
    transition: none;
  }
  .svc-card:hover {
    transform: none;
  }
}
