/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1e2a38;
}
body {
  background-color: #f9fbfc;  /* light-grey page background */
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.site-header {
  background: #fff;
  padding: 40px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-icon {
  width: 300px;
  max-width: 100%;
  height: auto;
}

/* Nav */
.site-nav {
  display: flex;
  gap: 24px;
  font-weight: 500;
}
.site-nav a {
  color: inherit;
}

/* Hero */
.hero {
  position: relative;         /* for the wave overlay */
  background: #fff;
  padding: 80px 0 0;          /* top padding only */
  text-align: left;
  overflow: visible;          /* allow the wave to extend below */
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.125rem;
  margin-bottom: 24px;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  background: #5a77bf;
  color: #fff;
  font-weight: 500;
  margin-bottom: 40px;
}


/* Right-side wave overlay */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;                   /* sit at bottom edge of hero */
  right: 0;
  width: 60%;                  /* how far the curve creeps left */
  height: 200px;               /* match the SVG height */
  background:
    url('../img/wave-right-light.svg')  /* adjust path if needed */
    bottom right / cover no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* What We Deliver */

.what-we-deliver {
  background: #E1E8F0;  /* match the wave’s medium grey */
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.what-we-deliver h2 {
  text-align: center;
  margin-bottom: 40px;
}
.deliver-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 32px;
}
.deliver-item {
  text-align: center;
}
.deliver-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}
.deliver-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

/* How We Work */
.how-we-work {
  background: #fff;
  padding: 80px 0;
}
.steps {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.step {
  width: 30%;
}
.step-number {
  /* make it a perfect circle */
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* circle look */
  border-radius: 50%;
  background: #f1f5f9;     /* a very light grey */

  /* number style */
  font-size: 1.5rem;       /* adjust as needed */
  font-weight: 700;
  color: #5a77bf;          /* same blue as your buttons/accents */

  /* spacing */
  margin: 0 auto 12px;     /* center under the heading and give a gap */
}
.step h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

/* Industries & About */
.industries-support {
  background: #E1E8F0;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

/* Industries list: simple 2×2 grid, sizing to content */
.industries-list {
  display: grid;
  grid-template-columns: repeat(2, auto); /* two columns, auto-sized */
  gap: 16px 24px;                         /* row 16px, col 24px */
  justify-content: start;                 /* pack to the left */
  /* remove any width:100% or max-width here */
}

/* Industry pills remain unchanged */
.industry {
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  font-weight: 500;
  text-align: center;
}

/* Two‐column wrapper */
.container.two-col {
  display: flex;
  gap: 40px;
}

/* Ensure each column flexes evenly */
.container.two-col > div {
  flex: 1;
}

/* Footer CTA */
.cta-footer {
  background: #fff;
  padding: 60px 0;
  text-align: center;
  margin-top: 40px;
}
.cta-footer h2 {
  font-size: 1.75rem;
  margin-bottom: 24px;
}
.btn-primary {
  background: #5a77bf;
}

/* Site footer */
.site-footer {
  background: #fff;
  padding: 24px 0;
  font-size: 0.875rem;
  color: #667085;       /* a muted dark-grey */
}
.site-footer .container {
  text-align: center;
}
.site-footer a {
  color: inherit;
  text-decoration: underline;
}

/* Social links in footer */
.site-footer .social-links {
  margin-top: 12px;       /* space above the icon */
}
.site-footer .social-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  filter: brightness(0) invert(0.4); /* optional: tint to match footer text */
  transition: filter 0.2s ease;
}
.site-footer .social-icon:hover {
  filter: brightness(0) invert(1);   /* hover state (white icon) */
}

/* Footer text‐links row */
.site-footer .footer-links {
  margin-top: 12px;
  font-size: 0.875rem;
  color: #667085;
}
.site-footer .footer-links a {
  color: #667085;
  text-decoration: underline;
}
.site-footer .footer-links a:hover {
  color: #5a77bf;
}

/* ========== Mobile adjustments ========== */
@media (max-width: 768px) {
  /* Stack header items */
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }
  .site-nav {
    margin-top: 12px;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Tighter hero on mobile */
  .hero {
    padding: 40px 0 0;
  }

  /* Give the button some breathing room */
  .hero .btn {
    margin-bottom: 24px;
  }

  /* Hide the fancy wave on small screens */
  .hero::after {
    display: none;
  }

  /* Stack Industries & About below each other */
  .two-col {
    flex-direction: column; /* switch from row to column */
    gap: 32px;              /* space between sections */
  }
}
