:root {
  --ink: #0b2c5e;
  --muted: #5b6b7f;
  --bg: #f6f9fe;
  --ring: #e6edf7;
  --brand: #2e7bc4;
  --accent: #0ea5e9;
  --card: #fff;
  --shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 0.6rem;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

a {
  color: var(--brand);
  text-decoration: none;
}

/* Splash */
#splash {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: #fff;
  z-index: 2000;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}

#splash .splash-logo {
  width: min(520px, 70vw);
}

#splash p {
  margin-top: 0.6rem;
  font-weight: 600;
  color: #0b2c5e;
}

#splash.fade {
  opacity: 0;
  visibility: hidden;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--ring);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  color: var(--ink);
}

.logo {
  height: 56px;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.05);
}

nav a {
  margin-left: 1.2rem;
  padding: 0.5rem 0.9rem;
  border-radius: 0.6rem;
  color: #0b2c5e;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}


/* Hero */
.hero, .page-hero {
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 110px 0 90px;
}
.hero-main{
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('assets/hero.svg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 110px 0 90px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  color: #fff;
  text-align: center;
  
}

.page-hero {
  background: var(--bg);
  padding: 80px 0 60px;
}

.hero-inner, .page-hero .container {
  max-width: 820px;
  margin: 0 auto;
}

.hero h1, .page-hero h1 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--ink);
}

.hero p, .page-hero p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 auto 1.5rem;
  max-width: 720px;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 1rem 1.6rem;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--brand), var(--accent));
  color: #fff;
  border-color: #1d4ed8;
  box-shadow: 0 4px 12px rgba(46, 123, 196, 0.3);
}

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

.btn-ghost {
  background: #fff;
  border-color: #cfe0ff;
  color: #1d4ed8;
}

.btn-ghost:hover {
  background: #f3f8ff;
  transform: translateY(-2px);
}

/* Home Cards */
.cards {
  justify-content: center;
  display: grid;
  text-align: center;
  width: auto;
  contain: content;
  padding-left: 100px;
  padding-right: 100px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 60px 0;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--ring);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.08);
}

.ico {
  width: 46px;
  height: 46px;
}

/* Band */
.band {
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  color: #0b2c5e;
}

.band-grid > div {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e6efff;
  padding: 20px;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

/* Footer */
.site-footer {
  background: #0b1220;
  color: #e5e7eb;
  margin-top: 50px;
  padding: 40px 0;
}

.logo-sm {
  height: 44px;
  margin-bottom: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: flex-start;
}

.foot-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foot-nav li {
  margin: 6px 0;
}

.copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Qui sommes-nous? Page */
.content {
  max-width: 1140px;
  margin: 0 auto 80px;
  padding: 0 20px;
  line-height: 1.7;
  color: var(--ink);
}

.content h2 {
  font-family: 'Montserrat', sans-serif;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.content p {
  margin-bottom: 1rem;
}

.bullets {
  list-style: disc;
  margin-left: 1.4rem;
  margin-bottom: 1.5rem;
}

.bullets li {
  margin-bottom: 0.6rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
}

.chips span {
  background: var(--ring);
  padding: 6px 12px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Founder Card */
.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin: 40px 0;
}

.founder-card img {
  width: 160px;
}

.founder-card h3 {
  margin: 0.5rem 0 0.2rem;
  font-size: 1.4rem;
  color: var(--ink);
}

.founder-card p {
  margin: 0.2rem 0;
  color: var(--muted);
}

.founder-card .bio {
  font-size: 0.95rem;
  max-width: 680px;
}


/* ==========================================
   BREADCRUMB (optional, like Francepaye)
   ========================================== */

.breadcrumb {
  background-color: #f6f9fe;
  padding: 15px 20px;
  font-size: 0.9rem;
}
.breadcrumb a {
  color: #2e7bc4;
}
.breadcrumb span {
  color: #555;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
/* === FOOTER – WHITE TEXT & LINKS === */
footer {
  background-color: #2e7bc4; /* NAC blue background */
  color: #ffffff;            /* White text */
  text-align: center;
  font-size: 0.9rem;
  padding: 40px 0;
  border-top: none;
}

/* White links inside footer */
footer a {
  color: #ffffff;            /* White links */
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

/* === FORCE WHITE COLOR FOR FOOTER TEXT & LINKS === */
footer {
  background-color: #2e7bc4; /* Blue background (optional) */
  color: #ffffff !important; /* All footer text white */
  text-align: center;
  font-size: 0.9rem;
  padding: 40px 0;
  border-top: none;
}

/* Make footer links white */
footer a {
  color: #ffffff !important;   /* Force white color */
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

header {
  background-color: #2e7bc4;
  color: #ffffff;
  padding: 18px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

nav ul li a:hover {
  opacity: 0.8;
}
footer {
  background-color: #2e7bc4;
  color: #ffffff;
  text-align: center;
  padding: 40px 0;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
}


/* Table */
.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.compare th, .compare td {
  border: 1px solid var(--ring);
  padding: 12px 15px;
  text-align: left;
}

.compare th {
  background: var(--ring);
  font-weight: 700;
}

.compare tbody tr:nth-child(even) {
  background: #f9faff;
}


.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row div {
  flex: 1;
  min-width: 150px;
}


/* Responsive */
@media (max-width: 980px) {
  .form-row {
    flex-direction: column;
  }
}


/* Responsive */
@media (max-width: 980px) {
  .nav-wrap {
    flex-direction: column;
    gap: 10px;
  }
  .cards {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }
  .band-grid, .contact-grid, .founder-card {
    grid-template-columns: 1fr;
  }
  .hero, .page-hero {
    padding: 80px 0 60px;
  }
  .compare {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1140px;  
  margin: 60px auto;  
  justify-items: center; 
  padding: 0 20px;
}

.svc-card {
  background: var(--card);
  border: 1px solid var(--ring);
  padding: 30px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #cfe0ff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 100%;  
  max-width: 320px;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(2,6,23,0.08);
}

.svc-card .svc-ico {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
}

.svc-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
}

.svc-card p {
  color: var(--muted);
  margin: 0;
}

.svc-card ul {
  margin: 10px 0 0 1.4rem;
  padding: 0;
  color: var(--muted);
}

.svc-card ul li {
  margin-bottom: 0.5rem;
}
.cta-box {
  background: var(--card);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-left {
  color: #e5e7eb;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-right {
  text-align: right;
}

.foot-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.foot-nav li {
  margin: 4px 0;
}

.foot-nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
}

.menu {
  display: flex;
  gap: 1rem; /* space between main links */
  align-items: center;
}

.menu > a, .dropbtn {
  padding: 0.5rem 0.9rem;
  border-radius: 0.6rem;
  font-weight: 500;
  color: #0b2c5e;
  text-decoration: none;
  position: relative; /* for dropdown positioning */
}

.menu > a:hover, .dropbtn:hover {
  background: #edf4ff;
  color: var(--brand);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #0b2c5e;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f6f9fe;
}

.dropdown:hover .dropdown-content {
  display: block;
}
.content-container{
  text-align: center;
}
/* ==========================================
   NAC AUDIT & CONSEIL – STYLE GLOBAL
   (inspired by Francepaye.fr)
   ========================================== */

/* --- RESET --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- BASE --- */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.8;
}

/* --- LINKS --- */
a {
  color: #2e7bc4;
  text-decoration: none;
}
/* --- HEADER --- */
header {
  background-color: #2e7bc4;
  color: #fff;
  padding: 18px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
header .container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header img.logo {
  height: 50px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
nav ul li a {
  color: #fff;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

/* --- HERO (optional) --- */
.hero {
  text-align: center;
  background: #f6f9fe;
  padding: 80px 20px;
}
.hero h1 {
  color: #0b2c5e;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  color: #5b6b7f;
  font-size: 1.1rem;
}

/* --- MAIN CONTAINER --- */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 60px auto;
}

/* --- SECTION TITLES --- */
.section-title {
  text-align: center;
  font-size: 2rem;
  color: #0b2c5e;
  margin-bottom: 40px;
  border-bottom: 3px solid #e6edf7;
  display: inline-block;
  padding-bottom: 10px;
}

/* --- FOOTER --- */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  padding: 35px 0;
  border-top: 1px solid #eee;
  background-color: #f9f9f9;
}


/* --- NAC Logo --- */
.logo-center {
  display: block;
  margin: 0 auto 40px;
  width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}
.logo-center:hover {
  transform: scale(1.05);
}

/* ==========================================
   BREADCRUMB (optional, like Francepaye)
   ========================================== */

.breadcrumb {
  background-color: #f6f9fe;
  padding: 15px 20px;
  font-size: 0.9rem;
}
.breadcrumb a {
  color: #2e7bc4;
}
.breadcrumb span {
  color: #555;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
/* === FOOTER – WHITE TEXT & LINKS === */
footer {
  background-color: #2e7bc4; /* NAC blue background */
  color: #ffffff;            /* White text */
  text-align: center;
  font-size: 0.9rem;
  padding: 40px 0;
  border-top: none;
}

/* White links inside footer */
footer a {
  color: #ffffff;            /* White links */
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}


/* === FORCE WHITE COLOR FOR FOOTER TEXT & LINKS === */
footer {
  background-color: #2e7bc4; /* Blue background (optional) */
  color: #ffffff !important; /* All footer text white */
  text-align: center;
  font-size: 0.9rem;
  padding: 40px 0;
  border-top: none;
}

/* Make footer links white */
footer a {
  color: #ffffff !important;   /* Force white color */
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

header {
  background-color: #2e7bc4;
  color: #ffffff;
  padding: 18px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

footer {
  background-color: #2e7bc4;
  color: #ffffff;
  text-align: center;
  padding: 40px 0;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
}

.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

.team-container {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  color: var(--ink);
  text-align: center;
}

.team-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 60px;
  display: inline-block;
  padding-bottom: 10px;
}

.team-section {
  margin-bottom: 60px;
}

.team-section h2 {
  font-size: 1.6rem;
  color: var(--brand);
  padding-left: 10px;
  margin-bottom: 25px;
  text-align: center;
}

/* --- Grid for team members --- */
.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  justify-content: center;
  align-items: stretch; /* ensure equal height */
}

/* --- Team Member Card --- */
.member {
  background: var(--card);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 25px 15px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 320px; /* fixed consistent height */
  transition: all 0.2s ease-in-out;
}

.member:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

/* --- Image Styling --- */
.member img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 50%;
}

/* --- Text Styling --- */
.member h3 {
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 600;
  margin: 8px 0 5px;
  text-align: center;
}

.member p {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}


/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .member {
    height: 280px;
  }

  .member img {
    width: 90px;
    height: 90px;
  }

  .team-section h2 {
    font-size: 1.4rem;
  }
}
.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}
.column {
  flex: 1 1 300px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.column h3 {
  color: #2e7bc4;
  margin-top: 0;
}
.column ul {
  padding-left: 20px;
}
.column p em {
  color: #555;
  font-style: normal;
}

/* === RSE Page Layout === */
.rse-content {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Montserrat', sans-serif;
  color: #0b2c5e;
  line-height: 1.7;
}

.rse-sections {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap; /* ensures side-by-side */
}

.rse-left, .rse-right {
  flex: 1;
  min-width: 0; /* allows shrinking inside container */
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Keep headings and lists consistent */
.rse-left h2, .rse-right h2 {
  color: #2e7bc4;
  margin-bottom: 20px;
}
.rse-left h3, .rse-right h3 {
  color: #0ea5e9;
  margin-top: 25px;
}
.rse-left ul, .rse-right ul {
  padding-left: 20px;
}
.rse-left li, .rse-right li {
  margin-bottom: 10px;
}

/* === SERVICES SECTION === */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 2rem;
  justify-items: center; /* centers all cards */
  align-items: start;
  max-width: 1400px;
  margin: 1rem auto 4rem; /* moves higher on page */
  padding: 0 2rem;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .services {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 700px) {
  .services {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}

/* === CARD STYLE === */
.svc-card {
  background: var(--card);
  border-radius: 22px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  width: 100%;
  max-width: 400px; /* keeps uniform width */
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* === TITLES & ICONS === */
.svc-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: var(--ink);
  text-align: center;
}

.icon {
  margin-right: 10px;
  font-size: 1.8rem;
}

/* === COLOR THEMES === */
.audit .icon { color: #2e7bc4; }      /* Deep blue */
.expertise .icon { color: #00a86b; }  /* Green */
.fiscal .icon { color: #f4b400; }     /* Gold */
.social .icon { color: #ff4d4d; }     /* Red */
.legal .icon { color: #6a5acd; }      /* Indigo */
.conseil .icon { color: #ff8c42; }    /* Orange */
.finance .icon { color: #1da1f2; }    /* Light blue */

/* === BULLET POINTS === */
.svc-card ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 90%;
}

.svc-card li {
  position: relative;
  padding-left: 24px;
  margin: 0.5rem 0;
  line-height: 1.7;
  color: var(--muted);
  font-size: 1rem;
}

.svc-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2e7bc4, #0ea5e9);
}

/* === HOVER GLOW === */
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(46,123,196,0.08), rgba(14,165,233,0.08));
  transition: opacity 0.3s ease;
}

.svc-card:hover::after {
  opacity: 1;
}

.svc-card h3,
.svc-card ul {
  position: relative;
  z-index: 2;
}

.company-section {
  display: flex;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
  gap: 20px; /* space between cards */
  justify-content: center; /* center them horizontally */
  align-items: stretch; /* make cards equal height if possible */
  margin-top: 2rem;
}

.company-card {
  flex: 1 1 300px; /* grow, shrink, and minimum width */
  border-radius: 12px;
  padding: 20px;
  max-width: 350px; /* optional: keeps them from getting too wide */
}

.svc-card h3 {
  color: var(--ink, #0b2c5e);
  margin-bottom: 10px;
}

.svc-card ul {
  margin-left: 1.5em;
}
